Simple lightweight HTTP client to perform GET requests in parallel with multiprocessing and in each process use aiohttp to do them concurrently and maximize the throughtput.
Project description
FastGET
Easy parallel and concurrent GET requests
The idea of this package is to wrap multiprocessing
and async
concurrency and allow the user to perform thousands of requests in parallel and concurrently without having to worry about pools of processes and async event loops.
It only supports GET requests. More methods could be implemented but this initial version is as simple as it. Also implementing other methods will break the beauty of the name.
The input is an iterable and the output is a generator. As soon as the requests get answer they are yielded until all the requests of the input are done.
Each element of the iterable is a tuple with Id
and URL
.
Each element yielded is a tuple with the same Id
and the json response. With the Id
you can
later map the responses.
This is useful for cases where you have a huge amount of requests to perform to an API and you need to do them as fast as possible.
The client by default detects the number of CPUs available and starts one process per each CPU. Then chunks the input iterator to provide requests to all the processes. Each process for each task opens an event loop and performs all those requests concurrently. Once all requests are awaited, the chunk with all the responses is returned back to the main process. This is why we can see that our generator is receiving the responses un bulks.
Install:
From PyPi:
pip install fastget
Usage:
Use always context manager:
>>> from fastget import FastGET
>>> with FastGET() as client:
... responses = client.get([(1, "http://localhost:12345"), (2, "http://localhost:12345")])
... for response in responses:
... print(response)
...
fastget INFO Start processing requests with FastGET parameters:
fastget INFO num_workers: 8
fastget INFO single_submit_size: 5000
fastget INFO pool_submit_size: 50000
fastget INFO queue_max_size: 100000
(2, {'message': 'Hello World!'})
(1, {'message': 'Hello World!'})
fastget INFO All requests processed:
fastget INFO Total requests: 2
fastget INFO Total time: 0.05
fastget INFO Requests/s: 34.16
You can provide a generator to don't blow up the memory:
>>> from fastget import FastGET
>>> from collections import deque
>>>
>>> def mygen():
... for i in range(100_000):
... yield (i, "http://localhost:12345")
...
>>> with FastGET() as client:
... responses = client.get(mygen())
... _ = deque(responses)
...
fastget INFO Start processing requests with FastGET parameters:
fastget INFO num_workers: 8
fastget INFO queue_max_size: 100000
fastget INFO input_chunk_size: 10000
fastget INFO pool_submit_size: 1000
fastget INFO All requests processed:
fastget INFO Total requests: 100000
fastget INFO Total time (s): 36.35
fastget INFO Requests/s: 2750.93
Parameters
You can configure some parameters like the amount of workers or how the client chunks the input:
fastget.FastGET parameters:
num_workers
:- type: int
- default: os.cpu_count()
- description: Number of processes to open with multiprocessing
queue_max_size
:- type: int
- default: 100.000
- description: Maximum number of items that can be enqueued. This default number proved to not blow up the memory and to have enough items in the queue to have always work to do with 8 processes. Feel free to adjust it, just watch out the memory usage.
input_chunk_size
:- type: int
- default: 10.000
- description: This is the size of the chunks for the input. We will be reading the input iterator in chunks of this size up to
queue_max_size
.
pool_submit_size
:- type: int
- default: 1.000
- description: Each chunk of
input_chunk_size
will also be chunked to minor chunks of this size before being submited to the pool. The workers will be consuming chunks of this size and each of these chunks will be requested in an event loop.
Parameters:
ids_and_urls
:- type: Iterable[Tuple[int, str]]
- required: True
- description: Provide the tuples containing the ID of the request and the URL to be requested.
Response: Generator[Tuple[int, str], None, None]. For each input tuple an output tuple will be returned containing the same ID + the json of the response.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fastget-0.6.0.tar.gz
.
File metadata
- Download URL: fastget-0.6.0.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93924b9a41699d2669016cab4d9ed19e918f1db94a4ccc015e84d35dcbd511ab |
|
MD5 | 33e3edebc5cf5234ca5544a805a08f05 |
|
BLAKE2b-256 | 9d0ff36bbcde6a049e889d940c1edd93e201fd495ce1f811873c42f225b84316 |
File details
Details for the file fastget-0.6.0-py3-none-any.whl
.
File metadata
- Download URL: fastget-0.6.0-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.16
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 134b3c02778946f7bb80456825118bc37b7807477034272bb11144dcfe7f7d06 |
|
MD5 | e1d568b676538a84c73df3bac7046f93 |
|
BLAKE2b-256 | 8168f891b54019b54696d00466dd6fbc1636a73e7fc7d819512d6321e0f3b929 |