├── .github └── workflows │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── Cargo.toml ├── LICENSE ├── README.md ├── pyproject.toml ├── python ├── scyllapy │ ├── __init__.py │ ├── _internal │ │ ├── __init__.pyi │ │ ├── exceptions.pyi │ │ ├── extra_types.pyi │ │ ├── load_balancing.pyi │ │ └── query_builder.pyi │ ├── exceptions.py │ ├── extra_types.py │ ├── load_balancing.py │ ├── py.typed │ └── query_builder.py └── tests │ ├── __init__.py │ ├── conftest.py │ ├── query_builders │ ├── __init__.py │ ├── test_delete.py │ ├── test_inserts.py │ ├── test_select.py │ └── test_update.py │ ├── test_batches.py │ ├── test_bindings.py │ ├── test_extra_types.py │ ├── test_pagination.py │ ├── test_parsing.py │ ├── test_prepared.py │ ├── test_profiles.py │ ├── test_queries.py │ ├── test_query_res.py │ └── utils.py ├── scripts └── version_bumper.py ├── src ├── batches.rs ├── consistencies.rs ├── exceptions │ ├── mod.rs │ ├── py_err.rs │ └── rust_err.rs ├── execution_profiles.rs ├── extra_types.rs ├── inputs.rs ├── lib.rs ├── load_balancing.rs ├── prepared_queries.rs ├── queries.rs ├── query_builder │ ├── delete.rs │ ├── insert.rs │ ├── mod.rs │ ├── select.rs │ ├── update.rs │ └── utils.rs ├── query_results.rs ├── scylla_cls.rs └── utils.rs └── tox.ini /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/.python-version -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /python/scyllapy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/scyllapy/__init__.py -------------------------------------------------------------------------------- /python/scyllapy/_internal/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/scyllapy/_internal/__init__.pyi -------------------------------------------------------------------------------- /python/scyllapy/_internal/exceptions.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/scyllapy/_internal/exceptions.pyi -------------------------------------------------------------------------------- /python/scyllapy/_internal/extra_types.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/scyllapy/_internal/extra_types.pyi -------------------------------------------------------------------------------- /python/scyllapy/_internal/load_balancing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/scyllapy/_internal/load_balancing.pyi -------------------------------------------------------------------------------- /python/scyllapy/_internal/query_builder.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/scyllapy/_internal/query_builder.pyi -------------------------------------------------------------------------------- /python/scyllapy/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/scyllapy/exceptions.py -------------------------------------------------------------------------------- /python/scyllapy/extra_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/scyllapy/extra_types.py -------------------------------------------------------------------------------- /python/scyllapy/load_balancing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/scyllapy/load_balancing.py -------------------------------------------------------------------------------- /python/scyllapy/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/scyllapy/query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/scyllapy/query_builder.py -------------------------------------------------------------------------------- /python/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/conftest.py -------------------------------------------------------------------------------- /python/tests/query_builders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/tests/query_builders/test_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/query_builders/test_delete.py -------------------------------------------------------------------------------- /python/tests/query_builders/test_inserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/query_builders/test_inserts.py -------------------------------------------------------------------------------- /python/tests/query_builders/test_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/query_builders/test_select.py -------------------------------------------------------------------------------- /python/tests/query_builders/test_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/query_builders/test_update.py -------------------------------------------------------------------------------- /python/tests/test_batches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/test_batches.py -------------------------------------------------------------------------------- /python/tests/test_bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/test_bindings.py -------------------------------------------------------------------------------- /python/tests/test_extra_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/test_extra_types.py -------------------------------------------------------------------------------- /python/tests/test_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/test_pagination.py -------------------------------------------------------------------------------- /python/tests/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/test_parsing.py -------------------------------------------------------------------------------- /python/tests/test_prepared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/test_prepared.py -------------------------------------------------------------------------------- /python/tests/test_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/test_profiles.py -------------------------------------------------------------------------------- /python/tests/test_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/test_queries.py -------------------------------------------------------------------------------- /python/tests/test_query_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/test_query_res.py -------------------------------------------------------------------------------- /python/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/python/tests/utils.py -------------------------------------------------------------------------------- /scripts/version_bumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/scripts/version_bumper.py -------------------------------------------------------------------------------- /src/batches.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/batches.rs -------------------------------------------------------------------------------- /src/consistencies.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/consistencies.rs -------------------------------------------------------------------------------- /src/exceptions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/exceptions/mod.rs -------------------------------------------------------------------------------- /src/exceptions/py_err.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/exceptions/py_err.rs -------------------------------------------------------------------------------- /src/exceptions/rust_err.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/exceptions/rust_err.rs -------------------------------------------------------------------------------- /src/execution_profiles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/execution_profiles.rs -------------------------------------------------------------------------------- /src/extra_types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/extra_types.rs -------------------------------------------------------------------------------- /src/inputs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/inputs.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/load_balancing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/load_balancing.rs -------------------------------------------------------------------------------- /src/prepared_queries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/prepared_queries.rs -------------------------------------------------------------------------------- /src/queries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/queries.rs -------------------------------------------------------------------------------- /src/query_builder/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/query_builder/delete.rs -------------------------------------------------------------------------------- /src/query_builder/insert.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/query_builder/insert.rs -------------------------------------------------------------------------------- /src/query_builder/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/query_builder/mod.rs -------------------------------------------------------------------------------- /src/query_builder/select.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/query_builder/select.rs -------------------------------------------------------------------------------- /src/query_builder/update.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/query_builder/update.rs -------------------------------------------------------------------------------- /src/query_builder/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/query_builder/utils.rs -------------------------------------------------------------------------------- /src/query_results.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/query_results.rs -------------------------------------------------------------------------------- /src/scylla_cls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/scylla_cls.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/src/utils.rs -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Intreecom/scyllapy/HEAD/tox.ini --------------------------------------------------------------------------------