Library helps easy write concurrent executed code blocks
Project description
Concurrently
Library helps to easily write concurrent executed code blocks.
Quick example:
import asyncio
from concurrently import concurrently
async def amain(loop):
"""
How to fetch some web pages with concurrently.
"""
urls = [ # define pages urls
'http://test/page_1',
'http://test/page_2',
'http://test/page_3',
'http://test/page_4',
]
results = {}
# immediately run wrapped function concurrent
# in 2 thread (asyncio coroutines)
@concurrently(2)
async def fetch_urls():
for url in urls:
# some function for download page
page = await fetch_page(url)
results[url] = page
# wait until all concurrent threads finished
await fetch_urls()
print(results)
if __name__ == '__main__':
loop = asyncio.get_event_loop()
loop.run_until_complete(amain(loop))
- Decorator @concurrently makes to main thinks:
starts concurrent execution specified count of decorated function
returns special waiter object to control the running functions
By default, the code runs as asyncio coroutines, but there are other supported ways to execute, by specifying the argument engine.
Documentation
Requirements
Now support only Python 3.5 and above.
Install
From PyPi:
$ pip install concurrently
From local:
# update setuptools
$ pip install 'setuptools >= 30.4'
# do install
$ make install
# or
$ pip install .
Development
Prepare and activate virtual environment like:
$ python3 -m venv .env
# for bash
$ source .env/bin/activate
# for fish
$ . .env/bin/activate.fish
Update pre-install dependencies:
$ pip install 'setuptools >= 30.4'
Install:
$ make install_dev
# or
$ pip install --editable .[develop]
Run tests:
$ make test
# or
$ pytest tests/
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 concurrently-1.1.tar.gz
.
File metadata
- Download URL: concurrently-1.1.tar.gz
- Upload date:
- Size: 9.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9e20e3cc9af9755e332876198fec356a1d5e5762e7c3083000240a6da75f567 |
|
MD5 | db27c1c2e12e54e384ffed08b55a6132 |
|
BLAKE2b-256 | ee48ca58472410fb2650807dce31c5ee1e487cdcaf1c28eb246d96f51416ae71 |
File details
Details for the file concurrently-1.1-py3-none-any.whl
.
File metadata
- Download URL: concurrently-1.1-py3-none-any.whl
- Upload date:
- Size: 14.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef3b6fe27f3ab4dcd546d4ee6ace5c0d1651003c7ea73b7138cc0cc05fdd9071 |
|
MD5 | f35de08da20af472a15e176333c4d86a |
|
BLAKE2b-256 | dcd77e0820c011a75fdbce6fefe27469284b6ff5574d4b168a5ece94927264e2 |