Skip to main content

Advanced scheduling framework

Project description

Tocketry

This code is currently a work in progress and not stable

The fork of the engine to power your Python apps


What is it?

Tocketry is a fork of the project Tocketry created by Miksus

Tocketry is a modern statement-based scheduling framework for Python. It is simple, clean and extensive. It is suitable for small and big projects.

Tocketry aims to be a lighter version of Tocketry without the need for pydantic as a dependency

This is how it looks like:

from tocketry import Tocketry
from tocketry.conds import daily

app = Tocketry()

@app.task(daily)
def do_daily():
    ...

if __name__ == '__main__':
    app.run()

Core functionalities:

  • Powerful scheduling
  • Concurrency (async, threading, multiprocess)
  • Parametrization
  • Task pipelining
  • Modifiable session also in runtime
  • Async support

Links:

Why Tocketry?

Unlike the alternatives, Tocketry's scheduler is statement-based. Tocketry natively supports the same scheduling strategies as the other options, including cron and task pipelining, but it can also be arbitrarily extended using custom scheduling statements.

Here is an example of custom conditions:

from tocketry.conds import daily, time_of_week
from pathlib import Path

@app.cond()
def file_exists(file):
    return Path(file).exists()

@app.task(daily.after("08:00") & file_exists("myfile.csv"))
def do_work():
    ...

Tocketry is suitable for quick automation projects and for larger scale applications. It does not make assumptions of your project structure.

Installation

Install Tocketry from Work in Progress

pip install tocketry

More Examples

Here are some more examples of what it can do.

Scheduling:

from tocketry.conds import every
from tocketry.conds import hourly, daily, weekly,
from tocketry.conds import time_of_day
from tocketry.conds import cron

@app.task(every("10 seconds"))
def do_continuously():
    ...

@app.task(daily.after("07:00"))
def do_daily_after_seven():
    ...

@app.task(hourly & time_of_day.between("22:00", "06:00"))
def do_hourly_at_night():
    ...

@app.task((weekly.on("Mon") | weekly.on("Sat")) & time_of_day.after("10:00"))
def do_twice_a_week_after_ten():
    ...

@app.task(cron("* 2 * * *"))
def do_based_on_cron():
    ...

Pipelining tasks:

from tocketry.conds import daily, after_success
from tocketry.args import Return

@app.task(daily.after("07:00"))
def do_first():
    ...
    return 'Hello World'

@app.task(after_success(do_first))
def do_second(arg=Return('do_first')):
    # arg contains the value of the task do_first's return
    ...
    return 'Hello Python'

Parallelizing tasks:

from tocketry.conds import daily

@app.task(daily, execution="main")
def do_unparallel():
    ...

@app.task(daily, execution="async")
async def do_async():
    ...

@app.task(daily, execution="thread")
def do_on_separate_thread():
    ...

@app.task(daily, execution="process")
def do_on_separate_process():
    ...

Interested?

Read more from Work in Progress.

About Library

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

tocketry-0.1.0.tar.gz (339.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tocketry-0.1.0-py3-none-any.whl (228.2 kB view details)

Uploaded Python 3

File details

Details for the file tocketry-0.1.0.tar.gz.

File metadata

  • Download URL: tocketry-0.1.0.tar.gz
  • Upload date:
  • Size: 339.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.11

File hashes

Hashes for tocketry-0.1.0.tar.gz
Algorithm Hash digest
SHA256 517b178f5cd565171443dfe018cdef82b7251ec7118a6c2f697b2ce5b25a0692
MD5 be3fcb96b5cea9d95be7d3d8c1223acb
BLAKE2b-256 6836191ee5ef2055ef5d0503c5fd0049a4bc2ac023b7811807c24bde514f1a6d

See more details on using hashes here.

File details

Details for the file tocketry-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: tocketry-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 228.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.11.11

File hashes

Hashes for tocketry-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 031ca51f43fb42dafbeaaf6548b64d8ec919cdcec51f6838f4a0384ef77c7be2
MD5 4a5bbb32352bc556951ead23e58a2a78
BLAKE2b-256 b67e649d8060d310355a5b57f1c42ed65947d67c37e55e9be7eefd7d7e1d033d

See more details on using hashes here.

Supported by

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