Metadata-Version: 1.1
Name: django-postgres-utils
Version: 0.1.1
Summary: Django Utilities for Postgresql
Home-page: https://github.com/tehamalab/django-postgres-utils
Author: Tehamalab
Author-email: developers@tehamalab.com
License: MIT
Description: =============================
        Django Postgres Utils
        =============================
        
        .. image:: https://badge.fury.io/py/django-postgres-utils.svg
            :target: https://badge.fury.io/py/django-postgres-utils
        
        .. image:: https://travis-ci.org/tehamalab/django-postgres-utils.svg?branch=master
            :target: https://travis-ci.org/tehamalab/django-postgres-utils
        
        .. image:: https://codecov.io/gh/tehamalab/django-postgres-utils/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/tehamalab/django-postgres-utils
        
        UtiliUtilities for Django Postgresql
        
        Quickstart
        ----------
        
        Install Django Postgres Utils::
        
            pip install django-postgres-utils
        
        Add it to your `INSTALLED_APPS`:
        
        .. code-block:: python
        
            INSTALLED_APPS = (
                ...
                'django_postgres_utils',
                ...
            )
        
        Sample usage usage of ``AdminHStoreWidget`` in admin:
        
        .. code-block:: python
        
            # 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:
        
        *  Cookiecutter_
        *  `cookiecutter-djangopackage`_
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage
        
        
        
        
        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
        
Keywords: django-postgres-utils
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
