Donald is here
Project description
Donald – A simple task engine for Asyncio.
The main goal for Donald to run async/sync code without blocking main loop.
Donald supports synchronous and asynchronous paradigms. The package is running coroutines and functions in multi loops. Donald could run periodic tasks and listen AMQP queues.
Requirements
python 3.3+
Installation
Donald should be installed using pip:
pip install donald
Usage
From shell:
$ donald --help
From synchronous python code:
donald = Donald() donald.start() donald.submit(<coro or function>) donald.schedule(<seconds>, <coro or function>)
From asynchronous python code:
donald = Donald() await donald.start() result = await donald.submit(<coro or function>) await donald.schedule(<seconds>, <coro or function>)
Listen AMQP
AMQP:
donald = Donald() await donald.start() # Send task to queue await donald.queue.start(False) await donald.queue.submit(<coro or func>, *args, **kwargs) # Listen tasks await donald.queue.listen() await donald.listen(<AMQP URL>)
Bug tracker
If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/donald/issues
Contributing
Development of starter happens at github: https://github.com/klen/donald
Contributors
klen (Kirill Klenov)
License
Licensed under a BSD license.
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 Donald-0.1.1.tar.gz
.
File metadata
- Download URL: Donald-0.1.1.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34db8d561b0861237549fc5eddb0959228786af008f8433dfbff955cc1d266c2 |
|
MD5 | a96ced2394470f76fac7b5b5534616ee |
|
BLAKE2b-256 | 6639e94768548a4913a270cd327dbfae8c1bc24c30b752c66f4500c244409b95 |
File details
Details for the file Donald-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: Donald-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e611238c41fea751cbabd1a62ed9763d58f8ce1f00c5b9c248e4539f9fcc476 |
|
MD5 | 57315517ce48741f365692116b84e911 |
|
BLAKE2b-256 | 6ca1b8e637de6ea177851a1c163215b70e5fa917fff6f056dd80c8f78e959422 |