Background job processing for Plain.
Project description
Worker
Process background jobs with a database-driven worker.
Jobs are defined using the Job base class and the run() method at a minimum.
from plain.worker import Job, register_job
from plain.email import send_mail
@register_job
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],
)
You can then create an instance of the job and call run_in_worker() to enqueue it for a background worker to pick up.
user = User.objects.get(pk=1)
WelcomeUserJob(user).run_in_worker()
Workers are run using the plain worker run command.
Installation
Install plain.worker and add it to your INSTALLED_PACKAGES.
# app/settings.py
INSTALLED_PACKAGES = [
...
"plain.worker",
]
Jobs can be defined in any Python file, but it is suggested to use app/jobs.py or app/{pkg}/jobs.py as those will be imported automatically so the @register_job will fire.
Local development
In development, you will typically want to run the worker alongside your app. With plain.dev you can do this by adding it to the [tool.plain.dev.run] section of your pyproject.toml file. Currently, you will need to use something like watchfiles to add auto-reloading to the worker.
# pyproject.toml
[tool.plain.dev.run]
worker = {cmd = "watchfiles --filter python \"plain worker run --stats-every 0 --max-processes 2\" ."}
worker-slow = {cmd = "watchfiles --filter python \"plain worker run --queue slow --stats-every 0 --max-processes 2\" ."}
Job parameters
TODO
Admin
TODO
Job history
TODO
Scheduled jobs
TODO
Monitoring
TODO
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
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.22.1.tar.gz.
File metadata
- Download URL: plain_worker-0.22.1.tar.gz
- Upload date:
- Size: 19.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.6.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01445498ba8c1ba67edbb50c45259a984b438819dee72f7e82b062afb9e57e54
|
|
| MD5 |
411e804badf5aa2db99dab9997c0c849
|
|
| BLAKE2b-256 |
4b37d2c26a37874f1655be4824826a3354688bb0e78fce21f8498a3d926f4cae
|
File details
Details for the file plain_worker-0.22.1-py3-none-any.whl.
File metadata
- Download URL: plain_worker-0.22.1-py3-none-any.whl
- Upload date:
- Size: 33.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.6.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
653a98c757928151531594e803b5d634fd730ae10c588ef0c7f280537c637f33
|
|
| MD5 |
5fb5b9bbbf0e3abba2c40a52d1574f19
|
|
| BLAKE2b-256 |
a614895479d0b8f61a9b6cc39ed4571f2aa0e61146c5ae066d801ba566cfefe9
|