Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
/ treq Public archive
forked from twisted/treq

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

License

Notifications You must be signed in to change notification settings

fivestars/treq

 
 

Repository files navigation

treq: High-level Twisted HTTP Client API

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.

Contributing

treq development is hosted on GitHub.

We welcome contributions: feel to fork and send contributions over. See CONTRIBUTING.rst for more info.

Code of Conduct

Refer to the Twisted code of conduct.

treq is made available under the MIT license. See LICENSE for legal details and copyright notices.

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%