I've found a question on how to insert values from a table into another table:
SQLAlchemy: Inserting the results of a query into another table
My query is is slightly different.
When running a SQL you can do something like this:
insert into table1(col1, col2)
select some_constant_value_or_variable, col2 from table2;
Is there a way to do this in SQLAlchemy