Files
limoka/MuRuLOSE/HikkaModulesRepo/autofull.py
2025-07-10 21:02:34 +03:00

14 lines
260 B
Python

# I'm too lazy to update full.txt every time, so automation
import glob
modules = glob.glob("*.py")
modules.remove("!example.py")
modules.remove("autofull.py")
mods = '\n'.join(modules).replace('.py','')
with open('full.txt', 'w') as f:
f.write(mods)