Django Utilities for Postgresql
Project description
UtiliUtilities for Django Postgresql
Quickstart
Install Django Postgres Utils:
pip install django-postgres-utils
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'django_postgres_utils',
...
)
Sample usage usage of AdminHStoreWidget in admin:
# admin.py
from django.contrib import admin
from django.contrib.postgres.fields import HStoreField
from django_postgres_utils.widgets import AdminHStoreWidget
# ...
class MyModelAdmin(admin.ModelAdmin):
formfield_overrides = {
HStoreField: {'widget': AdminHStoreWidget},
}
# ...
Features
User friendly Admin widget for django HStoreField; django_postgres_utils.widgets.AdminHStoreWidget
Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
Credits
Tools used in rendering this package:
History
0.1.0 (2017-09-18)
First release on PyPI.
0.1.1 (2018-10-03)
Upgrade to underscore 1.9.1
Fix bug in displaying quoted values
0.1.2 (2018-11-20)
Django 2.1 compatibility
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-postgres-utils-0.1.2.tar.gz
.
File metadata
- Download URL: django-postgres-utils-0.1.2.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.23.2 CPython/3.6.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e009fecc6aa8dc1cc1c65596e4db0085d6ca19c5d34bb09c661dd67b34c6649d |
|
MD5 | 9a072e720957c1dd381accbff06db735 |
|
BLAKE2b-256 | bbf022110bdaf48c1a07e29b568356d8e0e1ec6b146ed6b2b5edc997c905a375 |