OLD | NEW |
(Empty) | |
| 1 Metadata-Version: 1.1 |
| 2 Name: httplib2 |
| 3 Version: 0.9.2 |
| 4 Summary: A comprehensive HTTP client library. |
| 5 Home-page: https://github.com/jcgregorio/httplib2 |
| 6 Author: Joe Gregorio |
| 7 Author-email: joe@bitworking.org |
| 8 License: MIT |
| 9 Description: |
| 10 |
| 11 A comprehensive HTTP client library, ``httplib2`` supports many features
left out of other HTTP libraries. |
| 12 |
| 13 **HTTP and HTTPS** |
| 14 HTTPS support is only available if the socket module was compiled with
SSL support. |
| 15 |
| 16 |
| 17 **Keep-Alive** |
| 18 Supports HTTP 1.1 Keep-Alive, keeping the socket open and performing m
ultiple requests over the same connection if possible. |
| 19 |
| 20 |
| 21 **Authentication** |
| 22 The following three types of HTTP Authentication are supported. These
can be used over both HTTP and HTTPS. |
| 23 |
| 24 * Digest |
| 25 * Basic |
| 26 * WSSE |
| 27 |
| 28 **Caching** |
| 29 The module can optionally operate with a private cache that understand
s the Cache-Control: |
| 30 header and uses both the ETag and Last-Modified cache validators. Both
file system |
| 31 and memcached based caches are supported. |
| 32 |
| 33 |
| 34 **All Methods** |
| 35 The module can handle any HTTP request method, not just GET and POST. |
| 36 |
| 37 |
| 38 **Redirects** |
| 39 Automatically follows 3XX redirects on GETs. |
| 40 |
| 41 |
| 42 **Compression** |
| 43 Handles both 'deflate' and 'gzip' types of compression. |
| 44 |
| 45 |
| 46 **Lost update support** |
| 47 Automatically adds back ETags into PUT requests to resources we have a
lready cached. This implements Section 3.2 of Detecting the Lost Update Problem
Using Unreserved Checkout |
| 48 |
| 49 |
| 50 **Unit Tested** |
| 51 A large and growing set of unit tests. |
| 52 |
| 53 |
| 54 Platform: UNKNOWN |
| 55 Classifier: Development Status :: 4 - Beta |
| 56 Classifier: Environment :: Web Environment |
| 57 Classifier: Intended Audience :: Developers |
| 58 Classifier: License :: OSI Approved :: MIT License |
| 59 Classifier: Operating System :: OS Independent |
| 60 Classifier: Programming Language :: Python |
| 61 Classifier: Programming Language :: Python :: 3 |
| 62 Classifier: Topic :: Internet :: WWW/HTTP |
| 63 Classifier: Topic :: Software Development :: Libraries |
OLD | NEW |