mirror of
https://codeberg.org/fediverse/fep.git
synced 2026-08-05 03:35:52 +00:00
7 lines
116 B
Python
Executable File
7 lines
116 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
from tools import Readme
|
|
|
|
with open("README.md", "w") as f1:
|
|
f1.writelines(Readme().content)
|