Python SDK
What it’ll look like
from recuro import Recuro
recuro = Recuro(token="YOUR_API_TOKEN")
# Create a cronrecuro.crons.create( name="Nightly cleanup", url="https://api.yourapp.com/cleanup", method="POST", cron_expression="0 3 * * *",)
# Push a one-off jobrecuro.jobs.create( queue="emails", url="https://api.yourapp.com/send-welcome", payload={"user_id": 42},)Async support via AsyncRecuro is also planned. Requires Python 3.9+.
In the meantime
The REST API works from any language. See the API reference to get started now.