Skip to main content

Library helps easy write concurrent executed code blocks

Project description

Build Status Code Coverage

Concurrently

Library helps easy 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:
            page = await fetch_page(url)  # some function for download page
            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))

Concurrently supports specific different concurrent engines.

Engines

AsyncIOEngine

Default engine for concurrently run code as asyncio coroutines:

from concurrently import concurrently, AsyncIOEngine

...
@concurrently(2, engine=AsyncIOEngine, loop=loop)  # loop is option
async def fetch_urls():
    ...

await fetch_urls()

AsyncIOExecutorEngine

Concurrently run code by asyncio executor:

from concurrent.futures import ThreadPoolExecutor
from concurrently import concurrently, AsyncIOExecutorEngine

...
my_pool = ThreadPoolExecutor()

@concurrently(2, engine=AsyncIOExecutorEngine, loop=loop, executor=my_pool)
def fetch_urls():  # not async def
    ...

await fetch_urls()

If executor is None or not set will using default asyncio executor.

Note: ProcessPoolExecutor is not supported.

ThreadEngine

Concurrently run code in system threads:

from concurrently import concurrently, ThreadEngine

...
@concurrently(2, engine=ThreadEngine)
def fetch_urls():  # not async def
    ...

fetch_urls()  # not await

ThreadPoolEngine

Concurrently run code in system threads by use concurrent.futures.ThreadPoolExecutor:

from concurrently import concurrently, ThreadPoolEngine

...
@concurrently(2, engine=ThreadPoolEngine)
def fetch_urls():
    ...

fetch_urls()

Note: with this engine stop() is not work correctly.

ProcessEngine

Concurrently run code in system process:

from concurrently import concurrently, ProcessEngine

...
@concurrently(2, engine=ProcessEngine)
def fetch_urls():
    ...

fetch_urls()

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

concurrently-0.3.0.tar.gz (7.7 kB view details)

Uploaded Source

File details

Details for the file concurrently-0.3.0.tar.gz.

File metadata

File hashes

Hashes for concurrently-0.3.0.tar.gz
Algorithm Hash digest
SHA256 18d111e6d22f1c6383881a196d3b6db58a072f65724618991074a0b2c07c7642
MD5 c6819bc7ef2fe04fbde20f629a54136a
BLAKE2b-256 a16abb2790467d6754381dc20dfd4a272050d2547646515ea1802717c46e61fc

See more details on using hashes here.

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