From Obese Camel, 10 Years ago, written in Plain Text.
This paste is a reply to Re: Re: Untitled from Fiery Tapir - view diff
Embed
  1. class ClassFactory(object):
  2.     @staticmethod
  3.     def produce(class_name):
  4.         module = importlib.import_module(class_name.lower())
  5.         return getattr(module, class_name)
  6.