diff -r 867c509c8c5e Doc/library/httplib.rst --- a/Doc/library/httplib.rst Thu Apr 16 11:56:35 2015 +0300 +++ b/Doc/library/httplib.rst Mon Apr 20 12:36:28 2015 -0500 @@ -24,6 +24,11 @@ HTTPS protocols. It is normally not used directly --- the module :mod:`urllib` uses it to handle URLs that use HTTP and HTTPS. +.. seealso:: + + The `Requests package `_ + is recommended for a higher-level http client interface. + .. note:: HTTPS support is only available if the :mod:`socket` module was compiled with diff -r 867c509c8c5e Doc/library/urllib.rst --- a/Doc/library/urllib.rst Thu Apr 16 11:56:35 2015 +0300 +++ b/Doc/library/urllib.rst Mon Apr 20 12:36:28 2015 -0500 @@ -24,6 +24,11 @@ instead of filenames. Some restrictions apply --- it can only open URLs for reading, and no seek operations are available. +.. seealso:: + + The `Requests package `_ + is recommended for a higher-level http client interface. + .. warning:: When opening HTTPS URLs, it does not attempt to validate the server certificate. Use at your own risk! diff -r 867c509c8c5e Doc/library/urllib2.rst --- a/Doc/library/urllib2.rst Thu Apr 16 11:56:35 2015 +0300 +++ b/Doc/library/urllib2.rst Mon Apr 20 12:36:28 2015 -0500 @@ -18,6 +18,10 @@ URLs (mostly HTTP) in a complex world --- basic and digest authentication, redirections, cookies and more. +.. seealso:: + + The `Requests package `_ + is recommended for a higher-level http client interface. The :mod:`urllib2` module defines the following functions: diff -r 21cd7f83e0aa Doc/library/http.client.rst --- a/Doc/library/http.client.rst Mon Mar 02 13:23:25 2015 -0500 +++ b/Doc/library/http.client.rst Mon Apr 20 12:32:07 2015 -0500 @@ -19,6 +19,11 @@ HTTPS protocols. It is normally not used directly --- the module :mod:`urllib.request` uses it to handle URLs that use HTTP and HTTPS. +.. seealso:: + + The `Requests package `_ + is recommended for a higher-level http client interface. + .. note:: HTTPS support is only available if Python was compiled with SSL support diff -r 21cd7f83e0aa Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst Mon Mar 02 13:23:25 2015 -0500 +++ b/Doc/library/urllib.request.rst Mon Apr 20 12:32:07 2015 -0500 @@ -12,6 +12,10 @@ opening URLs (mostly HTTP) in a complex world --- basic and digest authentication, redirections, cookies and more. +.. seealso:: + + The `Requests package `_ + is recommended for a higher-level http client interface. The :mod:`urllib.request` module defines the following functions: diff -r 2d8e4047c270 Doc/library/http.client.rst --- a/Doc/library/http.client.rst Thu Apr 16 11:54:14 2015 +0300 +++ b/Doc/library/http.client.rst Mon Apr 20 12:33:44 2015 -0500 @@ -19,6 +19,11 @@ HTTPS protocols. It is normally not used directly --- the module :mod:`urllib.request` uses it to handle URLs that use HTTP and HTTPS. +.. seealso:: + + The `Requests package `_ + is recommended for a higher-level http client interface. + .. note:: HTTPS support is only available if Python was compiled with SSL support diff -r 2d8e4047c270 Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst Thu Apr 16 11:54:14 2015 +0300 +++ b/Doc/library/urllib.request.rst Mon Apr 20 12:33:44 2015 -0500 @@ -12,6 +12,10 @@ opening URLs (mostly HTTP) in a complex world --- basic and digest authentication, redirections, cookies and more. +.. seealso:: + + The `Requests package `_ + is recommended for a higher-level http client interface. The :mod:`urllib.request` module defines the following functions: diff -r 35a9d60145cd Doc/library/http.client.rst --- a/Doc/library/http.client.rst Fri Apr 17 04:58:45 2015 +0300 +++ b/Doc/library/http.client.rst Mon Apr 20 12:26:44 2015 -0500 @@ -19,6 +19,12 @@ HTTPS protocols. It is normally not used directly --- the module :mod:`urllib.request` uses it to handle URLs that use HTTP and HTTPS. +.. seealso:: + + The `Requests package `_ + is recommended for a higher-level http client interface. + + .. note:: HTTPS support is only available if Python was compiled with SSL support diff -r 35a9d60145cd Doc/library/urllib.request.rst --- a/Doc/library/urllib.request.rst Fri Apr 17 04:58:45 2015 +0300 +++ b/Doc/library/urllib.request.rst Mon Apr 20 12:26:44 2015 -0500 @@ -12,6 +12,10 @@ opening URLs (mostly HTTP) in a complex world --- basic and digest authentication, redirections, cookies and more. +.. seealso:: + + The `Requests package `_ + is recommended for a higher-level http client interface. The :mod:`urllib.request` module defines the following functions: