mirror of
https://github.com/MuRuLOSE/limoka.git
synced 2026-06-16 06:24:18 +02:00
9 lines
207 B
Python
9 lines
207 B
Python
import os
|
|
|
|
modules = filter(
|
|
lambda f: f.endswith(".py") and not f.startswith("_"),
|
|
os.listdir(".")
|
|
)
|
|
|
|
with open("full.txt", "w") as file:
|
|
file.write("\n".join(m.rstrip(".py") for m in modules)) |