Metadata-Version: 1.1
Name: django-postgresql-dag
Version: 0.0.4
Summary: Directed Acyclic Graph implementation for Django & Postgresql
Home-page: https://github.com/OmenApps/django-postgresql-dag
Author: Jack Linke
Author-email: jacklinke@gmail.com
License: Apache Software License
Description: # Django & Postgresql-based Directed Acyclic Graphs
        
        The main distinghishing factor for this project is that it can retrieve entire
        sections of a graph in a single query. The trade off is portability: it uses
        Postgres Common Table Expressions (CTE) to achieve this and is therefore not
        compatible with other databases.
        
        ## Example:
        
        
        ## Credits:
        
        1. [This excellent blog post](https://www.fusionbox.com/blog/detail/graph-algorithms-in-a-database-recursive-ctes-and-topological-sort-with-postgres/620/)
        2. [django-dag](https://pypi.org/project/django-dag/)
        3. [django-dag-postgresql](https://github.com/worsht/django-dag-postgresql)
        4. [django-treebeard-dag](https://pypi.org/project/django-treebeard-dag/)
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
