A Python executor for XXL-jobs
Project description
xxl-jobs 的python客户端实现
使用pyxxl可以方便的把Python写的方法注册到xxl-job中,使用xxl-job-admin管理Python定时任务和周期任务
已经支持的功能
- 执行器注册到job-admin
- task注册,类似于flask路由装饰器的用法
- 任务的管理(支持在界面上取消,发起等操作,任务完成后会回调admin)
- 所有阻塞策略的支持
- 异步支持(推荐)
待实现
- 自定义日志 和 界面上查看日志
如何使用
pip install pyxxl
import asyncio
from pyxxl import ExecutorConfig, PyxxlRunner
config = ExecutorConfig(
xxl_admin_baseurl="http://localhost:8080/xxl-job-admin/api/",
executor_app_name="xxl-job-executor-sample",
executor_host="172.17.0.1",
)
app = PyxxlRunner(config)
@app.handler.register(name="demoJobHandler")
async def test_task():
await asyncio.sleep(5)
return "成功..."
# 如果你代码里面没有实现全异步,请使用同步函数,不然会阻塞其他任务
@app.handler.register(name="xxxxx")
def test_task3():
return "成功3"
app.run_executor()
更多示例和接口文档请参考 PYXXL文档 ,具体代码在example文件夹下面
开发人员
下面是开发人员如何快捷的搭建开发调试环境
启动xxl的调度中心
./init_dev_env.sh
启动执行器
poetry install
# 修改app.py中相关的配置信息,然后启动
poetry run python example/app.py
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
pyxxl-0.2.1.tar.gz
(28.2 kB
view details)
Built Distribution
pyxxl-0.2.1-py3-none-any.whl
(32.5 kB
view details)
File details
Details for the file pyxxl-0.2.1.tar.gz
.
File metadata
- Download URL: pyxxl-0.2.1.tar.gz
- Upload date:
- Size: 28.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83f1e2bc1d286601610564cd367cf4b24b68627ee84fc295f86cf77ab99e19ab |
|
MD5 | f8d74f2dfcebe90fa4b356bc10477121 |
|
BLAKE2b-256 | 32d59bf85ad1e2a6dcf270a311b315517895e2463998ea79495b0521c73bdb2d |
Provenance
File details
Details for the file pyxxl-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: pyxxl-0.2.1-py3-none-any.whl
- Upload date:
- Size: 32.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9dac8a9074a572c215851b0be723f509b829f7bb33e38bba354835300e4e5c2c |
|
MD5 | ca360c6c7a84b1a2d8428e1541d67a03 |
|
BLAKE2b-256 | 1cf16dcf0a43e94ab56ec7ab673249a13b38998a22a576c29d2fde5fd244c2c9 |