FMHYedit/.github/single-page.py

31 lines
741 B
Python
Raw Normal View History

2023-04-09 16:30:28 +00:00
import glob
import time
2023-12-28 10:48:39 +00:00
2023-04-09 16:30:28 +00:00
def output():
read = glob.glob("*.md")
content = ""
nsfw_content = ""
ignore_files = {"README.md", "feedback.md", "posts.md", "index.md"}
2023-04-09 16:30:28 +00:00
for file in read:
if file not in ignore_files:
2023-04-09 16:30:28 +00:00
with open(file, "r") as f:
2023-12-28 10:48:39 +00:00
if "NSFWPiracy.md" == file:
nsfw_content += f.read()
continue
2023-04-09 16:30:28 +00:00
content += f.read()
return content + nsfw_content
2023-04-09 16:30:28 +00:00
2023-12-28 10:48:39 +00:00
2023-04-09 16:30:28 +00:00
def main():
content = output()
with open("single-page", "w") as file:
file.write(content)
if __name__ == "__main__":
s = time.perf_counter()
main()
elapsed = time.perf_counter() - s
print(f"{__file__} executed in {elapsed:0.2f} seconds.")