├── .bumpversion.cfg ├── .github ├── dco.yml ├── scripts │ └── runtests.py └── workflows │ ├── lint.yml │ ├── pythonpackage.yml │ └── release.yml ├── .gitignore ├── .readthedocs.yml ├── CHANGES ├── LICENSE ├── README.md ├── contributing └── CONTRIBUTING.md ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat └── requirements.txt ├── pyproject.toml ├── samples ├── Core.py └── ORM.py ├── setup.cfg ├── sqlalchemy_ibmi ├── __init__.py ├── base.py ├── constants.py └── requirements.py └── test ├── __init__.py ├── conftest.py ├── test_cache.py ├── test_suite.py └── util.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/dco.yml: -------------------------------------------------------------------------------- 1 | require: 2 | members: false 3 | -------------------------------------------------------------------------------- /.github/scripts/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/.github/scripts/runtests.py -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/README.md -------------------------------------------------------------------------------- /contributing/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/contributing/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/pyproject.toml -------------------------------------------------------------------------------- /samples/Core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/samples/Core.py -------------------------------------------------------------------------------- /samples/ORM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/samples/ORM.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/setup.cfg -------------------------------------------------------------------------------- /sqlalchemy_ibmi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/sqlalchemy_ibmi/__init__.py -------------------------------------------------------------------------------- /sqlalchemy_ibmi/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/sqlalchemy_ibmi/base.py -------------------------------------------------------------------------------- /sqlalchemy_ibmi/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/sqlalchemy_ibmi/constants.py -------------------------------------------------------------------------------- /sqlalchemy_ibmi/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/sqlalchemy_ibmi/requirements.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/test/conftest.py -------------------------------------------------------------------------------- /test/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/test/test_cache.py -------------------------------------------------------------------------------- /test/test_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/test/test_suite.py -------------------------------------------------------------------------------- /test/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/sqlalchemy-ibmi/HEAD/test/util.py --------------------------------------------------------------------------------