Re: [sqlalchemy] Re: Presenting a higher-level view of a physical table to the end-user

2020-05-31 Thread Mike Bayer
This seems straightforward, try reading through the tutorial at https://docs.sqlalchemy.org/en/13/core/tutorial.html which covers the basic idea. SQLAlchemy is designed first and foremost to present SQL statements as composable constructs that work like views, and that is what the select()

[sqlalchemy] Re: Presenting a higher-level view of a physical table to the end-user

2020-05-31 Thread Mark Robinson
They will be developers, using Python/SqlAlchemy. Thanks. On Sunday, 31 May 2020 16:41:33 UTC+1, Jonathan Vanasco wrote: > > How will the end-users be querying? Are they going to be consumers who > are submitting params to a form, or are they going to be developers using > Python/SqlAlchemy? >

[sqlalchemy] Re: Presenting a higher-level view of a physical table to the end-user

2020-05-31 Thread Jonathan Vanasco
How will the end-users be querying? Are they going to be consumers who are submitting params to a form, or are they going to be developers using Python/SqlAlchemy? -- SQLAlchemy - The Python SQL Toolkit and Object Relational Mapper http://www.sqlalchemy.org/ To post example code, please