SqlAlchemy doesn't natively support traditional database "views".  They're 
often handled by "reflecting" an existing database view as a database table 
(http://docs.sqlalchemy.org/en/latest/core/reflection.html#reflecting-views). 
 There are also some API functions that deal with getting "view" metadata 
out of the backend.

If you're trying to map columns from different tables onto a single class, 
there is an extension called "association_proxy" that will let you do that.

-- 
You received this message because you are subscribed to the Google Groups 
"sqlalchemy" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sqlalchemy+unsubscr...@googlegroups.com.
To post to this group, send email to sqlalchemy@googlegroups.com.
Visit this group at http://groups.google.com/group/sqlalchemy.
For more options, visit https://groups.google.com/d/optout.

Reply via email to