Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Update Requests documentation links #1117

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/dev/virtualenvs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ when you share your project with others. You should get output similar to this
Adding requests to Pipfile's [packages]...
P.S. You have excellent taste! ✨ 🍰 ✨

.. _Requests: http://docs.python-requests.org/en/master/
.. _Requests: https://requests.readthedocs.io/en/latest/


Using installed packages
Expand Down
2 changes: 1 addition & 1 deletion docs/scenarios/client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ your URLs, or to form-encode your POST data. Keep-alive and HTTP connection
pooling are 100% automatic, powered by urllib3, which is embedded within
Requests.

- `Documentation <http://docs.python-requests.org/en/latest/index.html>`_
- `Documentation <https://requests.readthedocs.io/en/latest/>`_
- `PyPi <http://pypi.org/project/requests>`_
- `GitHub <https://github.com/kennethreitz/requests>`_

Expand Down
2 changes: 1 addition & 1 deletion docs/scenarios/scrape.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ lxml and Requests
`lxml <http://lxml.de/>`_ is a pretty extensive library written for parsing
XML and HTML documents very quickly, even handling messed up tags in the
process. We will also be using the
`Requests <http://docs.python-requests.org/en/latest/>`_ module instead of the
`Requests <https://requests.readthedocs.io/en/latest/>`_ module instead of the
already built-in urllib2 module due to improvements in speed and readability.
You can easily install both using ``pip install lxml`` and
``pip install requests``.
Expand Down
3 changes: 1 addition & 2 deletions docs/writing/style.rst
Original file line number Diff line number Diff line change
Expand Up @@ -465,8 +465,7 @@ easy-to-read version of PEP 8 is also available at `pep8.org <http://pep8.org/>`

This is highly recommended reading. The entire Python community does their
best to adhere to the guidelines laid out within this document. Some project
may sway from it from time to time, while others may
`amend its recommendations <http://docs.python-requests.org/en/master/dev/contributing/#kenneth-reitz-s-code-style>`_.
may sway from it from time to time, while others may amend its recommendations.

That being said, conforming your Python code to PEP 8 is generally a good idea
and helps make code more consistent when working on projects with other
Expand Down