由于**kwargs
def create_record_table(Base, table_name, **kwargs):
class RecordTable(Base):
__tablename__ = table_name
id = Column(Integer, primary_key=True)
for key, value in kwargs.items():
exec("{0} = {1}".format(key,value))
return RecordTable
这是一个调用此函数的人的例子
test = create_record_table(Base, "testtable", index="Column(String)")
我想创建一个创建或返回index="Column(String)"
部分的函数或类。
index = Atomic("col_name", "String")
test = create_record_table(Base, "testtable", index)
或类似地:
index = Atomic("col_name", "Integer")
test = create_record_table(Base, "testtable", index)
答案 0 :(得分:0)
怎么样:
def Atomic(col_name, col_type):
return {'index': '%s(%s)' % (col_name, col_type)}
然后你需要像这样呼叫create_record_table
:
kwargs = Atomic('testcol', 'String')
create_record_table(Base, 'testtable', **kwargs)
如果您在调用**
时不希望在kwargs
之前添加create_record_table
,则可以将create_record_table
的声明更改为:
def create_record_table(Base, table_name, kwargs):
现在,您可以像这样调用它:
kwargs = Atomic('testcol', 'String')
create_record_table(Base, 'testtable', kwargs)
但通过这种方式,它会使create_record_table
与旧代码不兼容。