8 lines
211 B
Python
8 lines
211 B
Python
# -*- coding: UTF-8 -*-
|
|
|
|
# TODO init object by module name
|
|
|
|
# something like
|
|
# module_name, class_name = module_class_string.rsplit(".", 1)
|
|
# return getattr(importlib.import_module(module_name), class_name)()
|