django应用程序检测循环导入

django-detect-cyclic的Python项目详细描述


Django detect cyclic

用于检测循环导入的应用程序。 使用此应用程序,您可以分析应用程序的依赖性

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

Requeriments

Installation

在您的设置中。py:

INSTALLED_APPS = (

    'django_detect_cyclic',

)

在您的url.py:

urlpatterns = patterns('',

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

)

确保您的url中有jsi18nurl:

js_info_dict = {
    'packages': ('your.app.package',),
}

urlpatterns = patterns('',

    url(r'^jsi18n/$', 'django.views.i18n.javascript_catalog', js_info_dict),

)

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

如果您有什么问题,可能会对下一个链接感兴趣:

您可能需要删除PYC文件:

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

Usage

有两种方法,可以运行命令:

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

或者您可以通过Web访问向导:

/admin/detect_cyclic/

Examples

要查看更多示例,请单击examples

Releases

0.0.9 (2012-09-02)

  • 修复一些错误
  • 使代码适应pyplete的最后一个版本。现在检测相对导入,如下所示:
from models import MyModel # from the same directory of the models.py

这个:

from .models import MyModel # from the same directory of the models.py

0.0.8 (2012-08-09)

  • Loaded a templatetag, and with this you get a error
  • Now works the js in Django 1.4
  • Fix a error when you had some application repeat in your settings (INSTALLED_APPS)
  • Fix a csr error when you click in download the graph and the format is svg-js

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.

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java如何在Android中更新从互联网上获取的时间?   java我可以调用binarySearch方法而不实现comparator/comparable吗?   java如何使用Tomcat7作为React开发服务器来替换节点。js服务器?   java在Android游戏中如何保存和访问数据?   java为什么IntelliJ不能导入本地类?   检查“if”语句后出现java空指针异常   用户界面通过rxtx库和SerialPortEvent接收JAVA中的数据,并在jTextArea中显示字符串文本   javasocket文件传输未正确读取   java错误代码:1215无法添加外键约束   java如何告诉Gradle在哪里查找javax。servlet?   java无法解析匹配的构造函数   mysql从何处开始Java项目   Java在数组中比较字符串   java PrimeFaces仪表板列宽   C++ JNI: java。使用defineClass时lang.AbstractMethodError;