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.
Files changed (153) hide show
  1. dictsqlite-2.0.8/.bandit +14 -0
  2. dictsqlite-2.0.8/.gitignore +36 -0
  3. dictsqlite-2.0.8/Cargo.lock +1942 -0
  4. dictsqlite-2.0.8/Cargo.toml +100 -0
  5. dictsqlite-2.0.8/PKG-INFO +119 -0
  6. dictsqlite-2.0.8/Pypi.md +99 -0
  7. dictsqlite-2.0.8/benches/ops_benchmark.rs +112 -0
  8. dictsqlite-2.0.8/benchmark/README.md +32 -0
  9. dictsqlite-2.0.8/benchmark/analyze_results.py +262 -0
  10. dictsqlite-2.0.8/benchmark/benchmark_all.py +367 -0
  11. dictsqlite-2.0.8/benchmark/benchmark_results.csv +19 -0
  12. dictsqlite-2.0.8/benchmark/images/benchmark_avg_latency.png +0 -0
  13. dictsqlite-2.0.8/benchmark/images/benchmark_by_data_size.png +0 -0
  14. dictsqlite-2.0.8/benchmark/images/benchmark_category_comparison.png +0 -0
  15. dictsqlite-2.0.8/benchmark/images/benchmark_ops_per_sec.png +0 -0
  16. dictsqlite-2.0.8/build.sh +122 -0
  17. dictsqlite-2.0.8/build_production.sh +105 -0
  18. dictsqlite-2.0.8/build_result.txt +352 -0
  19. dictsqlite-2.0.8/check_result.txt +14 -0
  20. dictsqlite-2.0.8/deny.toml +29 -0
  21. dictsqlite-2.0.8/docs/EXAMPLES_EN.md +750 -0
  22. dictsqlite-2.0.8/docs/EXAMPLES_JP.md +750 -0
  23. dictsqlite-2.0.8/docs/FIX_SUMMARY.md +157 -0
  24. dictsqlite-2.0.8/docs/INDEX.md +168 -0
  25. dictsqlite-2.0.8/docs/MIGRATION_FROM_1.8.8_EN.md +509 -0
  26. dictsqlite-2.0.8/docs/MIGRATION_FROM_1.8.8_JP.md +509 -0
  27. dictsqlite-2.0.8/docs/README_EN.md +499 -0
  28. dictsqlite-2.0.8/docs/README_JP.md +499 -0
  29. dictsqlite-2.0.8/docs/TABLE_PROXY_REPR_REPORT.md +96 -0
  30. dictsqlite-2.0.8/docs/optimization_v5/01_overview.md +36 -0
  31. dictsqlite-2.0.8/docs/optimization_v5/02_storage_engine.md +65 -0
  32. dictsqlite-2.0.8/docs/optimization_v5/03_async_layer.md +59 -0
  33. dictsqlite-2.0.8/docs/optimization_v5/04_integration.md +50 -0
  34. dictsqlite-2.0.8/docs/optimization_v5/05_verification.md +31 -0
  35. dictsqlite-2.0.8/examples/README.md +277 -0
  36. dictsqlite-2.0.8/examples/async_await_example.py +108 -0
  37. dictsqlite-2.0.8/examples/async_jsonb_table_usage.py +302 -0
  38. dictsqlite-2.0.8/examples/jsonb_table_usage_example.py +291 -0
  39. dictsqlite-2.0.8/examples/v4.2_advanced_examples.py +377 -0
  40. dictsqlite-2.0.8/examples/v4.2_basic_usage.py +328 -0
  41. dictsqlite-2.0.8/examples/v4.2_migration_example.py +304 -0
  42. dictsqlite-2.0.8/examples/v4.2_performance_examples.py +349 -0
  43. dictsqlite-2.0.8/others/ASYNC_IMPLEMENTATION_SUMMARY.md +202 -0
  44. dictsqlite-2.0.8/others/ASYNC_SUPPORT_README.md +290 -0
  45. dictsqlite-2.0.8/others/BENCHMARK_RESULTS_JP.md +232 -0
  46. dictsqlite-2.0.8/others/BUILD_WARNINGS_EXPLANATION_JP.md +123 -0
  47. dictsqlite-2.0.8/others/CLIPPY_FIXES_SUMMARY.md +117 -0
  48. dictsqlite-2.0.8/others/COMPREHENSIVE_BENCHMARK_RESULTS.md +204 -0
  49. dictsqlite-2.0.8/others/COMPREHENSIVE_TEST_IMPLEMENTATION_REPORT_JP.md +296 -0
  50. dictsqlite-2.0.8/others/DEVELOPER_GUIDE_JP.md +1319 -0
  51. dictsqlite-2.0.8/others/DICTSQLITE_V2_SPECIFICATION_JP.md +1147 -0
  52. dictsqlite-2.0.8/others/DOCUMENTATION_INDEX_JP.md +301 -0
  53. dictsqlite-2.0.8/others/DOCUMENTATION_VERIFICATION_SUMMARY.md +302 -0
  54. dictsqlite-2.0.8/others/FIX_SUMMARY_JP.md +110 -0
  55. dictsqlite-2.0.8/others/GITHUB_ACTIONS_FIXES.md +156 -0
  56. dictsqlite-2.0.8/others/IMPLEMENTATION_COMPLETION_REPORT.md +274 -0
  57. dictsqlite-2.0.8/others/IMPLEMENTATION_COMPLETION_REPORT_JP.md +325 -0
  58. dictsqlite-2.0.8/others/IMPROVEMENT_ACTION_PLAN_JP.md +755 -0
  59. dictsqlite-2.0.8/others/INVESTIGATION_SUMMARY_JP.md +222 -0
  60. dictsqlite-2.0.8/others/ISSUE_RESPONSE_JSON_TABLE_SUPPORT_JP.md +364 -0
  61. dictsqlite-2.0.8/others/JSONB_TABLE_IMPLEMENTATION_SUMMARY_JP.md +316 -0
  62. dictsqlite-2.0.8/others/JSON_MODE_TABLE_SUPPORT_FEASIBILITY_JP.md +1585 -0
  63. dictsqlite-2.0.8/others/MIGRATION_GUIDE_V4.2_JP.md +927 -0
  64. dictsqlite-2.0.8/others/PERFORMANCE_OPTIMIZATION_GUIDE_JP.md +528 -0
  65. dictsqlite-2.0.8/others/PERFORMANCE_TESTING_GUIDE.md +330 -0
  66. dictsqlite-2.0.8/others/PERFORMANCE_TEST_IMPLEMENTATION.md +434 -0
  67. dictsqlite-2.0.8/others/PERFORMANCE_TEST_RESULTS.md +205 -0
  68. dictsqlite-2.0.8/others/PYTEST_INTEGRATION_SUMMARY.md +242 -0
  69. dictsqlite-2.0.8/others/PYTEST_WARNINGS_FIX.md +59 -0
  70. dictsqlite-2.0.8/others/QUICK_REFERENCE_JSONB_TABLE_JP.md +252 -0
  71. dictsqlite-2.0.8/others/README_INVESTIGATION_JP.md +149 -0
  72. dictsqlite-2.0.8/others/README_V4.2_JP.md +670 -0
  73. dictsqlite-2.0.8/others/TESTING_DOCUMENTATION_JP.md +298 -0
  74. dictsqlite-2.0.8/others/TEST_AND_DOCUMENTATION_REVIEW_JP.md +791 -0
  75. dictsqlite-2.0.8/others/TEST_COMPLETION_REPORT.md +290 -0
  76. dictsqlite-2.0.8/others/V4.2_IMPLEMENTATION_SUMMARY.md +369 -0
  77. dictsqlite-2.0.8/others/WINDOWS_PERMISSION_FIX.md +108 -0
  78. dictsqlite-2.0.8/pyproject.toml +40 -0
  79. dictsqlite-2.0.8/python/dictsqlite/__init__.py +669 -0
  80. dictsqlite-2.0.8/python/dictsqlite/modules/__init__.py +7 -0
  81. dictsqlite-2.0.8/python/dictsqlite/modules/safe_pickle.py +190 -0
  82. dictsqlite-2.0.8/setup.cfg +40 -0
  83. dictsqlite-2.0.8/src/async_ops.rs +1331 -0
  84. dictsqlite-2.0.8/src/cache.rs +166 -0
  85. dictsqlite-2.0.8/src/crypto.rs +179 -0
  86. dictsqlite-2.0.8/src/lib.rs +2544 -0
  87. dictsqlite-2.0.8/src/storage.rs +804 -0
  88. dictsqlite-2.0.8/src/tests_compression.rs +152 -0
  89. dictsqlite-2.0.8/src/tests_jsonb.rs +159 -0
  90. dictsqlite-2.0.8/src/tests_lru.rs +88 -0
  91. dictsqlite-2.0.8/src/tests_storage.rs +125 -0
  92. dictsqlite-2.0.8/src/tests_v6.rs +159 -0
  93. dictsqlite-2.0.8/test_debug.py +41 -0
  94. dictsqlite-2.0.8/tests/ISSUE_RESPONSE.md +234 -0
  95. dictsqlite-2.0.8/tests/README.md +114 -0
  96. dictsqlite-2.0.8/tests/README_COMPREHENSIVE_TESTS.md +237 -0
  97. dictsqlite-2.0.8/tests/README_NEW_COMPREHENSIVE_TESTS.md +470 -0
  98. dictsqlite-2.0.8/tests/TEST_DOCUMENTATION.md +258 -0
  99. dictsqlite-2.0.8/tests/TEST_FIXES_REPORT_JP.md +200 -0
  100. dictsqlite-2.0.8/tests/__init__.py +1 -0
  101. dictsqlite-2.0.8/tests/_check_safe_pickle.py +14 -0
  102. dictsqlite-2.0.8/tests/_reproduce_test.py +41 -0
  103. dictsqlite-2.0.8/tests/benchmark_comprehensive.py +585 -0
  104. dictsqlite-2.0.8/tests/conftest.py +107 -0
  105. dictsqlite-2.0.8/tests/test_advanced_features.py +540 -0
  106. dictsqlite-2.0.8/tests/test_async_awaitable.py +340 -0
  107. dictsqlite-2.0.8/tests/test_async_operations.py +465 -0
  108. dictsqlite-2.0.8/tests/test_async_persistence.py +278 -0
  109. dictsqlite-2.0.8/tests/test_async_table_contains.py +123 -0
  110. dictsqlite-2.0.8/tests/test_basic_operations.py +479 -0
  111. dictsqlite-2.0.8/tests/test_boundary_edge_cases.py +791 -0
  112. dictsqlite-2.0.8/tests/test_comprehensive_all_functions.py +1243 -0
  113. dictsqlite-2.0.8/tests/test_comprehensive_edge_cases.py +710 -0
  114. dictsqlite-2.0.8/tests/test_comprehensive_integration.py +647 -0
  115. dictsqlite-2.0.8/tests/test_comprehensive_stress.py +492 -0
  116. dictsqlite-2.0.8/tests/test_dict_compat_api.py +271 -0
  117. dictsqlite-2.0.8/tests/test_exhaustive_async.py +791 -0
  118. dictsqlite-2.0.8/tests/test_exhaustive_async_table_proxy.py +784 -0
  119. dictsqlite-2.0.8/tests/test_exhaustive_dictsqlite_v4.py +1124 -0
  120. dictsqlite-2.0.8/tests/test_exhaustive_table_proxy.py +855 -0
  121. dictsqlite-2.0.8/tests/test_issue_fixes.py +123 -0
  122. dictsqlite-2.0.8/tests/test_jsonb_table_support.py +366 -0
  123. dictsqlite-2.0.8/tests/test_lru_eviction.py +231 -0
  124. dictsqlite-2.0.8/tests/test_performance.py +367 -0
  125. dictsqlite-2.0.8/tests/test_persistence_modes.py +456 -0
  126. dictsqlite-2.0.8/tests/test_pool_size.py +135 -0
  127. dictsqlite-2.0.8/tests/test_return_type_validation.py +702 -0
  128. dictsqlite-2.0.8/tests/test_storage_modes.py +476 -0
  129. dictsqlite-2.0.8/tests/test_table_mode.py +1245 -0
  130. dictsqlite-2.0.8/tests/test_table_proxy_eq.py +315 -0
  131. dictsqlite-2.0.8/tests/test_table_proxy_repr.py +171 -0
  132. dictsqlite-2.0.8/tests/test_v4.2_comprehensive_performance.py +573 -0
  133. dictsqlite-2.0.8/tests/test_v4_security.py +550 -0
  134. dictsqlite-2.0.8/tests/test_v6_migration.py +269 -0
  135. dictsqlite-2.0.8/tests/test_v7_batch_async.py +430 -0
  136. dictsqlite-2.0.8/tests/verify_optimization_opportunities.py +403 -0
  137. dictsqlite-2.0.8/twine/__init__.py +54 -0
  138. dictsqlite-2.0.8/twine/__main__.py +54 -0
  139. dictsqlite-2.0.8/twine/auth.py +307 -0
  140. dictsqlite-2.0.8/twine/cli.py +139 -0
  141. dictsqlite-2.0.8/twine/commands/__init__.py +93 -0
  142. dictsqlite-2.0.8/twine/commands/check.py +195 -0
  143. dictsqlite-2.0.8/twine/commands/register.py +87 -0
  144. dictsqlite-2.0.8/twine/commands/upload.py +253 -0
  145. dictsqlite-2.0.8/twine/distribution.py +8 -0
  146. dictsqlite-2.0.8/twine/exceptions.py +175 -0
  147. dictsqlite-2.0.8/twine/package.py +403 -0
  148. dictsqlite-2.0.8/twine/py.typed +0 -0
  149. dictsqlite-2.0.8/twine/repository.py +246 -0
  150. dictsqlite-2.0.8/twine/sdist.py +83 -0
  151. dictsqlite-2.0.8/twine/settings.py +360 -0
  152. dictsqlite-2.0.8/twine/utils.py +387 -0
  153. dictsqlite-2.0.8/twine/wheel.py +81 -0
@@ -0,0 +1,14 @@
1
+ # Bandit configuration for DictSQLite v2
2
+ # Skip B101 (assert_used) in test files as asserts are the standard for pytest
3
+
4
+ skips: ['B101']
5
+
6
+ exclude_dirs:
7
+ - /benches
8
+ - /docs
9
+ - /examples
10
+ - /src
11
+ - /target
12
+ - /build
13
+ - /.git
14
+
@@ -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
+ *~