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.
>>> import treq
>>> async def main(reactor):
... response = await treq.get("https://github.com")
... print(response.code)
... body = await response.text()
... print("<!DOCTYPE html>" in body)
>>> from twisted.internet.task import react
>>> react(main)
200
True
For more info read the docs.
treq
development is hosted on GitHub.
We welcome contributions: feel free to fork and send contributions over. See CONTRIBUTING.rst for more info.
Refer to the Twisted code of conduct.
treq
is made available under the MIT license.
See LICENSE for legal details and copyright notices.