pyqtgraph/doc/listmissing.py

15 lines
486 B
Python
Raw Normal View History

import os
dirs = [
('graphicsItems', 'graphicsItems'),
('3dgraphics', 'opengl/items'),
('widgets', 'widgets'),
]
path = os.path.join(os.path.dirname(os.path.abspath(__file__)), '..')
for a, b in dirs:
2021-01-25 01:58:40 +00:00
rst = [os.path.splitext(x)[0].lower() for x in os.listdir(os.path.join(path, 'doc', 'source', a))]
py = [os.path.splitext(x)[0].lower() for x in os.listdir(os.path.join(path, "pyqtgraph", b))]
2015-07-11 16:17:48 +00:00
print(a)
for x in set(py) - set(rst):
2015-07-11 16:17:48 +00:00
print( " ", x)