mksh / treq

Python requests like API built on top of Twisted's HTTP client.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

treq

pypi build coverage

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 treq[dev]

Run Tests (unit & integration):

trial treq

Lint:

pep8 treq
pyflakes treq

Build docs:

tox -e docs

About

Python requests like API built on top of Twisted's HTTP client.

License:Other


Languages

Language:Python 100.0%