Querying Data
After you use the steps in Connecting to connect, and use one of the methods in Reflecting Metadata to reflect some of the metadata, you can use a session object to query data.
Querying Data Using the Query Method
If the mapping class has been prepared, use it with a session object to query the data source. After binding the engine to the session, provide the mapping class to the session's query method.For example:
engine = create_engine("excelonline:///?InitiateOAuth=GETANDREFRESH;") factory = sessionmaker(bind=engine) session = factory() for instance in session.query(Test_xlsx_Sheet1).filter_by(Column2="Bob"): print("Id: ", instance.Id) print("Id: ", instance.Id) print("Column1: ", instance.Column1) print("---------")
Querying Data Using the Execute Method
The session object can also run the query with the execute() method alongside the appropriate Table object. Assuming you have an active session, the following is just as viable:Test_xlsx_Sheet1_table = Test_xlsx_Sheet1.metadata.tables["Test_xlsx_Sheet1"] for instance in session.execute(Test_xlsx_Sheet1_table.select().where(Test_xlsx_Sheet1_table.c.Column2 == "Bob")): print("Id: ", instance.Id) print("FullName: ", instance.Name) print("City: ", instance.BillingCity) print("---------")