Is there a way to build a Query object in SQLAlchemy which will be the equivalent of:
Query
SELECT * FROM (VALUES (1, 2, 3)) AS sq;
from sqlalchemy import select, func select(['*']).select_from(func.values([1, 2, 3, 4]))