绘制python类的继承层次结构

时间:2020-04-20 03:49:52

标签: python

matplotlib根据文档生成此继承层次结构。

enter image description here

是否可以通过代码生成与inspect.getmro相对的图形?

>>> inspect.getmro(pandas.core.frame.DataFrame)

(pandas.core.frame.DataFrame,
 pandas.core.generic.NDFrame,
 pandas.core.base.PandasObject,
 pandas.core.accessor.DirNamesMixin,
 pandas.core.base.SelectionMixin,
 pandas.core.indexing.IndexingMixin,
 object)

我调查了Code GraphDot,他们都没有那样画图。

0 个答案:

没有答案