新增架线南网数据

This commit is contained in:
wanyaokun
2024-09-14 12:06:24 +08:00
parent 0720c6dfcd
commit eb9f590571
12 changed files with 903 additions and 1 deletions
+3 -1
View File
@@ -68,8 +68,10 @@ if __name__ == "__main__":
prjSon = ProjectJson(dirPath)
prjSon.parse()
tables = prjSon.tables()
outPut = os.path.join(outputDir,dirName)
os.makedirs(outPut,exist_ok=True)
for name,table in tables.items():
outputPath = os.path.join(outputDir,dirName,f'{table.name()}.md')
outputPath = os.path.join(outPut,f'{table.name()}.md')
mdObj = MarkDown(table,outputPath)
mdObj.build()