Source code for pynsive.common

import importlib


# Constants; because they make the code look nice.
MODULE_PATH_SEP = '.'
MODULE_INIT_FILE = '__init__.py'
NAME_ATTRIBUTE = '__name__'
PATH_ATTRUBITE = '__path__'
PYCACHE_FOLDER = '__pycache__'


[docs]def import_module(module_name): """ A nice namespace alias for users. """ return importlib.import_module(module_name)
Read the Docs v: latest
Versions
latest
Downloads
PDF
HTML
Epub
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.