Skip to content

Python scheduler for function call that supports crontab formatted time

License

Notifications You must be signed in to change notification settings

leoferaderonugraha/chronotask

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ChronoTask

A Python function call scheduler that supports crontab-formatted time (also supports async functions).

example of usage:

from chronotask import ChronoTask
import time

task = ChronoTask()

# as a decorator
@task.schedule()
def hello():
    ...


# or by call
task.register(hello)


# start the scheduler
task.start()
time.sleep(10)
task.stop()

About

Python scheduler for function call that supports crontab formatted time

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages