Simple task library using asyncio.
Project description
docs |
|
|---|---|
package |
Simple task library using asyncio.
Free software: MIT License
Installation
pip install robot-tasks
You can also install the in-development version with:
pip install https://github.com/fmorton/robot-tasks/archive/main.zip
Tasks Example with a Birdbrain Robot
from birdbrain import Hummingbird
from tasks import Tasks
async def task_1(bird):
while True:
print("task_1 running")
await Tasks.yield_task(1.0)
async def task_2(bird):
while True:
print("task_2 running")
await Tasks.yield_task(0.5)
bird = Hummingbird("A")
tasks = Tasks()
tasks.create_task(task_1(bird))
tasks.create_task(task_2(bird))
tasks.run()
Testing
To run all the tests run:
pytest
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
robot_tasks-0.1.1.tar.gz
(6.9 kB
view details)
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 robot_tasks-0.1.1.tar.gz.
File metadata
- Download URL: robot_tasks-0.1.1.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9925ae9ef86e2c13de4e008e2b219950bbef21c36d6b840349c1ff078f11074e
|
|
| MD5 |
f2084ad57a4089deb81eaeeeaf3c42f5
|
|
| BLAKE2b-256 |
3adaf50bab50d86c42b9d3160caab157a221049898920d0a3fcde7236ef1a61d
|
File details
Details for the file robot_tasks-0.1.1-py3-none-any.whl.
File metadata
- Download URL: robot_tasks-0.1.1-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d17d7b3f365195db3036ce97768900c85a69289a8e45bd0ba23f8850a2bc58fe
|
|
| MD5 |
192be9d52601bb9e5d4eae1b3aae62bf
|
|
| BLAKE2b-256 |
5b1598d242b7dcaa3fa9b493b71470751e9e4532763fdf112b47332f8f941dcf
|