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 details)

Uploaded Source

Built Distribution

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

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

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

File details

Details for the file pgcronner-0.1.14.tar.gz.

File metadata

  • Download URL: pgcronner-0.1.14.tar.gz
  • Upload date:
  • Size: 33.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.3.1

File hashes

Hashes for pgcronner-0.1.14.tar.gz
Algorithm Hash digest
SHA256 54ddf0a037be03721b579805b72f9cbb9bc76cc89da7b4a5bc78094812d63741
MD5 a31c72e114618e2f88eee77f776154cd
BLAKE2b-256 464154ee238e8f3cd63a962ddfe1c4f92a9c330cdbaa88117c59254acbc03841

See more details on using hashes here.

File details

Details for the file pgcronner-0.1.14-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pgcronner-0.1.14-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 8ab86893139cf6b5a20afc24399813f815fa61639ba8cac85ccca5d6cdebf1b2
MD5 14df62c6e0ae93e7bcb897f93428c4bd
BLAKE2b-256 f3d568f53282a24b7e0d50931e4bf822b5d3d0981bd76678b209ddada2d29d7a

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