launchd.plist model
Project description
Installation
$ [sudo] pip install django-launchd
settings.py
INSTALLED_APPS = [
"django_launchd",
]
Models
model | __doc__ |
---|---|
django_launchd.models.Plist |
launchd.plist model. fields: path |
django_launchd.models.Lock |
launchd.plist Lock class. fields: plist (ForeignKey), key |
Examples
init
import django_launchd
from django_launchd.models import Plist
files = django_launchd.files("~/Library/LaunchAgents")
for f in files:
Plist.objects.get_or_create(path=f)
Plist.objects.exclude(path__in=files).delete()
locks
for agent in filter(lambda a: a.exists, Plist.objects.all()):
if <condition>:
agent.lock("key")
else:
agent.unlock("key")
load/unload
for agent in filter(lambda a: a.exists, Plist.objects.all()):
if agent.locks:
agent.unload()
else:
agent.load()
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
File details
Details for the file django-launchd-2019.4.13.tar.gz
.
File metadata
- Download URL: django-launchd-2019.4.13.tar.gz
- Upload date:
- Size: 2.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.9.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83f1c34d3e38cd114eb98d649dd0bdb4aa41ef32f2a5ef12e2f7ecd4d698b5a6 |
|
MD5 | d26cb9db8e1f0a6da5be03046a427012 |
|
BLAKE2b-256 | 294fa25f93fbdfa63b0fb8e6b5138d3cf5acd4241447361a4773787b5cb4f88e |