Make Django model fields readonly
Project description
Make Django model fields readonly. In other words, make it so that Django will read from your field in your Database, but never try to write it. It can be useful if your field is populated by a trigger or something.
Requirements
Postgresql only
Django, obviously
Documentation
The full documentation is at https://django-readonly-field.readthedocs.org.
Quickstart
Install Django Readonly Field:
pip install django-readonly-field
In your settings.py :
INSTALLED_APPS = [
# ...
"django_readonly_field",
]
In the model where you want some fields to be read-only:
class Spaceship(models.Model):
name = models.CharField(max_length=100)
color = models.CharField(max_length=16)
class ReadonlyMeta:
readonly = ["color"]
That’s it. Now, Django won’t try to write the color field on the database.
Warning
Django won’t try to write those fields. Consequence is that your Database must be ok with Django not writing those fields. They should either be nullable or have a database default or be filled by a trigger, otherwise you will get in IntegrityError.
Don’t forget that Django model field defaults don’t become Database default. You might have to write an SQL migration for this.
Running Tests
You will need an usable Postgresql database in ordre to test the project.
source <YOURVIRTUALENV>/bin/activate export DATABASE_URL=postgres://USER:PASSWORD@HOST:PORT/NAME (myenv) $ pip install -r requirements_test.txt
Run tests for a specific version
(myenv) $ python runtests.py
Run tests for all versions (if tox is installed globally, you don’t need a virtual environment)
$ tox
Using the project
Many operations are documented in the Makefile. For more information, use:
$ make help
Credits
Tools used in rendering this package:
History
0.2.0 (2016-09-14)
Rationalized the writing of readonly (vs read-only)
Defined default app config
0.1.1 (2016-09-13)
CI improvements
Code linting
0.1.0 (2016-09-02)
First release on PyPI.
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 django-readonly-field-0.2.0.tar.gz.
File metadata
- Download URL: django-readonly-field-0.2.0.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d51e7aa8aa9de3c183c5d02e84d328532b7593a8c33635eae24308870af62599
|
|
| MD5 |
73fdccb04111d4d69c7e7ea346de38a8
|
|
| BLAKE2b-256 |
e611ebfa70b21fe1112ac86a1e5a47d4ea797ee0515e3955c3642c1d29288b9e
|
File details
Details for the file django_readonly_field-0.2.0-py2.py3-none-any.whl.
File metadata
- Download URL: django_readonly_field-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb40311002bfdaac196f0f8ecc1445ddd1b347c375006c89811c573fc876b3c0
|
|
| MD5 |
50d1a880bb29296552215a7cb6582673
|
|
| BLAKE2b-256 |
9bb8a4ee5cd3fbc0d4e9b58cb17600461f378732a711a40ea1a18eea2d9447d1
|