bbc_alltime / get_configs.py
liyucheng's picture
Update get_configs.py
af08491
import glob
import os
all_articles = glob.glob('./articles/*.json')
file_names = [os.path.splitext(os.path.basename(path))[0] for path in all_articles]
_TIMES = sorted(file_names) + ['all']
# Write the string to a Python file
with open('configs.txt', 'w') as file:
for time in _TIMES:
file.write(time + '\n')