fibonaccios/bin/__init__.py

6 lines
168 B
Python
Raw Normal View History

2022-11-29 19:18:17 -08:00
import os
imports = [ i[:-3] for i in os.listdir('/bin/') if i.endswith('.py') and not '__' in i ]
for module in imports:
exec(f'import bin.{module} as {module}')