Skip to main content

simple tools

Project description

Desc

Tools for creating asynchronous scripts easily.

keywords: tools,asyncio

Feature

  • Task pool

  • Actor and Actor Manager

Example

async with AioFixedTaskPoolSimple() as task_pool:
    print(f"test pool size {task_pool.size}")
    print("test 4 task with pool size 3")
    await asyncio.gather(
        task_pool.submit(test, func_args=["c"]),
        task_pool.submit(test, func_args=["b"]),
        task_pool.submit(test, func_args=["a"]),
        task_pool.submit(test, func_args=["d"])
    )

class Pinger(AioActor):
    async def receive(self, message):
        print(message)
        try:
            await ActorManager.get_actor("Ponger").Send('ping')
        except Exception as e:
            print(f"receive run error {e}")
        finally:
            await asyncio.sleep(0.5)

Install

  • python -m pip install aio_parallel_tools

Document

https://python-tools.github.io/aio_parallel_tools/

Change Log

version 0.0.1

  • created this project

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

aio_parallel_tools-0.0.1.tar.gz (17.2 kB view hashes)

Uploaded Source

Built Distribution

aio_parallel_tools-0.0.1-py3-none-any.whl (37.8 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