├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── contribute.json ├── docs └── Student Project 2019.md ├── moz_sql_parser ├── __init__.py ├── debugs.py ├── formatting.py ├── keywords.py └── sql_parser.py ├── requirements.txt ├── setup.py ├── setuptools.json └── tests ├── README.md ├── __init__.py ├── test_errors.py ├── test_format_and_parse.py ├── test_formatting.py ├── test_meta.py ├── test_resources.py ├── test_simple.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/README.md -------------------------------------------------------------------------------- /contribute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/contribute.json -------------------------------------------------------------------------------- /docs/Student Project 2019.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/docs/Student Project 2019.md -------------------------------------------------------------------------------- /moz_sql_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/moz_sql_parser/__init__.py -------------------------------------------------------------------------------- /moz_sql_parser/debugs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/moz_sql_parser/debugs.py -------------------------------------------------------------------------------- /moz_sql_parser/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/moz_sql_parser/formatting.py -------------------------------------------------------------------------------- /moz_sql_parser/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/moz_sql_parser/keywords.py -------------------------------------------------------------------------------- /moz_sql_parser/sql_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/moz_sql_parser/sql_parser.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | mo-future>=3 2 | pyparsing==2.3.1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/setup.py -------------------------------------------------------------------------------- /setuptools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/setuptools.json -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_format_and_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/tests/test_format_and_parse.py -------------------------------------------------------------------------------- /tests/test_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/tests/test_formatting.py -------------------------------------------------------------------------------- /tests/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/tests/test_meta.py -------------------------------------------------------------------------------- /tests/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/tests/test_resources.py -------------------------------------------------------------------------------- /tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/tests/test_simple.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/moz-sql-parser/HEAD/tests/util.py --------------------------------------------------------------------------------