No project description provided
Project description
OneStep
仅需一步,轻松实现分布式异步任务。
Brokers
- MemoryBroker
- CronBroker
- WebHookBroker
- RabbitMQBroker
- RedisBroker
- KafkaBroker
example
from onestep import step, WebHookBroker
# 对外提供一个webhook接口,接收外部的消息
@step(from_broker=WebHookBroker(path="/push"))
def waiting_messages(message):
print("收到消息:", message)
if __name__ == '__main__':
step.start(block=True)
from onestep import step, CronBroker
# 每3秒触发一次任务
@step(from_broker=CronBroker("* * * * * */3", a=1))
def cron_task(message):
assert message.body == {"a": 1}
return message
if __name__ == '__main__':
step.start(block=True)
更多例子请参阅:examples
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
onestep-0.1.72.tar.gz
(11.3 kB
view details)
Built Distribution
onestep-0.1.72-py3-none-any.whl
(16.2 kB
view details)
File details
Details for the file onestep-0.1.72.tar.gz
.
File metadata
- Download URL: onestep-0.1.72.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.10 Linux/5.15.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2da3c70dceba58583a3882c72ca197d6b193d8d2e0ff3bfebf5ead255146683f |
|
MD5 | 4bc4989797d0fece445e6c294e6ac587 |
|
BLAKE2b-256 | 310ccce4967100034c63a9991206e4764f307a37377febbf267bf361b0fdeaa0 |
File details
Details for the file onestep-0.1.72-py3-none-any.whl
.
File metadata
- Download URL: onestep-0.1.72-py3-none-any.whl
- Upload date:
- Size: 16.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.10.10 Linux/5.15.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 495f7addd059a907114b125fbd33ac11acd933ef30cdba6b7ddf404813f22426 |
|
MD5 | ba5337af8e3ec18597228ad33b06884c |
|
BLAKE2b-256 | 01dab0f8563f39202632e7cd817bf48cbe146f4d9ba12e1c0d53b18721b87e30 |