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.2.0.tar.gz
(6.8 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.2.0.tar.gz.
File metadata
- Download URL: robot_tasks-0.2.0.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
046a1de8db442312fef8732dca3283efd076d5d245f3c322c8cf7a4f365056e4
|
|
| MD5 |
9ea7ad065e7b2a61dc786b8209c174ef
|
|
| BLAKE2b-256 |
a38828a5b64f7e56022054982ec7000dbb0d03833ba328c190585bac7af47f0d
|
File details
Details for the file robot_tasks-0.2.0-py3-none-any.whl.
File metadata
- Download URL: robot_tasks-0.2.0-py3-none-any.whl
- Upload date:
- Size: 3.5 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 |
c6034234088b266da430ec97368a83931b5a6015ddb499163d0eb273e63e7b06
|
|
| MD5 |
b199d71eb2a258848952851ff220fcc7
|
|
| BLAKE2b-256 |
f56ecc9a1617cbdc2a950700f3ee99b6532ae868107736912ed31fe80f6f5e89
|