mirror of
https://github.com/MuRuLOSE/limoka.git
synced 2026-06-16 06:24:18 +02:00
14 lines
260 B
Python
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)
|