Skip to main content

A Python executor for XXL-jobs

Project description

xxl-jobs 的python客户端实现

Package version Supported Python versions Coverage

使用pyxxl可以方便的把Python写的方法注册到xxl-job中,使用xxl-job-admin管理Python定时任务和周期任务

已经支持的功能

  • 执行器注册到job-admin
  • task注册,类似于flask路由装饰器的用法
  • 任务的管理(支持在界面上取消,发起等操作,任务完成后会回调admin)
  • 所有阻塞策略的支持
  • 异步支持(推荐)

待实现

  • 自定义日志 和 界面上查看日志

如何使用

pip install pyxxl
import asyncio

from pyxxl import PyxxlRunner

app = PyxxlRunner(
    "http://localhost:8080/xxl-job-admin/api/",
    executor_name="xxl-job-executor-sample",
    port=9999,
    host="172.17.0.1",
)

@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


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.1.7.tar.gz (27.2 kB view details)

Uploaded Source

Built Distribution

pyxxl-0.1.7-py3-none-any.whl (30.8 kB view details)

Uploaded Python 3

File details

Details for the file pyxxl-0.1.7.tar.gz.

File metadata

  • Download URL: pyxxl-0.1.7.tar.gz
  • Upload date:
  • Size: 27.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pyxxl-0.1.7.tar.gz
Algorithm Hash digest
SHA256 c3b288c5c5a0278c77b7ebc55a907817431db249ff35fe9f0ee5618bed7a12e6
MD5 d43c7d83bede0ebefab131b12b9f5a7a
BLAKE2b-256 9b19b8051830e1f4812672bc17fd3887d8a506e79806703a4eea5cb3f0d4db26

See more details on using hashes here.

Provenance

File details

Details for the file pyxxl-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: pyxxl-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 30.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.13

File hashes

Hashes for pyxxl-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 d441247abb9bd15b1543d578aa026371b283bbde9ac16709eefb63b01f853774
MD5 1b8cfca07269c281b5c2ac91d6dfa48f
BLAKE2b-256 99d1152a775c4082c7aa017897b6a2a18ef4e882976072064dee905f6fb64b2b

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page