cardinal_pythonlib.sqlalchemy.table_identity
Original code copyright (C) 2009-2022 Rudolf Cardinal (rudolf@pobox.com).
This file is part of cardinal_pythonlib.
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Class to refer to database tables either by name or by SQLAlchemy Table object.
- class cardinal_pythonlib.sqlalchemy.table_identity.TableIdentity(tablename: str | None = None, table: Table | None = None, metadata: MetaData | None = None)[source]
Convenient way of passing around SQLAlchemy
Tableobjects when you might know either either its name or theTableobject itself.Initialize with either
tablenameortable, not both.- Parameters:
- property table: Table
Returns a SQLAlchemy
Tableobject. This is either theTableobject that was used for initialization, or one that was constructed from thetablenameplus themetadata.
- property tablename: str
Returns the string name of the table.