RandonautEntroPy/randonautentropy/__init__.py

8 lines
205 B
Python
Raw Normal View History

2023-05-28 22:49:23 +03:00
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')]