An http/https client library that works with asyncore/asynchat
Project description
Origin
This package was originally written as a sort of proof-of-concept github gist on December 25, 2011 by Josiah Carlson. This updated package is copyright 2012, and is released under the GNU LGPL v2.1 license.
Description
This package offers the ability to connect to http servers via the asyncore and asynchat modules, in an attempt to download files, or otherwise integrate connecting to other services from within asyncore-derived services.
Download Files
- The included async_http.get module, which can be used on the command line:
$ python -m async_http.get <list of urls>
… will fetch the provided urls in parallel. If you check the source for the get.py module, you can see how you can override the http_body(), http_done(), and http_close() method to (for example) fetch content remotely and possibly redirect it somewhere else.
By properly subclassing from DownloadFile you can serve remote files, similar to the requested feature here: http://code.google.com/p/pyftpdlib/issues/detail?id=197
Make OAuth Requests
- The included async_http.oauth module, which can be used on the command line:
$ python -m async_http.oauth ckey,csecret [tkey,tsecret] <url>
… will perform an Oauth 1.0a request against the provided url with the given client key and secret, with optional token key and secret (your url will determine whether you need a some sort of access or request token).
Features
HTTP/HTTPS
redirect support
chunked transfer encoding
timeouts
transparent gzip handling (derived from http://effbot.org/zone/consumer-gzip.htm)
OAuth 1.0a client support (no other 3rd party libraries required)
API
If you want to write your own handlers for events, subclass from _http.AsyncHTTPRequest, and override one or more of the following methods:
def http_setup(self): ''' Called just before the connection is set up. You can manipulate headers, request body, etc. ''' def http_response(self): ''' Called after the response is read. You can handle redirects, perform additional logging, start a reply in a proxy, etc. ''' def http_body(self): ''' Called at the end of every chunk with chunked transfer encoding, and any time data is read for the body otherwise. ''' def http_chunk(self): ''' Called after every chunk with the chunked transfer encoding, immediately after the body callback. ''' def http_done(self): ''' Called when the body has finshed being transferred. This will not be called when there is an error. ''' def http_close(self): ''' Called when the connection has been closed. '''
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file async_http-.11.tar.gz
.
File metadata
- Download URL: async_http-.11.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bfe27587fb51446658f4f94a995673c36061389159224871e0290eddb5c5c7b2 |
|
MD5 | a1a83a083391b1561006ca74fa6477fd |
|
BLAKE2b-256 | a6df54143e698eb5b3e34e3fadae86c5cc87ce0e7276ac5096890fa0565570a3 |