Git Product home page Git Product logo

apschedulerweb's Introduction

APScheduler-Web

apscheduler + bottle = apschedulerweb

This is a web interface for Advanced Python Scheduler. It provides functionality for managing jobs added to scheduler, such as:

  • Stopping/starting jobs
  • Viewing logs of failed runs

Requirements

Python 2.7+, bottle, apscheduler

Usage

The only thing you need to do is pass Scheduler object and config options to start function of apschedulerweb module.

from apschedulerweb import start
from apscheduler.scheduler import Scheduler

s = Scheduler()
def printer(s):
    print(s)

s.add_interval_job(printer, args=['hello'], seconds=5)
start(s, users={'user':'pass'})

Also you can write configuration file and run directly apschedulerweb module. example.json:

{
  "web": {
    "users": {
      "user": "pass"
    },
    "user": "alex",
    "pid_file": "example.pid",
    "max_log_entries": 5,
    "max_auth_tries": 3
  },
  "bottle": {
    "host": "localhost",
    "port": 8080
  },
  "jobs": [
    {
      "file": "example.py",
      "func": "printer",
      "trigger": "interval",
      "args": ["hello"],
      "seconds": 5
    }
  ]
}

example.py:

def printer(s):
    print(s)

and then run python -m apschedulerweb --conf=example.json

apschedulerweb's People

Contributors

marwinxxii avatar

Watchers

James Cloos avatar Mike avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.