Skip to content
/ treq Public
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

dreid/treq

This branch is 228 commits behind twisted/treq:trunk.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jan 30, 2022
82f01e6 · Jan 30, 2022
Jan 16, 2021
Jan 30, 2022
Jul 27, 2021
Jan 30, 2022
Dec 14, 2016
Jan 24, 2021
Jan 24, 2021
Jan 30, 2022
Jan 25, 2021
Mar 6, 2014
Jan 19, 2022
Jul 8, 2021
Jan 18, 2022
Apr 18, 2021
Jan 24, 2021
Dec 28, 2021

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

>>> def done(response):
...     print(response.code)
...     reactor.stop()

>>> treq.get("https://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.

Copyright and License

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

Security policy

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%