dictsqlite 2.0.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dictsqlite-2.0.8/.bandit +14 -0
- dictsqlite-2.0.8/.gitignore +36 -0
- dictsqlite-2.0.8/Cargo.lock +1942 -0
- dictsqlite-2.0.8/Cargo.toml +100 -0
- dictsqlite-2.0.8/PKG-INFO +119 -0
- dictsqlite-2.0.8/Pypi.md +99 -0
- dictsqlite-2.0.8/benches/ops_benchmark.rs +112 -0
- dictsqlite-2.0.8/benchmark/README.md +32 -0
- dictsqlite-2.0.8/benchmark/analyze_results.py +262 -0
- dictsqlite-2.0.8/benchmark/benchmark_all.py +367 -0
- dictsqlite-2.0.8/benchmark/benchmark_results.csv +19 -0
- dictsqlite-2.0.8/benchmark/images/benchmark_avg_latency.png +0 -0
- dictsqlite-2.0.8/benchmark/images/benchmark_by_data_size.png +0 -0
- dictsqlite-2.0.8/benchmark/images/benchmark_category_comparison.png +0 -0
- dictsqlite-2.0.8/benchmark/images/benchmark_ops_per_sec.png +0 -0
- dictsqlite-2.0.8/build.sh +122 -0
- dictsqlite-2.0.8/build_production.sh +105 -0
- dictsqlite-2.0.8/build_result.txt +352 -0
- dictsqlite-2.0.8/check_result.txt +14 -0
- dictsqlite-2.0.8/deny.toml +29 -0
- dictsqlite-2.0.8/docs/EXAMPLES_EN.md +750 -0
- dictsqlite-2.0.8/docs/EXAMPLES_JP.md +750 -0
- dictsqlite-2.0.8/docs/FIX_SUMMARY.md +157 -0
- dictsqlite-2.0.8/docs/INDEX.md +168 -0
- dictsqlite-2.0.8/docs/MIGRATION_FROM_1.8.8_EN.md +509 -0
- dictsqlite-2.0.8/docs/MIGRATION_FROM_1.8.8_JP.md +509 -0
- dictsqlite-2.0.8/docs/README_EN.md +499 -0
- dictsqlite-2.0.8/docs/README_JP.md +499 -0
- dictsqlite-2.0.8/docs/TABLE_PROXY_REPR_REPORT.md +96 -0
- dictsqlite-2.0.8/docs/optimization_v5/01_overview.md +36 -0
- dictsqlite-2.0.8/docs/optimization_v5/02_storage_engine.md +65 -0
- dictsqlite-2.0.8/docs/optimization_v5/03_async_layer.md +59 -0
- dictsqlite-2.0.8/docs/optimization_v5/04_integration.md +50 -0
- dictsqlite-2.0.8/docs/optimization_v5/05_verification.md +31 -0
- dictsqlite-2.0.8/examples/README.md +277 -0
- dictsqlite-2.0.8/examples/async_await_example.py +108 -0
- dictsqlite-2.0.8/examples/async_jsonb_table_usage.py +302 -0
- dictsqlite-2.0.8/examples/jsonb_table_usage_example.py +291 -0
- dictsqlite-2.0.8/examples/v4.2_advanced_examples.py +377 -0
- dictsqlite-2.0.8/examples/v4.2_basic_usage.py +328 -0
- dictsqlite-2.0.8/examples/v4.2_migration_example.py +304 -0
- dictsqlite-2.0.8/examples/v4.2_performance_examples.py +349 -0
- dictsqlite-2.0.8/others/ASYNC_IMPLEMENTATION_SUMMARY.md +202 -0
- dictsqlite-2.0.8/others/ASYNC_SUPPORT_README.md +290 -0
- dictsqlite-2.0.8/others/BENCHMARK_RESULTS_JP.md +232 -0
- dictsqlite-2.0.8/others/BUILD_WARNINGS_EXPLANATION_JP.md +123 -0
- dictsqlite-2.0.8/others/CLIPPY_FIXES_SUMMARY.md +117 -0
- dictsqlite-2.0.8/others/COMPREHENSIVE_BENCHMARK_RESULTS.md +204 -0
- dictsqlite-2.0.8/others/COMPREHENSIVE_TEST_IMPLEMENTATION_REPORT_JP.md +296 -0
- dictsqlite-2.0.8/others/DEVELOPER_GUIDE_JP.md +1319 -0
- dictsqlite-2.0.8/others/DICTSQLITE_V2_SPECIFICATION_JP.md +1147 -0
- dictsqlite-2.0.8/others/DOCUMENTATION_INDEX_JP.md +301 -0
- dictsqlite-2.0.8/others/DOCUMENTATION_VERIFICATION_SUMMARY.md +302 -0
- dictsqlite-2.0.8/others/FIX_SUMMARY_JP.md +110 -0
- dictsqlite-2.0.8/others/GITHUB_ACTIONS_FIXES.md +156 -0
- dictsqlite-2.0.8/others/IMPLEMENTATION_COMPLETION_REPORT.md +274 -0
- dictsqlite-2.0.8/others/IMPLEMENTATION_COMPLETION_REPORT_JP.md +325 -0
- dictsqlite-2.0.8/others/IMPROVEMENT_ACTION_PLAN_JP.md +755 -0
- dictsqlite-2.0.8/others/INVESTIGATION_SUMMARY_JP.md +222 -0
- dictsqlite-2.0.8/others/ISSUE_RESPONSE_JSON_TABLE_SUPPORT_JP.md +364 -0
- dictsqlite-2.0.8/others/JSONB_TABLE_IMPLEMENTATION_SUMMARY_JP.md +316 -0
- dictsqlite-2.0.8/others/JSON_MODE_TABLE_SUPPORT_FEASIBILITY_JP.md +1585 -0
- dictsqlite-2.0.8/others/MIGRATION_GUIDE_V4.2_JP.md +927 -0
- dictsqlite-2.0.8/others/PERFORMANCE_OPTIMIZATION_GUIDE_JP.md +528 -0
- dictsqlite-2.0.8/others/PERFORMANCE_TESTING_GUIDE.md +330 -0
- dictsqlite-2.0.8/others/PERFORMANCE_TEST_IMPLEMENTATION.md +434 -0
- dictsqlite-2.0.8/others/PERFORMANCE_TEST_RESULTS.md +205 -0
- dictsqlite-2.0.8/others/PYTEST_INTEGRATION_SUMMARY.md +242 -0
- dictsqlite-2.0.8/others/PYTEST_WARNINGS_FIX.md +59 -0
- dictsqlite-2.0.8/others/QUICK_REFERENCE_JSONB_TABLE_JP.md +252 -0
- dictsqlite-2.0.8/others/README_INVESTIGATION_JP.md +149 -0
- dictsqlite-2.0.8/others/README_V4.2_JP.md +670 -0
- dictsqlite-2.0.8/others/TESTING_DOCUMENTATION_JP.md +298 -0
- dictsqlite-2.0.8/others/TEST_AND_DOCUMENTATION_REVIEW_JP.md +791 -0
- dictsqlite-2.0.8/others/TEST_COMPLETION_REPORT.md +290 -0
- dictsqlite-2.0.8/others/V4.2_IMPLEMENTATION_SUMMARY.md +369 -0
- dictsqlite-2.0.8/others/WINDOWS_PERMISSION_FIX.md +108 -0
- dictsqlite-2.0.8/pyproject.toml +40 -0
- dictsqlite-2.0.8/python/dictsqlite/__init__.py +669 -0
- dictsqlite-2.0.8/python/dictsqlite/modules/__init__.py +7 -0
- dictsqlite-2.0.8/python/dictsqlite/modules/safe_pickle.py +190 -0
- dictsqlite-2.0.8/setup.cfg +40 -0
- dictsqlite-2.0.8/src/async_ops.rs +1331 -0
- dictsqlite-2.0.8/src/cache.rs +166 -0
- dictsqlite-2.0.8/src/crypto.rs +179 -0
- dictsqlite-2.0.8/src/lib.rs +2544 -0
- dictsqlite-2.0.8/src/storage.rs +804 -0
- dictsqlite-2.0.8/src/tests_compression.rs +152 -0
- dictsqlite-2.0.8/src/tests_jsonb.rs +159 -0
- dictsqlite-2.0.8/src/tests_lru.rs +88 -0
- dictsqlite-2.0.8/src/tests_storage.rs +125 -0
- dictsqlite-2.0.8/src/tests_v6.rs +159 -0
- dictsqlite-2.0.8/test_debug.py +41 -0
- dictsqlite-2.0.8/tests/ISSUE_RESPONSE.md +234 -0
- dictsqlite-2.0.8/tests/README.md +114 -0
- dictsqlite-2.0.8/tests/README_COMPREHENSIVE_TESTS.md +237 -0
- dictsqlite-2.0.8/tests/README_NEW_COMPREHENSIVE_TESTS.md +470 -0
- dictsqlite-2.0.8/tests/TEST_DOCUMENTATION.md +258 -0
- dictsqlite-2.0.8/tests/TEST_FIXES_REPORT_JP.md +200 -0
- dictsqlite-2.0.8/tests/__init__.py +1 -0
- dictsqlite-2.0.8/tests/_check_safe_pickle.py +14 -0
- dictsqlite-2.0.8/tests/_reproduce_test.py +41 -0
- dictsqlite-2.0.8/tests/benchmark_comprehensive.py +585 -0
- dictsqlite-2.0.8/tests/conftest.py +107 -0
- dictsqlite-2.0.8/tests/test_advanced_features.py +540 -0
- dictsqlite-2.0.8/tests/test_async_awaitable.py +340 -0
- dictsqlite-2.0.8/tests/test_async_operations.py +465 -0
- dictsqlite-2.0.8/tests/test_async_persistence.py +278 -0
- dictsqlite-2.0.8/tests/test_async_table_contains.py +123 -0
- dictsqlite-2.0.8/tests/test_basic_operations.py +479 -0
- dictsqlite-2.0.8/tests/test_boundary_edge_cases.py +791 -0
- dictsqlite-2.0.8/tests/test_comprehensive_all_functions.py +1243 -0
- dictsqlite-2.0.8/tests/test_comprehensive_edge_cases.py +710 -0
- dictsqlite-2.0.8/tests/test_comprehensive_integration.py +647 -0
- dictsqlite-2.0.8/tests/test_comprehensive_stress.py +492 -0
- dictsqlite-2.0.8/tests/test_dict_compat_api.py +271 -0
- dictsqlite-2.0.8/tests/test_exhaustive_async.py +791 -0
- dictsqlite-2.0.8/tests/test_exhaustive_async_table_proxy.py +784 -0
- dictsqlite-2.0.8/tests/test_exhaustive_dictsqlite_v4.py +1124 -0
- dictsqlite-2.0.8/tests/test_exhaustive_table_proxy.py +855 -0
- dictsqlite-2.0.8/tests/test_issue_fixes.py +123 -0
- dictsqlite-2.0.8/tests/test_jsonb_table_support.py +366 -0
- dictsqlite-2.0.8/tests/test_lru_eviction.py +231 -0
- dictsqlite-2.0.8/tests/test_performance.py +367 -0
- dictsqlite-2.0.8/tests/test_persistence_modes.py +456 -0
- dictsqlite-2.0.8/tests/test_pool_size.py +135 -0
- dictsqlite-2.0.8/tests/test_return_type_validation.py +702 -0
- dictsqlite-2.0.8/tests/test_storage_modes.py +476 -0
- dictsqlite-2.0.8/tests/test_table_mode.py +1245 -0
- dictsqlite-2.0.8/tests/test_table_proxy_eq.py +315 -0
- dictsqlite-2.0.8/tests/test_table_proxy_repr.py +171 -0
- dictsqlite-2.0.8/tests/test_v4.2_comprehensive_performance.py +573 -0
- dictsqlite-2.0.8/tests/test_v4_security.py +550 -0
- dictsqlite-2.0.8/tests/test_v6_migration.py +269 -0
- dictsqlite-2.0.8/tests/test_v7_batch_async.py +430 -0
- dictsqlite-2.0.8/tests/verify_optimization_opportunities.py +403 -0
- dictsqlite-2.0.8/twine/__init__.py +54 -0
- dictsqlite-2.0.8/twine/__main__.py +54 -0
- dictsqlite-2.0.8/twine/auth.py +307 -0
- dictsqlite-2.0.8/twine/cli.py +139 -0
- dictsqlite-2.0.8/twine/commands/__init__.py +93 -0
- dictsqlite-2.0.8/twine/commands/check.py +195 -0
- dictsqlite-2.0.8/twine/commands/register.py +87 -0
- dictsqlite-2.0.8/twine/commands/upload.py +253 -0
- dictsqlite-2.0.8/twine/distribution.py +8 -0
- dictsqlite-2.0.8/twine/exceptions.py +175 -0
- dictsqlite-2.0.8/twine/package.py +403 -0
- dictsqlite-2.0.8/twine/py.typed +0 -0
- dictsqlite-2.0.8/twine/repository.py +246 -0
- dictsqlite-2.0.8/twine/sdist.py +83 -0
- dictsqlite-2.0.8/twine/settings.py +360 -0
- dictsqlite-2.0.8/twine/utils.py +387 -0
- dictsqlite-2.0.8/twine/wheel.py +81 -0
dictsqlite-2.0.8/.bandit
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# Rust build artifacts
|
|
2
|
+
target/
|
|
3
|
+
Cargo.lock
|
|
4
|
+
|
|
5
|
+
# Python artifacts
|
|
6
|
+
__pycache__/
|
|
7
|
+
*.pyc
|
|
8
|
+
*.pyo
|
|
9
|
+
*.egg-info/
|
|
10
|
+
dist/
|
|
11
|
+
build/
|
|
12
|
+
*.so
|
|
13
|
+
*.pyd
|
|
14
|
+
.venv/
|
|
15
|
+
venv/
|
|
16
|
+
|
|
17
|
+
# Test artifacts
|
|
18
|
+
.pytest_cache/
|
|
19
|
+
.coverage
|
|
20
|
+
htmlcov/
|
|
21
|
+
performance_results*.json
|
|
22
|
+
|
|
23
|
+
# IDEs
|
|
24
|
+
.vscode/
|
|
25
|
+
.idea/
|
|
26
|
+
*.swp
|
|
27
|
+
*.swo
|
|
28
|
+
|
|
29
|
+
# OS
|
|
30
|
+
.DS_Store
|
|
31
|
+
Thumbs.db
|
|
32
|
+
|
|
33
|
+
# Temporary files
|
|
34
|
+
*.tmp
|
|
35
|
+
*.bak
|
|
36
|
+
*~
|