Disable Django database writes.
Project description
Disable Django database writes.
Requirements
Python 3.5 to 3.8 supported.
Django 2.2 to 3.0 supported.
Deploying a Django project? Testing a Django project? Are your tests slow? Check out my book Speed Up Your Django Tests which covers loads of best practices so you can write faster, more accurate tests.
Installation
Install with pip:
python -m pip install django-read-only
Then add to your installed apps:
INSTALLED_APPS = [
...,
"django_read_only",
...
]
Usage
Set the environment variable DJANGO_READ_ONLY to anything but the empty string, and all data modification queries will cause an exception:
DJANGO_READ_ONLY=1 python manage.py shell
...
>>> User.objects.create_user(username="hacker", password="hunter2")
...
DjangoReadOnlyError(...)
You can put this in the shell profile file (bashrc, zshrc, etc.) of the user on your production system. This way developers performing exploratory queries can’t accidentally make changes, but writes remain enabled for non-shell processes like your WSGI server.
During a session with DJANGO_READ_ONLY set, you can re-enable writes for the current thread by calling enable_writes():
>>> import django_read_only
>>> django_read_only.enable_writes()
Writes can be disabled with disable_writes():
>>> django_read_only.disable_writes()
To temporarily allow writes, use the temp_writes() context manager / decorator:
>>> with django_read_only.temp_writes():
... User.objects.create_user(...)
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
Hashes for django_read_only-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 465c7d59e3c3f28207a2bc7a5861b7ac4536543ae3a09f0c9e3aba87bc4e0a59 |
|
MD5 | 01986f81992ee70c711882595cc42cde |
|
BLAKE2b-256 | 5249a7e45cf7c0f66c7254a3570c6dfbd311e798477fb2450adc8509958b002c |