Tools to easily parallelize GET http calls to REST resource endpoints
Project description
Parallel REST Calls
The package provides a couple of methods that can be used to make parallel rest calls to retrieve multiple resources from a single REST collection. This packages uses requests package under the hood.
Usage
For retrieving resources by path
parallelize = ParallelCalls(number_of_threads=20)
resource_ids = [2,3,5,8,13]
results = parallelize.path_calls('https://www.sample.com/items', resource_ids)
For retrieving resources by query params
params = [1,2,3]
results = parallelize.path_calls('https://www.sample.com/items', "param_name" params)
The return value is in the following format
[
{'status_code': 200, 'id': 'id_1', 'result': "result_object_1"},
{'status_code': 200, 'id': 'id_2', 'result': "result_object_2"}
]
Reporting Bugs
Development and bug tracking is performed on GitHub
Contributing
make init
initializes the repo.
make tests
runs the tests.
Feel free to raise a PR. Please ensure all tests pass before raising a PR
License
MIT License
Copyright (c) 2022 Parallel REST Calls
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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 parallel_rest_calls-1.0.0.tar.gz
.
File metadata
- Download URL: parallel_rest_calls-1.0.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd13c72386370f7de7d4f3345ae9bb5fc30c2fe26cc06639914a88332b504b36 |
|
MD5 | 88961340c24e0880932db257c973614a |
|
BLAKE2b-256 | 1b237a37082c11fbbf677acac588677c77253e156baafcada24e7f911b21969d |
File details
Details for the file parallel_rest_calls-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: parallel_rest_calls-1.0.0-py3-none-any.whl
- Upload date:
- Size: 3.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b4083c60f2644cefe47f602e51176dd2417934655d870f1c400aaca00f975e6b |
|
MD5 | df4b96f4021b68fc3fd8b047da4fa701 |
|
BLAKE2b-256 | f6eade41b74d4dfa2f474c3bfe8c39c6d24248b5be78994063a53f788e0e1a12 |