Background job processing for Plain.
Project description
Worker
Process background jobs with a database-driven worker.
from plain.worker import Job
from plain.mail import send_mail
# Create a new job class
class WelcomeUserJob(Job):
def __init__(self, user):
self.user = user
def run(self):
send_mail(
subject="Welcome!",
message=f"Hello from Plain, {self.user}",
from_email="welcome@plainframework.com",
recipient_list=[self.user.email],
)
# Instantiate a job and send it to the worker
user = User.objects.get(pk=1)
WelcomeUserJob(user).run_in_worker()
The worker process is run separately using plain worker run.
Staff
Job history
Scheduled jobs
Monitoring
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
plain_worker-0.7.0.tar.gz
(24.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file plain_worker-0.7.0.tar.gz.
File metadata
- Download URL: plain_worker-0.7.0.tar.gz
- Upload date:
- Size: 24.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.29
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5a9b71e007fcffda987140ef0cca010774d1267cfda6699c424466236ec7ac3
|
|
| MD5 |
b946178093f28d1a30530a7639854912
|
|
| BLAKE2b-256 |
2a8cd0e01fc5aac4f7f38400ab24101f86cfd9284023f41a1784e069eef7b98b
|
File details
Details for the file plain_worker-0.7.0-py3-none-any.whl.
File metadata
- Download URL: plain_worker-0.7.0-py3-none-any.whl
- Upload date:
- Size: 29.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.5.29
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dff46b0dbbaa9ad513f5675d936fa37bac09fd3661e01a85f7fb34f057c9e600
|
|
| MD5 |
abbc101a15772d24bbcb8e8cd4b02325
|
|
| BLAKE2b-256 |
a6666576df8137e568de0c466b31a0e20bd8698fc66f95b0e60e01099c065c91
|