src / devgagan /modules /__init__.py
kailashhh's picture
src
6b1e8b6
raw
history blame contribute delete
417 Bytes
# devggn
import glob
from os.path import basename, dirname, isfile
def __list_all_modules():
mod_paths = glob.glob(dirname(__file__) + "/*.py")
all_modules = [
basename(f)[:-3]
for f in mod_paths
if isfile(f) and f.endswith(".py") and not f.endswith("__init__.py")
]
return all_modules
ALL_MODULES = sorted(__list_all_modules())
__all__ = ALL_MODULES + ["ALL_MODULES"]