A Python package for deploying stateful loops
Project description
FastLoop
A Python package for building and deploying stateful loops. We use this at beam.cloud to deploy agents.
Installation
pip install fastloop
Usage
Basic Example
from fastloop import FastLoop, LoopContext, LoopEvent
app = FastLoop(name="my-app")
@app.event("user_message")
class UserMessage(LoopEvent):
user_id: str
message: str
@app.loop(name="chat", start_event=UserMessage)
async def chat_loop(context: LoopContext):
user_msg = await context.wait_for(UserMessage, timeout=5.0)
print(f"User {user_msg.user_id} sent a message: {user_msg.message}")
# Your loop logic here
# If you want to stop the loop
context.stop()
# If you want to pause the loop
context.pause()
# By default, we just run it again
if __name__ == "__main__":
app.run(port=8000)
Development
This project uses uv for dependency management.
# Install dependencies
uv sync
# Run tests
uv run pytest
# Build package
uv build
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
fastloop-0.1.68.tar.gz
(97.3 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
fastloop-0.1.68-py3-none-any.whl
(33.5 kB
view details)
File details
Details for the file fastloop-0.1.68.tar.gz.
File metadata
- Download URL: fastloop-0.1.68.tar.gz
- Upload date:
- Size: 97.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
881fe1cfce0ff8edd6530d1ed97bc6804e15a2016268198cba368ec6d29f927e
|
|
| MD5 |
85543b7892bb012cae8559b9d67680da
|
|
| BLAKE2b-256 |
11821ebd9a8dac600ce426cfa1a483e07b03f303750603f083e0adc1a028c431
|
File details
Details for the file fastloop-0.1.68-py3-none-any.whl.
File metadata
- Download URL: fastloop-0.1.68-py3-none-any.whl
- Upload date:
- Size: 33.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f31f9e82b950e0fa706a390341204b82e605da99693fc5cc4a3f30c9776f9fa
|
|
| MD5 |
c5987eab38926243e523b7f9b47a2068
|
|
| BLAKE2b-256 |
54b292e315003d2d1bc5a71152952f11ad384cb1866e1dfabe66e2ca847f2650
|