├── .gitignore ├── .readthedocs.yaml ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README-dist.rst ├── README.rst ├── README.rst.in ├── dev ├── .gitignore └── venv.sh ├── doc ├── Makefile ├── requirements.txt └── source │ ├── conf.py │ ├── index.rst │ └── sqlparams.rst ├── prebuild.py ├── pyproject.toml ├── setup.py ├── sqlparams ├── __init__.py ├── _converting.py ├── _meta.py ├── _styles.py ├── _util.py └── typing.py ├── tests ├── __init__.py ├── test_1_general.py ├── test_2_named_to_named.py ├── test_2_named_to_numeric.py ├── test_2_named_to_ordinal.py ├── test_2_numeric_to_named.py ├── test_2_numeric_to_numeric.py ├── test_2_numeric_to_ordinal.py ├── test_2_ordinal_to_named.py ├── test_2_ordinal_to_numeric.py └── test_2_ordinal_to_ordinal.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/Makefile -------------------------------------------------------------------------------- /README-dist.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/README-dist.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/README.rst -------------------------------------------------------------------------------- /README.rst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/README.rst.in -------------------------------------------------------------------------------- /dev/.gitignore: -------------------------------------------------------------------------------- 1 | /venv 2 | -------------------------------------------------------------------------------- /dev/venv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/dev/venv.sh -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx==7.2.6 2 | -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/sqlparams.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/doc/source/sqlparams.rst -------------------------------------------------------------------------------- /prebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/prebuild.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/setup.py -------------------------------------------------------------------------------- /sqlparams/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/sqlparams/__init__.py -------------------------------------------------------------------------------- /sqlparams/_converting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/sqlparams/_converting.py -------------------------------------------------------------------------------- /sqlparams/_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/sqlparams/_meta.py -------------------------------------------------------------------------------- /sqlparams/_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/sqlparams/_styles.py -------------------------------------------------------------------------------- /sqlparams/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/sqlparams/_util.py -------------------------------------------------------------------------------- /sqlparams/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/sqlparams/typing.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_1_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/tests/test_1_general.py -------------------------------------------------------------------------------- /tests/test_2_named_to_named.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/tests/test_2_named_to_named.py -------------------------------------------------------------------------------- /tests/test_2_named_to_numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/tests/test_2_named_to_numeric.py -------------------------------------------------------------------------------- /tests/test_2_named_to_ordinal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/tests/test_2_named_to_ordinal.py -------------------------------------------------------------------------------- /tests/test_2_numeric_to_named.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/tests/test_2_numeric_to_named.py -------------------------------------------------------------------------------- /tests/test_2_numeric_to_numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/tests/test_2_numeric_to_numeric.py -------------------------------------------------------------------------------- /tests/test_2_numeric_to_ordinal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/tests/test_2_numeric_to_ordinal.py -------------------------------------------------------------------------------- /tests/test_2_ordinal_to_named.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/tests/test_2_ordinal_to_named.py -------------------------------------------------------------------------------- /tests/test_2_ordinal_to_numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/tests/test_2_ordinal_to_numeric.py -------------------------------------------------------------------------------- /tests/test_2_ordinal_to_ordinal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/tests/test_2_ordinal_to_ordinal.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpburnz/python-sqlparams/HEAD/tox.ini --------------------------------------------------------------------------------