Function decorators based on asyncio synchronization primitives
Project description
aiodecorators
Function decorators based on asyncio Lock, Semaphore and BoundedSemaphore
Install
pip3 install aiodecorators
Usage
from aiodecorators import Lock
@Lock()
async def f():
pass
from aiodecorators import Semaphore
@Semaphore(n)
async def f():
pass
from aiodecorators import BoundedSemaphore
@BoundedSemaphore(n)
async def f():
pass
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
aiodecorators-0.2.1.tar.gz
(1.7 kB
view hashes)
Built Distribution
Close
Hashes for aiodecorators-0.2.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79291f5c339fc0d08fbf91aac1a4568a7d505ba19fa7c08e7bfc2a72357dd4af |
|
MD5 | 4bb540ee722c5c9c062fc44c84a03722 |
|
BLAKE2b-256 | 4b886675e4158d85324348286aec7312a949c87614a6e105cbf3e1274254eb5f |