Skip to main content

Create async web requests in no time

Project description

🔀 Unparallel

Create Python async web requests in no time with unparallel!

Build status Coverage Report
Package Version Python Version
Code style: black Security: bandit Pre-commit License

Installation

pip install unparallel

Example

A simple example of doing a number of GET requests to an HTTP web service:

import asyncio
from unparallel import up

async def main():
    url = "https://httpbin.org"
    paths = [f"/get?i={i}" for i in range(5)]
    results = await up(url, paths)
    print([item["args"] for item in results])

asyncio.run(main())

This prints:

Making async requests: 100%|███████████| 5/5 [00:00<00:00,  9.98it/s]
[{'i': '0'}, {'i': '1'}, {'i': '2'}, {'i': '3'}, {'i': '4'}]

Similarly, we can do a bunch of POST requests. This time we will use a single path but multiple payloads:

import asyncio
from unparallel import up

async def main():
    url = "https://httpbin.org"
    path = "/post"
    payloads = [{"obj_id": i} for i in range(5)]
    results = await up(url, path, method="post", payloads=payloads)
    print([item["data"] for item in results])

asyncio.run(main())

This prints:

Making async requests: 100%|███████████| 5/5 [00:00<00:00,  9.98it/s]
['{"obj_id": 0}', '{"obj_id": 1}', '{"obj_id": 2}', '{"obj_id": 3}', '{"obj_id": 4}']

Contributing

As this project is still in early development, I'm happy for any feedback and contributions! Please refer to the contributing guidelines for details.

License

This project is licensed under the terms of the MIT license. See LICENSE for more details.

Credits

I was heavily inspired for this project by the blog post Making 1 million requests with python-aiohttp by Paweł Miech.

This project was generated with python-package-template.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

unparallel-0.1.0.tar.gz (6.8 kB view hashes)

Uploaded Source

Built Distribution

unparallel-0.1.0-py3-none-any.whl (6.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page