Skip to main content

Fast pgcron manager written in Rust

Project description

PGCronner

PGCronner is a simple and fast Python package written in Rust using PyO3 that helps manage PostgreSQL cron jobs. It lets you take control of your cron jobs by allowing you to add, remove, or list them easily. PGCronner uses a custom table to handle all these operations seamlessly.

The tool takes advantage of the PyO3 library—an extension module that enables interoperability between Python and Rust. This allows for an increased performance and memory safety.

Installation

First of all, you need to ensure that you have Python installed on your system. If you do not, please follow the official guide to get it up and running.

The package can be installed via pip:

pip install pgcronner

Usage

To use the package, you just need to import it into your Python script.

Here is an example of how to create a new pgcron job:

from pgcronner import PGCronner, Job

PG_URI = "postgresql://postgres:postgres@localhost:5432/postgres" 
pgcronner = PGCronner(PG_URI)

# Create a Job using the provided JobBuilder
# my_job = Job("<name>", "<schedule>", "<command>", "<source>")
my_job = Job("testjob", "*/5 * * * *", "SELECT 1;", "source")

# Pass the Job Object
pgcronner.add(job)

# Sync db table with pgcron
# !!! WARNING - DANGER ZONE !!!
# This deletes all jobs with prefix 'pgcronner' in the `cron.job` table and populates it with the jobs in `pgcronner_jobs`
# See below for implementation

pgcronner.sync()

Listing all the jobs:

jobs = pgcronner.all()
for job in jobs:
    print(job)

Retrieve one job:

job = pgcronner.one("<jobname>")

Removing a job:

# The parameter would be the job name you want to delete.
pgcronner.remove(job_name)

Django

In the examples directory there's also an example on how to add this to a Django project.

Documentation

For more detailed instructions and API details, refer to the full documentation at https://pgcronner.readthedocs.io/.

Contributing

We welcome any kind of contribution - reporting issues, suggesting new features, or even writing code. Please make sure to read the CONTRIBUTING.md file before making a pull request.

License

This project is licensed under the MIT License.

Acknowledgments

This Python package has been realized using PyO3 to create a bridge between Rust and Python.


Enjoy the power of managing your PostgreSQL cron jobs with simplicity and ease. Happy PGCronning!

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

pgcronner-0.1.14.tar.gz (33.1 kB view hashes)

Uploaded Source

Built Distribution

pgcronner-0.1.14-cp311-cp311-manylinux_2_34_x86_64.whl (1.4 MB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.34+ x86-64

Supported by

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