Quick start

Topics of the section:

  • Installing

  • Minimal example

Installing

Install the package from PyPI:

pip install rocketry

Minimal Example

Next, we make a quick and minimal application:

from rocketry import Rocketry

app = Rocketry()

@app.task('daily')
def do_things():
    ...

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

We initialized the Rocketry application, created one task which runs every day and then we started the app. This is nothing fancy but gets you stared.

What next

This is only a small slice what Rocketry has to offer. Read further to explore the features.