python-sqlparse-解析SQL语句 sqlparse是用于Python的非验证SQL解析器。 它提供了对SQL语句的解析,拆分和格式化的支持。 该模块与Python 3.5+兼容,并根据的条款。 访问项目页面,为以获取有关该项目的更多信息。 快速开始 $ pip install sqlparse >> > import sqlparse >> > # Split a string containing two SQL statements: >> > raw = 'select * from foo; select * from bar;' >> > statements = sqlparse . split ( raw ) >> > statements [ 'select * from foo;' , 'select * from bar;' ] >> > # Fo