wikitext_alltime_backup / get_configs.py
liyucheng's picture
update configs
ce60d25
raw
history blame contribute delete
No virus
308 Bytes
import glob
import os
all_articles = glob.glob('./wiki/*.json')
file_names = [os.path.splitext(os.path.basename(path))[0] for path in all_articles]
_TIMES = sorted(file_names)
# Write the string to a Python file
with open('configs.txt', 'w') as file:
for time in _TIMES:
file.write(time + '\n')