Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

71 lignes
2.1KB

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