File size: 324 Bytes
561cd5b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | from glob import glob
from os.path import basename, dirname, isfile
def loadModule():
mod_paths = glob(f"{dirname(__file__)}/*.py")
return sorted(
[
basename(f)[:-3]
for f in mod_paths
if isfile(f) and f.endswith(".py") and not f.endswith("__init__.py")
]
)
|