An async task queue with live progress display
Project description
aqueue is an async task queue with live progress display.
You put items (tasks) in, and they get processed, possibly creating more items which get processed, and so on, until all items are completed. A typical use case would be to scrape a website.
Meanwhile, a nice visualization of the queue’s goings-on is displayed in the terminal.
Installation
aqueue is a Python package hosted on PyPI. The recommended installation method is pip-installing into a virtual environment:
pip install aqueue
Getting Started
There’s two things you need to do to use aqueue:
Implement your Item subclasses.
Start your queue with one of those items.
Example
If you had a hierarchy of items like this…
Then, you might process it with aqueue like this…
import aqueue
class RootItem(aqueue.Item):
async def process(self) -> aqueue.ProcessRetVal:
# display what we're doing in the worker status panel
self.set_worker_desc("Processing RootItem")
# make an HTTP request, parse it, etc
...
# when you discover more items you want to process, enqueue them by yield-ing
# them:
for _ in range(3):
yield ChildItem()
async def after_children_processed(self) -> None:
# run this method when this Item and all other Items it enqueued are done
print("All done!")
class ChildItem(aqueue.Item):
# track the enqueueing and completion of these items in the overall panel
track_overall: bool = True
async def process(self) -> aqueue.ProcessRetVal:
self.set_worker_desc("Processing ChildItem")
# this child item has no further children to enqueue, so it doesn't yield
# anything
if __name__ == "__main__":
aqueue.run_queue(
initial_items=[RootItem()],
num_workers=2,
)
Project Information
License: MIT
Source Code: https://github.com/t-mart/aqueue
Documentation: https://t-mart.github.io/aqueue/
Supported Python Versions: 3.10 and later
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 aqueue-0.9.2.tar.gz
.
File metadata
- Download URL: aqueue-0.9.2.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1015-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96bead7a0576df06d5ecca4437cf2d5425a7a1d55312739397d02b671db5fca2 |
|
MD5 | 48a14a2e8d5beb13af69040345885070 |
|
BLAKE2b-256 | 43ca88aa93bc89a8e2d41e4f351799f9e88efb9648564d4531900548eec638b9 |
File details
Details for the file aqueue-0.9.2-py3-none-any.whl
.
File metadata
- Download URL: aqueue-0.9.2-py3-none-any.whl
- Upload date:
- Size: 11.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.12 Linux/6.5.0-1015-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 129965603f914afe2639127d5ce3c281fc58c6f511d69f1b6c9d798913ef3a38 |
|
MD5 | 8f558100f84ddf5edcd0500a04cab53c |
|
BLAKE2b-256 | d1b3dc26a517ff7f3f0654b5bb37709ea703c892121aec24d9f6313bd2cb9ada |