Skip to main content

Clean out files in a django app using regular expressions.

Project description

django-clean
====================

django-clean is a package that lets you specify files or directories that you
would like cleaned up. You can specify regular expressions to define which
files you would like automatically removed.


Installation
------------
1. Add 'clean' to your installed apps in your settings.py file.

INSTALLED_APPS = [
'clean',
...
]


2. Define a PROJECT_PATH in your settings.py file.

import os.path, sys
PROJECT_PATH = os.path.dirname(__file__)


3. *OPTIONAL* Define the regular expression patterns you would like to match against in
your settings.py file. The default is a regex pattern to remove *.pyc files. (NOTE: The
regex matches against the full qualified path).

CLEAN_PATTERNS = [
r'^.+\.pyc$',
]


Usage
-----
From your shell, type:

python manage.py clean

This will prompt you to remove files that match the regular expression patterns.

If you are confident in your regex, you can supply a --force option which will not prompt
you before removing pattern matches.

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

django-clean-0.1.2.tar.gz (3.8 kB view details)

Uploaded Source

File details

Details for the file django-clean-0.1.2.tar.gz.

File metadata

File hashes

Hashes for django-clean-0.1.2.tar.gz
Algorithm Hash digest
SHA256 24a29f975a99975b58fdeec3c84332a75878505be91c042ceca4e0f5bcec7759
MD5 820e763ed37c72178e3fe25d993a5294
BLAKE2b-256 77300880ef108c5df99564945d415f5577e1bbe4e02963db65d52f6b1842c0ce

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page