1
0
mirror of https://github.com/one-among-us/data.git synced 2024-11-25 20:47:37 +08:00
one-among-us-data/people/tdor/comments/export.py

19 lines
516 B
Python
Raw Normal View History

2024-11-22 09:18:48 +08:00
import os
import json
md = ''
for dirpath, dirName, fileName in os.walk("./"):
for f in fileName:
if f.lower().endswith('.json'):
with open('./' + f, 'r') as file:
data = json.load(file)
md += str(data['content']).replace('\n', ' \n').replace('\\n', '\n\n')
md += '\n\n'
md += '——' + str(data['submitter'])
md += '<br /><br /><br /><br />\n\n'
print(md)
m = open('./export.md', 'w')
m.write(md)
m.close()