Metadata-Version: 2.1
Name: sqlconvert
Version: 0.3.0
Summary: Broytman sqlconvert
Home-page: https://phdru.name/Software/Python/sqlconvert/
Author: Oleg Broytman
Author-email: phd@phdru.name
License: GPL
Project-URL: Homepage, https://phdru.name/Software/Python/sqlconvert/
Project-URL: Documentation, https://phdru.name/Software/Python/sqlconvert/docs/
Project-URL: Github repo, https://github.com/phdru/sqlconvert
Project-URL: Issue tracker, https://github.com/phdru/sqlconvert/issues
Project-URL: Download, https://pypi.org/project/sqlconvert/0.3.0/
Project-URL: Git repo, https://git.phdru.name/sqlconvert.git/
Keywords: sql,mysql,postgresql,sqlite,insert
Platform: Any
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/x-rst
Requires-Dist: m-lib.defenc (>=1.0)
Requires-Dist: m-lib (>=3.1)
Requires-Dist: sqlparse
Requires-Dist: SQLObject (>=2.2.1); python_version == "2.7"
Requires-Dist: SQLObject (>=3.0.0); python_version >= "3.4"

SQL converter.

Author: Oleg Broytman <phd@phdru.name>.

Copyright (C) 2016-2021 PhiloSoft Design.

License: GPL.

sqlconvert is a library to perform SQL conversions. It uses sqlparse to
parse SQL and SQLObject to escape SQL strings and handle connections to DB
backends.

The library is in the early stage of development and currently cannot do
much.

The first goal is to implement mysql2sql, a script intended primarily to
convert mysqldump output (especially with extended INSERT syntax) to
standard SQL to load at least to PostgreSQL or SQLite.

| Home Page:     https://phdru.name/Software/Python/sqlconvert/
| Documentation: https://phdru.name/Software/Python/sqlconvert/docs/
| Git repo:      https://git.phdru.name/sqlconvert.git/
| GitHub repo:   https://github.com/phdru/sqlconvert
| Issue tracker: https://github.com/phdru/sqlconvert/issues
| PyPI:          https://pypi.org/project/sqlconvert/

::

    pip install sqlconvert


