Add your description here
Project description
amgi-common
This package includes some useful helpers for writing AMGI servers.
Installation
pip install amgi-common==0.27.0
Constructs
Lifespan
This class handles the AMGI lifespan protocol.
from amgi_common import Lifespan
async def main_loop(app, state):
"""Handle event batches"""
async def serve(app):
async with Lifespan(app) as state:
# handle app calls
await main_loop(app, state)
Stoppable
This class should help with graceful shutdowns. Whenever you have a call to something with a timeout, it cancels that task. .
For example, if you have a client that has a method fetch_messages, which has a timeout you could loop like so:
from amgi_common import Stoppable
class Server:
def __init__(self, app):
self._app = app
self._stoppable = Stoppable()
self._client = Client()
self._running = True
async def main_loop(self, app, state):
while self._running:
messages = await self._client.fetch_messages(timeout=10_000)
# Handle messages
def stop(self):
self._running = False
There are several ways to deal with this:
- The above example, where on stop you will have to wait for the timeout plus the time to handle messages
- Run the main loop in a task, and cancel it on stop
Both have their own problems. In the first case, you could be waiting a long time. In the second case, when you receive messages, you should probably process them before shutting down.
The class Stoppable is there to help you. It will return the results of the callable iterably, but if the stoppable has
been told to stop, it will cancel any tasks it has running in the background, and stop any current iterations.
from amgi_common import Stoppable
class Server:
def __init__(self, app):
self._app = app
self._stoppable = Stoppable()
self._client = Client()
async def main_loop(self, app, state):
async for messages in self._stoppable.call(
self._client.fetch_messages, timeout=10_000
):
# Handle messages
pass
def stop(self):
self._stoppable.stop()
OperationBatcher
This class can simplify batch operations, for example, publishing multiple messages simultaneous. The implementation allows you to enqueue an item to run the operation on, and the operation will be scheduled in batches:
from amgi_common import OperationBatcher
async def batch_operation(items):
# Do a batch operation to get the batch result
return [item for item in batch_result]
operation_batcher = OperationBatcher(batch_operation)
# You can enqueue an item, it will be processed in the background automatically
result = await operation_batcher.enqueue({"an": "item"})
The batch operation should return an iterable of results, or exceptions. This allows for per item errors. The batch sizes can also be limited, which is usefully when APIs have a hard limit.
Contact
For questions or suggestions, please contact jack.burridge@mail.com.
License
Copyright 2025 AMGI
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
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 amgi_common-0.27.0.tar.gz.
File metadata
- Download URL: amgi_common-0.27.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
064e2c525ad9cbdf0d2168dd8470ed8b4f70b1073aa628a11bf82edc3ca68013
|
|
| MD5 |
26c3eaa87ec92550b6ef1dfed9578369
|
|
| BLAKE2b-256 |
97d7f1104e8e7361f4da6e4cfc18a8d377ad14a2c2438379762775bd5eb71b30
|
File details
Details for the file amgi_common-0.27.0-py3-none-any.whl.
File metadata
- Download URL: amgi_common-0.27.0-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b384b563e6d658a6f96c91d2150fadcdf0366aa801f990943ce5109aa337ee35
|
|
| MD5 |
a96f4950f35f1a256237aa04ef83079a
|
|
| BLAKE2b-256 |
18805f32c92a414e5dd190a6d25d00a529082592d436a9e5486b7d782600623b
|