1
0
mirror of https://codeberg.org/fediverse/fep.git synced 2026-08-05 19:55:46 +00:00
Files
fep/scripts/create_readme.py
T

13 lines
261 B
Python
Raw Normal View History

2024-11-15 11:22:01 +00:00
#!/usr/bin/env python
2024-12-16 08:40:56 +00:00
import json
2025-11-01 08:40:20 +01:00
from fep_tools import data_for_json_file, Readme
2023-07-16 07:43:02 +00:00
with open("README.md", "w") as f1:
2023-10-27 13:42:33 +02:00
f1.writelines(Readme().content)
2024-12-16 08:40:56 +00:00
with open("index.json", "w") as index_file:
2025-11-01 08:40:20 +01:00
json.dump(data_for_json_file(), index_file, indent=2)