# -*- coding: utf-8 -*- from src.tree import TreeWalker from src.doc import DocWalker from src.img import ImgWalker if __name__ == '__main__': walker = TreeWalker( "data", "opencv", "OpenCV", ignore_keywords=True, enable_notebook=False, authors={ "Python小白进阶": "youcans", "youcans": "youcans", "AI浩": "hhhhhhhhhhwwwwwwwwww", "hhhhhhhhhhwwwwwwwwww": "hhhhhhhhhhwwwwwwwwww", "吴佳WuJia": "yvettewu", "yvettewu": "yvettewu", "幻灰龙": "huanhuilong", "feilong": "huanhuilong", "huanhuilong": "huanhuilong", "xiaozhi_5638": "xiaozhi_5638", "请叫我卷福": "xiaozhi_5638" } ) walker.walk() # doc = DocWalker('doc') # doc.walk() # img = ImgWalker('data') # img.walk()