Based on the klepto docs
Using:
klepto.archives.sqltable_archive('sqlite:///foo.db', cached=False)
Successfully creates a database with the default table name of memo
However, when table is also included:
klepto.archives.sqltable_archive('sqlite:///foo.db', table='bar', cached=False)
The following error occurs:
line 159, in __new__
archive = _sqltable_archive(db, table, **kwds)
TypeError: __init__() got multiple values for argument 'table'
pointing to line 159 in klepto.archives
Any help is much appreciated!