从数据库生成ER图的工具:ERAlchemy
ERAlchemy一个能够从数据库或SQLAlchemy模型生成Entity Relation (ER)图。
Install
To install ERAlchemy, just do:
$ pip install eralchemy
ERAlchemyrequires GraphViz to generate the graphs.
Use from python
from eralchemy import draw_er ## Draw from SQLAlchemy base draw_er(Base, 'erd_from_sqlalchemy.png') ## Draw from database draw_er("sqlite:///relative/path/to/db.db", 'erd_from_sqlite.png')
Use from the command line
$ eralchemy -i sqlite:///relative/path/to/db.db -o erd_from_sqlite.png
本文由用户 dy83 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
转载本站原创文章,请注明出处,并保留原始链接、图片水印。
本站是一个以用户分享为主的开源技术平台,欢迎各类分享!