Skip to content
/ treq Public

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

License

Notifications You must be signed in to change notification settings

twisted/treq

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6291b35 · Feb 16, 2025
Feb 15, 2025
Feb 16, 2025
Dec 10, 2024
Sep 19, 2024
Dec 14, 2016
Nov 3, 2023
Feb 15, 2025
Sep 19, 2024
Apr 30, 2023
Mar 6, 2014
May 1, 2024
May 1, 2024
Feb 15, 2025
Sep 25, 2024

Repository files navigation

treq: High-level Twisted HTTP Client API

PyPI calver: YY.MM.MICRO Coverage Documentation

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.

Contributing

treq development is hosted on GitHub.

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

Code of Conduct

Refer to the Twisted code of conduct.

Copyright and License

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