使用:
klepto.archives.sqltable_archive('sqlite:///foo.db', cached=False)
成功创建默认表名的数据库memo
但是,当 table 也包括在内时:
klepto.archives.sqltable_archive('sqlite:///foo.db', table='bar', cached=False)
出现以下错误:
line 159, in __new__
archive = _sqltable_archive(db, table, **kwds)
TypeError: __init__() got multiple values for argument 'table'
指向第 159行klepto.archives
任何帮助深表感谢!