2018-10-07 05:07:05 +02:00
|
|
|
from os.path import dirname, basename, isfile
|
|
|
|
import glob
|
|
|
|
modules = glob.glob(dirname(__file__)+"/*.py")
|
2018-09-26 06:16:18 +02:00
|
|
|
__all__ = [ basename(f)[:-3] for f in modules if isfile(f) and not f.endswith('__init__.py')]
|