Skip to content

An django implementation model to represent Directed Acyclic Graphs (DAG) coupled with colusre table

License

Notifications You must be signed in to change notification settings

farmlab/django-closuredag

Repository files navigation

django-closuredag

https://travis-ci.org/farmlab/django-closuredag.svg?branch=master Documentation Status

A django model to represent direct acyclic graph coupled with closure table

Documentation

The full documentation is at https://django-closuredag.readthedocs.io.

The objective is to develop a reusable django app to represent direct acyclic graph coupled with closure table (see: closure_DAG_concept ). It should combine feature provided by django-DAG and django-closuretree.

Quickstart

Install django-closuredag:

pip install django-closuredag

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'django_closuredag.apps.DjangoClosuredagConfig',
    ...
)

Add django-closuredag's URL patterns:

from django_closuredag import urls as django_closuredag_urls


urlpatterns = [
    ...
    url(r'^', include(django_closuredag_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

About

An django implementation model to represent Directed Acyclic Graphs (DAG) coupled with colusre table

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published