赞
踩
举例:删除一条记录
from sqlalchemy import create_engine host = '10.x.x.x' user = 'xxxx' password = 'xxxxx' port = 'xxx' database = 'xxxx' engine_str = 'postgres://' + user + ':' + password +