Skip to main content

Django application to detect cyclic imports

Project description

Django detect cyclic

Application to detect cyclic imports. With this application you can analyze the dependence of your applications

https://github.com/goinnn/django-detect-cyclic/raw/master/examples/example-only-cyclic-exclude.png

Requeriments

Installation

In your settings.py:

INSTALLED_APPS = (

    'django_detect_cyclic',

)

In your urls.py:

urlpatterns = patterns('',

    (r'^admin/detect_cyclic/', include('django_detect_cyclic.urls')),

)

Caption

  • The nodes are applications, or (if you use the option “Show modules”) modules in the applications

  • One edge means that the source node imports from the destination node

  • Every edge of a cycle has the same background color and the label contains “Cycle X”

  • The labels of the edges contain the weight in parentheses

  • If you use the “Show modules” option, each node will have a background color. If two nodes are from the same application, they will have the same background color.

  • If an edge is dotted, every import in the source happens at runtime, whithin the body of a function or method

Possibles Errors

It is possible that the next links are interested if you can some problem:

It is possible that you have to remove the pyc files:

find -iname "*.pyc" -exec rm "{}" \;

Usage

You have two ways, you can run a command:

python manage.py detect_cyclic
python manage.py detect_cyclic --include-apps="app1,app6,app7,app11" --file-name="my_graph.svg" --exclude-packages="migrations,templatetags" --verbosity=2
python manage.py detect_cyclic --include-apps="app1,app6" --show-modules --file-name="my_graph.svg" --exclude-packages="migrations" --verbosity=2
python manage.py detect_cyclic --include-apps="app1,app6" --only-cyclic --file-name="my_graph.svg" --exclude-packages="migrations" --verbosity=2

Or you can access via web to the wizard:

/admin/detect_cyclic/

Examples

To see more examples click in examples

Releases

0.0.7 (2012-07-25)

  • Now jquery.graphviz has a stable version (0.0.1, Tested in Chrome, FireFox, Safari and IE9)

  • Detail to the js

0.0.6 (2012-07-23)

  • Format svg-js (beta). Change dracula js to jquery.graphviz.js (Tested in Chrome and FireFox)

0.0.5 (2012-07-13)

  • Change force-colors option to use-colors option

  • Change distribution of the wizard

  • Usability

0.0.4 (2012-07-12)

  • Wizard to create graphs (/admin/detect_cyclic/)

  • Format svg-js (alpha)

  • Fix a little errors

0.0.3 (2012-07-10)

  • Add the option “scope-global”, this ignore the imports into the functions

  • Now if the verbosity option is 1, only show the errors

  • Now when a node (with show-modules) has the same name that a application, the node name will be app_name.__init__

  • Now the label of the cycle edges has the same color that the edge

  • Now disabled the colors of the edge and nodes when the format is not svg. But it is possible enabled if you use the “force color” option

  • Optimizations

  • New option “dotted-scope-local”. If the all import between two nodes are into a function the edge will be dotted

  • Fixed some little errors

0.0.2 (2012-07-09)

  • Documentation and examples

0.0.1 (2012-07-09)

  • Initial release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-detect-cyclic-0.0.7.tar.gz (74.8 kB view details)

Uploaded Source

File details

Details for the file django-detect-cyclic-0.0.7.tar.gz.

File metadata

File hashes

Hashes for django-detect-cyclic-0.0.7.tar.gz
Algorithm Hash digest
SHA256 db55e649c7b5eaaf3c9ae7479453f45e246148682a453b3c5f3c76dacf2237bb
MD5 9a935d84d103565d443be8453817548c
BLAKE2b-256 e3164d359715b4ed0116bf6b169a2adc519fadc58b1ffecaf1319bbac93e5ffb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page