As stated in the SQLAchemy documentation , you can insert many records into tableyours by calling your method connection.execute(), using table.insert()your list of records as parameters, for example:
connection.execute(table.insert(), [
{'id':'12','name':'a','lang':'eng'},
{'id':'13','name':'b','lang':'eng'},
{'id':'14','name':'c','lang':'eng'},
]
)
, table , , , .