Skip to content

Commit e185aec

Browse files
committed
Adding a humble mention of urllib3 to the Requests intros.
1 parent 638532d commit e185aec

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ See `the same code, without Requests <https://gist.github.com/973705>`_.
2727
Requests allow you to send **HEAD**, **GET**, **POST**, **PUT**,
2828
**PATCH**, and **DELETE** HTTP requests. You can add headers, form data,
2929
multipart files, and parameters with simple Python dictionaries, and access the
30-
response data in the same way. It's powered by httplib, but it does
31-
all the hard work and crazy hacks for you.
30+
response data in the same way. It's powered by httplib and `urllib3
31+
<https://github.com/shazow/urllib3>`_, but it does all the hard work and crazy
32+
hacks for you.
3233

3334

3435
Features

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Things shouldn’t be this way. Not in Python.
2828

2929
See `the same code, without Requests <https://gist.github.com/973705>`_.
3030

31-
Requests takes all of the work out of Python HTTP — making your integration with web services seamless. There's no need to manually add query strings to your URLs, or to form-encode your POST data.
31+
Requests takes all of the work out of Python HTTP — making your integration with web services seamless. There's no need to manually add query strings to your URLs, or to form-encode your POST data. The core of Requests is powered by `urllib3 <https://github.com/shazow/urllib3>`_ which is included as part of the Requests package.
3232

3333

3434
Testimonials

0 commit comments

Comments
 (0)