.DS_Store
.appveyor.yml
.bumpversion.cfg
.cookiecutterrc
.coveragerc
.editorconfig
.gitignore
.pre-commit-config.yaml
.readthedocs.yml
.ruff.toml
.travis.yml
AUTHORS.rst
CHANGELOG.rst
CONTRIBUTING.rst
LICENSE
README.md
mypy.ini
pyproject.toml
requirements-dev.txt
.idea/.gitignore
.idea/misc.xml
.idea/modules.xml
.idea/pandalchemy.iml
.idea/vcs.xml
.idea/inspectionProfiles/profiles_settings.xml
ci/appveyor-with-compiler.cmd
ci/bootstrap.py
ci/requirements.txt
ci/templates/.appveyor.yml
ci/templates/.travis.yml
ci/templates/tox.ini
docs/ARCHITECTURE.md
docs/authors.rst
docs/changelog.rst
docs/conf.py
docs/contributing.rst
docs/index.rst
docs/installation.rst
docs/readme.rst
docs/requirements.txt
docs/spelling_wordlist.txt
docs/usage.rst
docs/reference/bamboo.rst
docs/reference/index.rst
examples/01_crud_operations.ipynb
examples/02_change_tracking.ipynb
examples/03_composite_primary_keys.ipynb
examples/04_auto_increment.ipynb
examples/05_conditional_operations.ipynb
examples/06_schema_evolution.ipynb
examples/07_transactions.ipynb
examples/08_index_based_primary_keys.ipynb
examples/09_immutable_primary_keys.ipynb
examples/10_pandas_integration.ipynb
examples/11_real_world_ecommerce.ipynb
examples/README.md
examples/advanced_usage.py
examples/basic_usage.py
examples_source/01_crud_operations.py
examples_source/02_change_tracking.py
examples_source/03_composite_primary_keys.py
examples_source/04_auto_increment.py
examples_source/05_conditional_operations.py
examples_source/06_schema_evolution.py
examples_source/07_transactions.py
examples_source/08_index_based_primary_keys.py
examples_source/09_immutable_primary_keys.py
examples_source/10_pandas_integration.py
examples_source/11_real_world_ecommerce.py
examples_source/README.md
scripts/convert_source_to_notebooks.py
src/.DS_Store
src/pandalchemy/.DS_Store
src/pandalchemy/__init__.py
src/pandalchemy/__main__.py
src/pandalchemy/_version.py
src/pandalchemy/change_tracker.py
src/pandalchemy/cli.py
src/pandalchemy/exceptions.py
src/pandalchemy/execution_plan.py
src/pandalchemy/interfaces.py
src/pandalchemy/pandalchemy_base.py
src/pandalchemy/pk_utils.py
src/pandalchemy/sql_operations.py
src/pandalchemy/tracked_dataframe.py
src/pandalchemy/utils.py
src/pandalchemy.egg-info/PKG-INFO
src/pandalchemy.egg-info/SOURCES.txt
src/pandalchemy.egg-info/dependency_links.txt
src/pandalchemy.egg-info/entry_points.txt
src/pandalchemy.egg-info/requires.txt
src/pandalchemy.egg-info/top_level.txt
src/pandalchemy/tests/__init__.py
src/pandalchemy/tests/table_test.db
tests/POSTGRES_TEST_EXPANSION.md
tests/RUN_POSTGRES_TESTS.md
tests/SCHEMA_EVOLUTION_HANG_ANALYSIS.md
tests/TESTING_MULTI_DB.md
tests/conftest.py
tests/example_multi_db_test.py
tests/table_test.db
tests/test_auto_increment.py
tests/test_change_tracker.py
tests/test_cli.py
tests/test_column_drop_rollback.py
tests/test_column_type_changes.py
tests/test_complex_relationships.py
tests/test_composite_pk_integration.py
tests/test_concurrent_scenarios.py
tests/test_data_integrity.py
tests/test_edge_cases.py
tests/test_error_recovery.py
tests/test_execution_plan.py
tests/test_immutable_index.py
tests/test_integration.py
tests/test_main.py
tests/test_pandalchemy.py
tests/test_performance.py
tests/test_pk_as_index.py
tests/test_postgres_debug.py
tests/test_postgres_simple.py
tests/test_query_update_patterns.py
tests/test_real_world_workflows.py
tests/test_schema_changes.py
tests/test_schema_evolution_complex.py
tests/test_sql_operations.py
tests/test_tracked_dataframe.py
tests/test_tracked_dataframe_sql_helpers.py
tests/test_transactions.py
tests/test_type_conversions.py
tests/test_utils.py