No project description provided
Project description
仅需一步,轻松实现分布式异步任务。
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.3.5.tar.gz
(13.4 kB
view details)
Built Distribution
onestep-0.3.5-py3-none-any.whl
(19.6 kB
view details)
File details
Details for the file onestep-0.3.5.tar.gz
.
File metadata
- Download URL: onestep-0.3.5.tar.gz
- Upload date:
- Size: 13.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.13 Linux/6.2.0-1016-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ba6b79f83f7b9f9fd2f59510a0bbfa9ad9715bffa2dbea692f3b78f51139777 |
|
MD5 | e515660e40aaa336bbba6ed82f5d6378 |
|
BLAKE2b-256 | 5f8a1879a0b0cb4f20585df30320db741007fabe556180ef0892581141bdbf65 |
File details
Details for the file onestep-0.3.5-py3-none-any.whl
.
File metadata
- Download URL: onestep-0.3.5-py3-none-any.whl
- Upload date:
- Size: 19.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.13 Linux/6.2.0-1016-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 409a827b2e150635d8ee88d63ed642b54826c5c83e2a2acd79f23ca2e90de3af |
|
MD5 | 68b6d313c03fd1c1b0164d24fe09e045 |
|
BLAKE2b-256 | 8980269c943e4e91c534fdb5bbd34c88adcbab6cf38ddd898fd6701d5740c6c7 |