init
This commit is contained in:
commit
e7265937e3
8 changed files with 257 additions and 0 deletions
8
randonautentropy/__init__.py
Normal file
8
randonautentropy/__init__.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import os
|
||||
import glob
|
||||
|
||||
from .rndo import *
|
||||
from .cmd import *
|
||||
|
||||
modules = glob.glob(os.path.dirname(__file__)+"/*.py")
|
||||
__all__ = [ os.path.basename(f)[:-3] for f in modules if not f.endswith('__init__.py')]
|
||||
Loading…
Add table
Add a link
Reference in a new issue