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.
Admin
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.17.0.tar.gz
(18.1 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.17.0.tar.gz.
File metadata
- Download URL: plain_worker-0.17.0.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1798d8794f244e0ca5b3e5bbad40ac6df4e4d809afd193c02e57da4cdf917ed6
|
|
| MD5 |
40e7bf9725b7f8f9aca7e57dcc4ab085
|
|
| BLAKE2b-256 |
212ad850cdecef5b775da248705d08c1cd87cda2906c007bbb75b7cb09019544
|
File details
Details for the file plain_worker-0.17.0-py3-none-any.whl.
File metadata
- Download URL: plain_worker-0.17.0-py3-none-any.whl
- Upload date:
- Size: 31.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.6.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f3d34c80152923a97d8ce968b2b4dfd4a96f235ddddba52f63705a9a21e4ebf
|
|
| MD5 |
d94c27c12fa36877d62a00ab0c125d57
|
|
| BLAKE2b-256 |
553827b32cbaca53303eeee48a199b97ff34c61614005dc959889928d1b30adc
|