I would like to load CSV file into SQLite coded using SQLAlchemy (to fit other code).
The command line load looks like this:
create table MYTABLE (...);
.separator ','
.import myfile.csv MYTABLE
(Avoiding per row INSERTs) Is there an equivalent SQLAlchemy operation?
Thanks