~ubuntu-branches/ubuntu/precise/python-httplib2/precise-security

« back to all changes in this revision

Viewing changes to PKG-INFO

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Jahn
  • Date: 2006-10-11 08:39:48 UTC
  • Revision ID: james.westby@ubuntu.com-20061011083948-vhdyrq8x9925nnmo
Tags: upstream-0.2.0
ImportĀ upstreamĀ versionĀ 0.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Metadata-Version: 1.0
 
2
Name: httplib2
 
3
Version: 0.2.0
 
4
Summary: A comprehensive HTTP client library.
 
5
Home-page: http://bitworking.org/projects/httplib2/
 
6
Author: Joe Gregorio
 
7
Author-email: joe@bitworking.org
 
8
License: MIT
 
9
Download-URL: http://bitworking.org/projects/httplib2/dist/httplib2-0.2.0.tar.gz
 
10
Description: 
 
11
        
 
12
        A comprehensive HTTP client library, ``httplib2`` supports many features left out of other HTTP libraries.
 
13
        
 
14
        **HTTP and HTTPS**
 
15
        HTTPS support is only available if the socket module was compiled with SSL support.
 
16
        
 
17
        
 
18
        **Keep-Alive**
 
19
        Supports HTTP 1.1 Keep-Alive, keeping the socket open and performing multiple requests over the same connection if possible.
 
20
        
 
21
        
 
22
        **Authentication**
 
23
        The following three types of HTTP Authentication are supported. These can be used over both HTTP and HTTPS.
 
24
        
 
25
        * Digest
 
26
        * Basic
 
27
        * WSSE
 
28
        
 
29
        **Caching**
 
30
        The module can optionally operate with a private cache that understands the Cache-Control:
 
31
        header and uses both the ETag and Last-Modified cache validators. Both file system
 
32
        and memcached based caches are supported.
 
33
        
 
34
        
 
35
        **All Methods**
 
36
        The module can handle any HTTP request method, not just GET and POST.
 
37
        
 
38
        
 
39
        **Redirects**
 
40
        Automatically follows 3XX redirects on GETs.
 
41
        
 
42
        
 
43
        **Compression**
 
44
        Handles both 'deflate' and 'gzip' types of compression.
 
45
        
 
46
        
 
47
        **Lost update support**
 
48
        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
 
49
        
 
50
        
 
51
        **Unit Tested**
 
52
        A large and growing set of unit tests.
 
53
        
 
54
Platform: UNKNOWN
 
55
Classifier: Development Status :: 3 - Alpha
 
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: Topic :: Internet :: WWW/HTTP
 
62
Classifier: Topic :: Software Development :: Libraries