File size: 255 Bytes
0e63e05
 
06c8a6d
 
 
 
 
 
1
2
3
4
5
6
7
8
9


# import all files under utils/
from os.path import dirname, basename, isfile, join
import glob
modules = glob.glob(join(dirname(__file__), "*.py"))
__all__ = [basename(f)[:-3] for f in modules if isfile(f)
           and not f.endswith('__init__.py')]