sqlparse:用于Python的非验证SQL解析器模块 源码
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
文件列表
sqlparse-master.zip
(预估有个73文件)
sqlparse-master
setup.py
284B
.gitignore
275B
Makefile
506B
CHANGELOG
17KB
sqlparse
__init__.py
2KB
lexer.py
2KB
engine
__init__.py
447B
暂无评论