A requests-like API built on top of twisted.web's Agent
Project description
treq
treq is an HTTP library inspired by requests but written on top of Twisted’s Agents.
It provides a simple, higher level API for making HTTP requests when using Twisted.
>>> from treq import get
>>> def done(response):
... print response.code
... reactor.stop()
>>> get("http://www.github.com").addCallback(done)
>>> from twisted.internet import reactor
>>> reactor.run()
200
For more info read the docs.
Contribute
treq is hosted on GitHub.
Feel free to fork and send contributions over.
Developing
Install dependencies:
pip install -r requirements-dev.txt
Optionally install PyOpenSSL:
pip install PyOpenSSL
Run Tests (unit & integration):
trial treq
Lint:
pep8 treq pyflakes treq
Build docs:
cd docs; make html
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
treq-0.2.0.tar.gz
(10.6 kB
view details)
File details
Details for the file treq-0.2.0.tar.gz.
File metadata
- Download URL: treq-0.2.0.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34653c22d4ecfb5dea52ac29fcec056a157d2b079ec7d4449417a9eb67f0a9f0
|
|
| MD5 |
e1cc78dc487ec29f5fd654591ec67e90
|
|
| BLAKE2b-256 |
cde661ef3aa9b55e319ec4e8d83cd4f83faf4b371b55e79b7c82a4696473d1df
|