Skip to content

better/cronner

Repository files navigation

Easily schedule python functions to be run under cron

Build Status

Make an HTTPS GET request to google.com every minute

Create the following file and name it test.py.

import cronner
import random
try:
    from urllib.request import urlopen
except:
    from urllib import urlopen

@cronner.register('* * * * *')
def write_randint():
    urlopen('https://google.com')

cronner.main()

Run this.

$ python test.py gen-cfg | crontab -

That's it.

Installation

$ pip install cronner

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published