repid 1.6.0
pip install repid
Released:
Repid framework: simple to use, fast to run and extensible to adopt job scheduler
Navigation
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: aleksul
- Requires: Python >=3.10
-
Provides-Extra:
amqp
,cron
,pydantic
,redis
,test
Classifiers
- Development Status
- License
- Programming Language
- Typing
Project description
repid
Repid framework: simple to use, fast to run and extensible to adopt job scheduler.
pip install repid
Quickstart
Here is how the easiest example of producer-consumer application can look like.
Producer:
import asyncio
from repid import Connection, Job, RabbitMessageBroker, Repid
app = Repid(Connection(RabbitMessageBroker("amqp://user:password@localhost:5672")))
async def main() -> None:
async with app.magic():
await Job(name="awesome_job").enqueue()
asyncio.run(main())
Consumer:
import asyncio
from repid import Connection, RabbitMessageBroker, Repid, Router, Worker
app = Repid(Connection(RabbitMessageBroker("amqp://user:password@localhost:5672")))
router = Router()
@router.actor
async def awesome_job() -> None:
print("Hello async jobs!")
await asyncio.sleep(1.0)
async def main() -> None:
async with app.magic():
await Worker(routers=[router]).run()
asyncio.run(main())
Check out user guide to learn more!
License
Repid is distributed under the terms of the MIT license. Please see License.md for more information.
Repid's logo is distributed under the terms of the CC BY-NC 4.0 license. It is originally created by ari_the_crow_.
Project details
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: MIT License (MIT)
- Author: aleksul
- Requires: Python >=3.10
-
Provides-Extra:
amqp
,cron
,pydantic
,redis
,test
Classifiers
- Development Status
- License
- Programming Language
- Typing
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 repid-1.6.0.tar.gz
.
File metadata
- Download URL: repid-1.6.0.tar.gz
- Upload date:
- Size: 184.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 005f1b7244e946c6fe7e5ae351c0541b2e3d4377a8f1fb79fdc950f15415eb14 |
|
MD5 | c600f8e4c2fa75aa59513fcb188de290 |
|
BLAKE2b-256 | 8bd8e83119a98ff9bd9b309ab43c65074f47decfe4888a6976322670f37d6f30 |
File details
Details for the file repid-1.6.0-py3-none-any.whl
.
File metadata
- Download URL: repid-1.6.0-py3-none-any.whl
- Upload date:
- Size: 63.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 260f8d71d370ef7ad827d8ea6aa172c4b91506f04033923bfae6c6bd6aeaf3d8 |
|
MD5 | 9a48932a88ca5068aef2778c649748a4 |
|
BLAKE2b-256 | 0e90544471f56d4bf1fa026b9dca0c3f9c70a45ad9290bd30106910b57e065d3 |