Skip to content

treq

553 13 59 MIT/X
22.2.0 (11 months ago) Dec 28 2012 58.1 thousand (month)

treq is a Python library for making HTTP requests that provides a simple, convenient API for interacting with web services. It is inspired byt the popular requests library, but powered by Twisted asynchronous engine which allows promise based concurrency.

treq provides a simple, high-level API for making HTTP requests, including methods for GET, POST, PUT, DELETE, etc. It also allows for easy handling of JSON data, automatic decompression of gzipped responses, and connection pooling.

treq is a lightweight library and it's easy to use, it's a good choice for small to medium-sized projects where ease of use is more important than performance.

In web scraping treq isn't commonly used as it doesn't support HTTP2 but it's the only Twisted based HTTP client. treq is also based on callback/errback promises (like Scrapy) which can be easier to understand and maintain compared to asyncio's corountines.

Highlights


uses-twistedno-http2

Example Use


from twisted.internet import reactor
from twisted.internet.task import react
from twisted.internet.defer import ensureDeferred
import treq

# treq can be used with twisted's reactor with callbacks
response_deferred = treq.get(
    "http://httpbin.org/get"
)
# or POST
response_deferred = treq.post(
    "http://httpbin.org/post",
    json={"key": "value"},  # JSON
    data={"key": "value"},  # Form Data
)

# add callback or errback
def handle_response(response):
    print(response.code)
    response.text().addCallback(lambda body: print(body))
def handle_error(failure):
    print(failure)
# this callback will be called when request completes:
response_deferred.addCallback(handle_response)
# this errback will be called if request fails
response_deferred.addErrback(handle_error)
# this will be called if request completes or fails:
response_deferred.addBoth(lambda _: reactor.stop())  # close twisted once finished

if __name__ == '__main__':
    reactor.run()

#Note that treq can also be used with async/await:
async def main():
    # content reads response data and get sends a get request:
    print(await treq.content(await treq.get("https://example.com/")))

if __name__ == '__main__':
    react(lambda reactor: ensureDeferred(main()))
```

Alternatives / Similar


48,858 2.28.2 (11 days ago) Feb 14 2011 compare
13,174 3.8.3 (4 months ago) Jul 26 2019 compare
9,877 0.23.3 (19 days ago) Jul 26 2019 compare
935 7.45.2 (a month ago) Feb 25 2003 compare

Other Languages

8,082 3.3.0 (10 days ago) Dec 28 2012 compare
98,234 1.2.2 (25 days ago) Aug 29 2014 compare
got
12,497 12.5.3 (a month ago) Mar 27 2014 compare
16,224 8.0.6 (a month ago) Aug 22 2011 compare
1,567 3.2.0 (2 months ago) Dec 11 2011 compare
5,427 2.7.3 (7 days ago) Dec 19 2009 compare
696 2.8.3 (6 years ago) Jul 25 2009 compare
1,120 0.97.1 (12 days ago) Oct 31 2009 compare
5,618 0.21.0 (23 days ago) Jul 25 2009 compare
3,982 1.4.0 (2 years ago) Oct 06 2009 compare
1,384 1.0.3 (1 year, 3 months ago) Nov 22 2014 compare
22,297 7.5.0 (4 months ago) Nov 14 2011 compare
383 18.1.0 (5 months ago) Aug 06 2011 compare
1,211 1.1.7 (2 years ago) Oct 25 2009 compare
871 0.11.0 (2 years ago) Sep 25 2013 compare
req
2,970 v3.30.0 (7 days ago) Aug 10 2022 compare
7,210 v2.7.0 (1 year, 2 months ago) Jan 25 2018 compare
505 1.1.4 (2 years ago) Apr 20 2010 compare
3,494 v2.0.5 (3 months ago) Oct 06 2013 compare
1,896 1.2.1 (9 months ago) Nov 11 2011 compare
1,733 0.3.2 (2 years ago) Apr 14 2012 compare
2,899 0.12.0 (5 years ago) Mar 20 2015 compare