Metadata-Version: 2.4
Name: rhythm-py
Version: 0.1.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Rust
Requires-Dist: pydantic>=2.0
Requires-Dist: pydantic-settings>=2.0
Requires-Dist: click>=8.0
Requires-Dist: pytest>=7.0 ; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.21 ; extra == 'dev'
Requires-Dist: black>=23.0 ; extra == 'dev'
Requires-Dist: ruff>=0.1 ; extra == 'dev'
Provides-Extra: dev
Summary: A lightweight durable execution framework using only Postgres
Author: Rhythm Contributors
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM

# Rhythm Python Quickstart

Install Rhythm
```bash
pip install rhythm-py
```

Setup the example project and start Postgres
```bash
git clone https://github.com/maxnorth/rhythm.git
cd rhythm
docker compose up -d postgres
```

Start the worker
```bash
cd rhythm/python/examples/quickstart
python worker.py
```

In another terminal, run the client app
```bash
cd rhythm/python/examples/quickstart
python app.py
```

## Documentation

See the [examples](examples/) directory for complete working examples.

