Adding a humble mention of urllib3 to the Requests intros.
authorAndrey Petrov <andrey.petrov@shazow.net>
Sat, 7 Jan 2012 23:17:06 +0000 (15:17 -0800)
committerAndrey Petrov <andrey.petrov@shazow.net>
Sat, 7 Jan 2012 23:17:06 +0000 (15:17 -0800)
README.rst
docs/index.rst

index 3ee4cd0279df4a243b51927a7ffed06deaa33b94..bc6c2917a2340973d38108436748f2d090a0f642 100644 (file)
@@ -27,8 +27,9 @@ See `the same code, without Requests <https://gist.github.com/973705>`_.
 Requests allow you to send  **HEAD**, **GET**, **POST**, **PUT**,
 **PATCH**, and **DELETE** HTTP requests. You can add headers, form data,
 multipart files, and parameters with simple Python dictionaries, and access the
-response data in the same way. It's powered by httplib, but it does
-all the hard work and crazy hacks for you.
+response data in the same way. It's powered by httplib and `urllib3
+<https://github.com/shazow/urllib3>`_, but it does all the hard work and crazy
+hacks for you.
 
 
 Features
index 78658cefd6f162cd1c70c5e6bc31af8b487ea047..d7f93fd855f472c27632d39dd6b167672e4af7c3 100644 (file)
@@ -28,7 +28,7 @@ Things shouldn’t be this way. Not in Python.
 
 See `the same code, without Requests <https://gist.github.com/973705>`_.
 
-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.
+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.
 
 
 Testimonials