__init__.py 170 Bytes
Newer Older
1 2 3 4 5 6 7 8
import os


__all__ = [
    os.path.splitext(os.path.basename(x))[0]
    for x in os.listdir(os.path.dirname(__file__))
    if x.endswith(".py") and x != "__init__.py"
]