Đây là một cách để làm điều đó:
MyTable.__table__.insert().execute([{'color': 'blue'},
{'color': 'red'},
{'color': 'green'}])
Hoặc, sử dụng connection.execute()
:
conn.execute(MyTable.insert(), [{'color': 'blue'},
{'color': 'red'},
{'color': 'green'}])
Bạn có thể dễ dàng tạo danh sách các phái từ danh sách bạn có:
[{'color': value} for value in colors]