Metadata-Version: 2.1
Name: dj-postgres-stats
Version: 1.0.3.dev3
Summary: A Django app to expose built-in statistical and datetime functions from Postgres.
Home-page: https://github.com/ratson/django-postgres-stats/
Author: Clinton Dreisbach
Author-email: cdreisbach@rti.org
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Database
Requires-Python: >= 3.3
License-File: LICENSE

======================
Django Postgres Stats
======================

Django Postgres Stats exposes statistical and datetime functions specific to
Postgres to Django without making the user write raw SQL. The plan is to
expand the library over time to cover many Postgres-specific functions. For
now, only functions personally used by the authors have been added.

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "postgres_stats" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = (
        ...
        'postgres_stats',
    )

2. Import the functions you need to use with your models.



