Hi I'm trying to create a class from a string.... This is my code, but is not working....
'myshop.models.base'
module_name, class_name = model.rsplit(".", 1)
module = importlib.import_module(module_name)
class_ = getattr(module, class_name)()
Anyone know what I'm doing wrong.... or another way?
thanks
--
http://mail.python.org/mailman/listinfo/python-list
