CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
MANIFEST.in
Makefile
README.md
SECURITY.md
mkdocs.yml
pyproject.toml
.github/PULL_REQUEST_TEMPLATE.md
.github/ISSUE_TEMPLATE/bug_report.md
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/feature_request.md
.github/ISSUE_TEMPLATE/question.md
.github/workflows/ci.yml
.github/workflows/docs.yml
.github/workflows/publish.yml
deployment/docker-compose.production.yml
deployment/config/production.yaml
deployment/k8s/zenoo-rpc-deployment.yaml
deployment/scripts/deploy.sh
deployment/scripts/healthcheck.py
docs/README.md
docs/index.md
docs/advanced/architecture.md
docs/advanced/extensions.md
docs/advanced/index.md
docs/advanced/performance.md
docs/advanced/security.md
docs/api-reference/client.md
docs/api-reference/index.md
docs/api-reference/batch/index.md
docs/api-reference/batch/operations.md
docs/api-reference/cache/backends.md
docs/api-reference/cache/index.md
docs/api-reference/cache/strategies.md
docs/api-reference/exceptions/index.md
docs/api-reference/models/fields.md
docs/api-reference/models/index.md
docs/api-reference/models/relationships.md
docs/api-reference/query/expressions.md
docs/api-reference/query/filters.md
docs/api-reference/query/index.md
docs/api-reference/retry/index.md
docs/api-reference/retry/policies.md
docs/api-reference/retry/strategies.md
docs/api-reference/transaction/context.md
docs/api-reference/transaction/index.md
docs/contributing/development.md
docs/contributing/documentation.md
docs/contributing/release.md
docs/contributing/testing.md
docs/examples/integrations/index.md
docs/examples/patterns/index.md
docs/examples/real-world/fastapi-integration.md
docs/examples/real-world/index.md
docs/getting-started/installation.md
docs/getting-started/migration.md
docs/getting-started/quickstart.md
docs/javascripts/extra.js
docs/stylesheets/extra.css
docs/troubleshooting/common-issues.md
docs/troubleshooting/debugging.md
docs/troubleshooting/faq.md
docs/tutorials/advanced-queries.md
docs/tutorials/basic-crud.md
docs/tutorials/performance-optimization.md
docs/tutorials/production-deployment.md
docs/tutorials/testing.md
docs/user-guide/batch-operations.md
docs/user-guide/caching.md
docs/user-guide/client.md
docs/user-guide/configuration.md
docs/user-guide/error-handling.md
docs/user-guide/models.md
docs/user-guide/queries.md
docs/user-guide/relationships.md
docs/user-guide/retry-mechanisms.md
docs/user-guide/transactions.md
examples/basic_usage.py
scripts/publish_to_pypi.sh
scripts/setup-test-redis.sh
scripts/validate_env.py
src/zenoo_rpc/__init__.py
src/zenoo_rpc/client.py
src/zenoo_rpc.egg-info/PKG-INFO
src/zenoo_rpc.egg-info/SOURCES.txt
src/zenoo_rpc.egg-info/dependency_links.txt
src/zenoo_rpc.egg-info/requires.txt
src/zenoo_rpc.egg-info/top_level.txt
src/zenoo_rpc/batch/__init__.py
src/zenoo_rpc/batch/context.py
src/zenoo_rpc/batch/exceptions.py
src/zenoo_rpc/batch/executor.py
src/zenoo_rpc/batch/manager.py
src/zenoo_rpc/batch/operations.py
src/zenoo_rpc/cache/__init__.py
src/zenoo_rpc/cache/backends.py
src/zenoo_rpc/cache/decorators.py
src/zenoo_rpc/cache/exceptions.py
src/zenoo_rpc/cache/keys.py
src/zenoo_rpc/cache/manager.py
src/zenoo_rpc/cache/strategies.py
src/zenoo_rpc/exceptions/__init__.py
src/zenoo_rpc/exceptions/base.py
src/zenoo_rpc/exceptions/mapping.py
src/zenoo_rpc/models/__init__.py
src/zenoo_rpc/models/base.py
src/zenoo_rpc/models/common.py
src/zenoo_rpc/models/fields.py
src/zenoo_rpc/models/registry.py
src/zenoo_rpc/models/relationships.py
src/zenoo_rpc/query/__init__.py
src/zenoo_rpc/query/builder.py
src/zenoo_rpc/query/expressions.py
src/zenoo_rpc/query/filters.py
src/zenoo_rpc/query/lazy.py
src/zenoo_rpc/retry/__init__.py
src/zenoo_rpc/retry/decorators.py
src/zenoo_rpc/retry/exceptions.py
src/zenoo_rpc/retry/policies.py
src/zenoo_rpc/retry/strategies.py
src/zenoo_rpc/transaction/__init__.py
src/zenoo_rpc/transaction/context.py
src/zenoo_rpc/transaction/exceptions.py
src/zenoo_rpc/transaction/manager.py
src/zenoo_rpc/transport/__init__.py
src/zenoo_rpc/transport/httpx_transport.py
src/zenoo_rpc/transport/pool.py
src/zenoo_rpc/transport/session.py
src/zenoo_rpc/utils/fallback.py
tests/__init__.py
tests/base.py
tests/conftest.py
tests/test_batch_comprehensive.py
tests/test_batch_context.py
tests/test_batch_context_managers.py
tests/test_batch_exceptions.py
tests/test_batch_execution.py
tests/test_batch_executor.py
tests/test_batch_operation_collector.py
tests/test_batch_progress_tracker.py
tests/test_cache_comprehensive.py
tests/test_cache_decorators.py
tests/test_cache_exceptions.py
tests/test_cache_keys.py
tests/test_cache_manager.py
tests/test_circuit_breaker.py
tests/test_client.py
tests/test_crud_implementation.py
tests/test_debug_crud.py
tests/test_enhanced_integration.py
tests/test_exceptions.py
tests/test_exceptions_mapping.py
tests/test_httpx_transport.py
tests/test_integration_comprehensive.py
tests/test_lazy_loading.py
tests/test_models.py
tests/test_models_common.py
tests/test_models_comprehensive.py
tests/test_models_fields.py
tests/test_odoo_model.py
tests/test_performance_benchmarks.py
tests/test_performance_simple.py
tests/test_phase3.py
tests/test_phase4_features.py
tests/test_query_advanced.py
tests/test_query_builder.py
tests/test_query_cache.py
tests/test_query_expressions.py
tests/test_real_odoo_integration.py
tests/test_redis_cache_integration.py
tests/test_registry.py
tests/test_relationships.py
tests/test_retry_exceptions.py
tests/test_retry_mechanism.py
tests/test_retry_policies.py
tests/test_retry_strategies.py
tests/test_session.py
tests/test_simple_odoo_integration.py
tests/test_transaction_comprehensive.py
tests/test_transaction_rollback.py
tests/test_transaction_rollback_comprehensive.py
tests/test_transaction_rollback_integration.py
tests/test_transport.py
tests/test_zenoo_client.py
tests/batch/__init__.py
tests/batch/test_batch_lifecycle.py
tests/batch/test_bulk_operations.py
tests/batch/test_validation_and_split.py
tests/helpers/__init__.py
tests/helpers/fake_model_factory.py
tests/helpers/memory_transport.py
tests/helpers/random_data_generator.py
tests/helpers/time_freezer.py
tests/performance/advanced_metrics.py
tests/performance/benchmark_config.py
tests/performance/comprehensive_scenarios.py
tests/performance/comprehensive_test_runner.py
tests/performance/demo_benchmark.py
tests/performance/detailed_reporting.py
tests/performance/enhanced_redis_benchmark.py
tests/performance/hybrid_cache_strategy.py
tests/performance/redis_performance_test.py
tests/performance/test_real_connection.py
tests/performance/test_zenoo_vs_odoorpc_benchmark.py
tests/transaction/__init__.py
tests/transaction/test_concurrency.py
tests/transaction/test_manager_edge_cases.py
tests/transaction/test_manager_happy_paths.py
tests/transaction/test_transaction_context.py
tests/transport/__init__.py
tests/transport/test_pool_circuit_breaker.py
tests/transport/test_pool_health_monitor.py
tests/transport/test_pool_shutdown.py