使用元数据描述数据库
查看数据库dbname的所有表名
from sqlalchemy import create_engine, inspect, Table
from sqlalchemy import MetaDatadbname = ''
user = 'postgres'
password = 123
engine = create_engine(f'postgresql://{user}:{password}@localhost:5432/{dbname}')insp = inspect(engine)
tables = insp.get_table_names()
print(tables)
查看数据库dbname中表tbname的字段名称
from sqlalchemy import create_engine, inspect, Table
from sqlalchemy import MetaDatadbname = ''
user = 'postgres'
password = 123
engine = create_engine(f'postgresql://{user}:{password}@localhost:5432/{dbname}')
metadata_obj = MetaData()tbname = ''
messages = Table(tbname, metadata_obj, autoload_with=engine)
print([c.name for c in messages.columns])