Plugin interface to list and execute existing management commands.
Project description
Django Commands UI
This project offers a solution to list and execute all existing management commands in your Django project.
Requirements
This project requires Python 3.10 or greater.
Configuration
To install and configure it these steps should be followed:
-
Install the dependency from PyPi.
pip install django-commands-ui -
Add
commands_uias an installed app in your Django project. -
If you haven't already done so, you will need to add celery to your django project. You can follow the steps in the First steps with Django guide if you haven't used celery before.
-
Add the root location of your management commands to your installed apps. For example, if your management commands are in the
commandsfolder in your project root, you would addyour-project-name.commandsto your installed apps. -
Add these required settings:
# Celery app name. COMMANDS_UI_CELERY_APP = "" # Working celery queue name for delayed jobs. COMMANDS_UI_DELAYED_JOBS_QUEUE = "" # Working celery queue name for standard jobs. COMMANDS_UI_JOBS_QUEUE = "" # Tuple of compiled regexes to extract the runnable commands from. # By default, all commands from all installed apps are extracted. COMMANDS_UI_JOB_APPS = (re.compile(r".*"),) # Primary database identifyer, not the replica one. DATABASE_PRIMARY = getattr(settings, "DATABASE_PRIMARY", "default") # Define if the current environment is a cron environment. CRON_ENVIRONMENT = getattr(settings, "CRON_ENVIRONMENT", False) -
Include package URLs to your base urls file like this:
path("jobs/", include("commands_ui.urls")), -
Create tables:
python manage.py migrate commands_ui
It is recommended to override base.html so the appearance is customizable, as all django-commands-ui templates extend from it.
Documentation
Implementing a management command job
The only needed thing for implementing a working management command job in
django-commands-ui is extending the existing JobBasedCommand.
This class adds some default arguments (such as --job-id).
Example on how to use this class:
from typing import Any
from commands_ui import management_commands
from django.core.management.base import CommandParser
# Extend the JobBasedCommand class
class Command(management_commands.JobBasedCommand):
def handle(self, *args: Any, **options: Any) -> None:
# Any time `self.print` is used, the message will be added to both standard output and
# Job output.
self.print("Starting")
for i in range(0, 20):
self.print(i)
self.print("Finishing")
Command Grouping
You can group types of commands by adding a interface_name class attribute to your management command class. This will group all commands with the same interface_name together in the UI.
For example you can group cronjobs together by adding interface_name = "cron" to all your cronjobs.
from typing import Any
from commands_ui import management_commands
from django.core.management.base import CommandParser
# Extend the JobBasedCommand class
class Command(management_commands.JobBasedCommand):
interface_name = "cron"
def handle(self, *args: Any, **options: Any) -> None:
...
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
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 django_commands_ui-0.0.7.tar.gz.
File metadata
- Download URL: django_commands_ui-0.0.7.tar.gz
- Upload date:
- Size: 23.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd5a84467e1af67548de68be7ddaa0b9e18bbbf46332cdd37f1a245021bf954b
|
|
| MD5 |
398dab4c3c595879ec6c58890748694c
|
|
| BLAKE2b-256 |
f9a894a9190a59263eb8cfd5efad5ee30f759b8a2e67068ad7906716de1915c4
|
File details
Details for the file django_commands_ui-0.0.7-py3-none-any.whl.
File metadata
- Download URL: django_commands_ui-0.0.7-py3-none-any.whl
- Upload date:
- Size: 28.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da5a5e6fa7d0d51fcfc96d4e627807ba9bd963270c926327df300dc3908aba2e
|
|
| MD5 |
38e4d6de7ed242196f425a957c66270e
|
|
| BLAKE2b-256 |
4a150a93ab1edc801aeb46e52ad035fd7619dd0758513116e98092e10ba53a4f
|