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

5 lines
97 B
Python
Raw Normal View History

2023-10-27 13:42:33 +02:00
from tools import 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)