Implementation of localized model fields using PostgreSQL HStore fields.
Project description
:white_check_mark: | Tests | |
:memo: | License | |
:package: | PyPi | |
Django Versions | 2.0, 2.1, 2.2, 3.0, 3.1, 3.2 | |
Python Versions | 3.6, 3.7, 3.8, 3.9 | |
:book: | Documentation | Read The Docs |
:warning: | Upgrade | Upgrade fom v5.x |
:checkered_flag: | Installation | Installation Guide |
django-localized-fields
is an implementation of a field class for Django models that allows the field's value to be set in multiple languages. It does this by utilizing the hstore
type (PostgreSQL specific), which is available as models.HStoreField
since Django 1.10.
:warning: This README is for v6. See the v5.x
branch for v5.x.
Working with the code
Prerequisites
- PostgreSQL 10 or newer.
- Django 2.0 or newer.
- Python 3.6 or newer.
Getting started
-
Clone the repository:
λ git clone https://github.com/SectorLabs/django-localized-fields.git
-
Create a virtual environment:
λ cd django-localized-fields λ virtualenv env λ source env/bin/activate
-
Create a postgres user for use in tests (skip if your default user is a postgres superuser):
λ createuser --superuser localized_fields --pwprompt λ export DATABASE_URL=postgres://localized_fields:<password>@localhost/localized_fields
Hint: if you're using virtualenvwrapper, you might find it beneficial to put the
export
line in$VIRTUAL_ENV/bin/postactivate
so that it's always available when using this virtualenv. -
Install the development/test dependencies:
λ pip install ".[test]" ".[analysis]"
-
Run the tests:
λ tox
-
Auto-format code, sort imports and auto-fix linting errors:
λ python setup.py fix
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 Distributions
Built Distribution
File details
Details for the file django_localized_fields-6.7-py3-none-any.whl
.
File metadata
- Download URL: django_localized_fields-6.7-py3-none-any.whl
- Upload date:
- Size: 31.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21ffd76d15d2b9b557b13839290ea00be03bc16bcaa4ffdbff5a5d74b81d26de |
|
MD5 | 1384d5e94d339e014159c49f8efb92d2 |
|
BLAKE2b-256 | 302cf748efcd289583e7a32e53a7b3d0c7b8bc8e10d2b4c3a7cdffc7a5003e00 |