No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

__init__.py 199B

12345
  1. from os.path import dirname, basename, isfile
  2. import glob
  3. modules = glob.glob(dirname(__file__)+"/*.py")
  4. __all__ = [ basename(f)[:-3] for f in modules if isfile(f) and basename(f) != '__init__.py']