sixapart / batchhttp
- Source
- Commits
- Network (2)
- Issues (0)
- Downloads (2)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Thu Sep 17 16:22:58 -0700 2009 | |
| |
CHANGES.rst | ||
| |
LICENSE | ||
| |
MANIFEST.in | ||
| |
README.rst | ||
| |
batchhttp/ | Mon Feb 08 17:50:32 -0800 2010 | |
| |
doc/ | Mon Feb 08 17:50:32 -0800 2010 | |
| |
requirements.txt | ||
| |
setup.py | Mon Feb 08 17:50:32 -0800 2010 | |
| |
stdeb.cfg | Thu Sep 17 13:54:11 -0700 2009 | |
| |
tests/ |
README.rst
batchhttp provides parallel fetching of HTTP resources through MIME multipart encoding.
This package's BatchClient applies standard MIME multipart encoding to HTTP messages, providing a standards-conservant technique for making parallelizable HTTP requests over a single proxy connection.
To make a batch request, open a new request on a BatchClient instance and add your subrequests, along with callbacks that will receive the subresponses. Once all parallelized requests are added, complete the request; the request is made and the batched subresponses are provided to your callbacks.
This is an implementation of the draft specification for batch HTTP request processing available at:
http://martin.atkins.me.uk/specs/batchhttp

