标签: python
storage_type = parser.get(Section, "storage") if "DB" == storage_type: from proxy.db_storage import Storage elif "FS" == storage_type: from proxy.fs_storage import Storage ...work with Storage..
我需要使用两个模块中的一个来根据配置变量加载类,所以上述方法是否合适?