Simple asynchronous task helpers
Project description
async_task_helpers
Simple asynchronous task helpers
How to install
pip install async_task_helpers
Features
Loop tasks
from async_task_helpers import loop
@loop(minutes=5, seconds=30)
async def loop_example():
# This LoopTask will run in every 5 minute and 30 seconds.
await some_async_task()
await some_async_task2()
Asynchronous Callbacks
import asyncio
from async_task_helpers import async_callback_handler
async def universe_last_answer():
print('Universe`s a whole and entire, final answer is...')
await asyncio.sleep(1)
print('42!')
return 42
async def async_callback(result):
await asyncio.sleep(5)
print(f'I got the result of {result}!')
task = asyncio.create_task(
async_callback_handler(
universe_last_answer,
async_callback
),
name='Async Callback Test'
)
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file async_task_helpers-1.0.1-py3-none-any.whl.
File metadata
- Download URL: async_task_helpers-1.0.1-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.9.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f743a67640852e3fe4f57adcbf9652972a9e19a829567c69ebfe7159f1d67a8b
|
|
| MD5 |
dc2e580c3154a5536498666d099f5cd4
|
|
| BLAKE2b-256 |
12927d7038874207a3223dac39277f44ef15eedc29c9a30c10117b718d906e16
|