Skip to content

reqt is a simple, asynchronous library that you can use to send large numbers of requests.

License

Notifications You must be signed in to change notification settings

melihcolpan/reqt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Reqt

reqt is a simple, asynchronous library that you can use to send large numbers of requests.

import asyncio
import reqt

async def custom_method(response):
    print(f"Status Code: {response.status}")
    print(f"Response: {response.content}")

async def main():
    urls = ["https://www.google.com"]
    await reqt.fetch_all(urls=urls, method=custom_method)

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

Requests allows you to send HTTP/1.1 requests extremely easily. Just give url addresses and process your results. It continues to be developed with new features every day!

Version

Installing Reqt and Supported Versions

Reqt is available on PyPI:

$ python -m pip install reqt

Reqt officially supports Python 3+.

About

reqt is a simple, asynchronous library that you can use to send large numbers of requests.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published