classifyre-cli 0.4.43__tar.gz → 0.4.44__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 (231) hide show
  1. classifyre_cli-0.4.44/.turbo/turbo-build.log +3 -0
  2. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/PKG-INFO +1 -1
  3. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/package.json +1 -1
  4. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/pyproject.toml +1 -1
  5. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/uv.lock +121 -121
  6. classifyre_cli-0.4.43/.turbo/turbo-build.log +0 -3
  7. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/.gitignore +0 -0
  8. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/.python-version +0 -0
  9. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/README.md +0 -0
  10. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/main.py +0 -0
  11. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/scripts/generate_models.py +0 -0
  12. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/__init__.py +0 -0
  13. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/config.py +0 -0
  14. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/__init__.py +0 -0
  15. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/base.py +0 -0
  16. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/broken_links/__init__.py +0 -0
  17. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/broken_links/detector.py +0 -0
  18. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/config.py +0 -0
  19. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/content/__init__.py +0 -0
  20. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/__init__.py +0 -0
  21. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/detector.py +0 -0
  22. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/extractor.py +0 -0
  23. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/runners/__init__.py +0 -0
  24. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/runners/_base.py +0 -0
  25. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/runners/_factory.py +0 -0
  26. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/runners/_feature_extraction.py +0 -0
  27. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/runners/_gliner2.py +0 -0
  28. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/runners/_image_classification.py +0 -0
  29. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/runners/_llm.py +0 -0
  30. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/runners/_object_detection.py +0 -0
  31. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/runners/_regex.py +0 -0
  32. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/runners/_text_classification.py +0 -0
  33. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/custom/trainer.py +0 -0
  34. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/dependencies.py +0 -0
  35. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/pii/__init__.py +0 -0
  36. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/pii/detector.py +0 -0
  37. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/secrets/__init__.py +0 -0
  38. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/secrets/detector.py +0 -0
  39. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/threat/__init__.py +0 -0
  40. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/threat/code_security_detector.py +0 -0
  41. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/detectors/threat/yara_detector.py +0 -0
  42. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/main.py +0 -0
  43. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/models/generated_detectors.py +0 -0
  44. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/models/generated_input.py +0 -0
  45. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/models/generated_single_asset_scan_results.py +0 -0
  46. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/outputs/__init__.py +0 -0
  47. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/outputs/base.py +0 -0
  48. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/outputs/console.py +0 -0
  49. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/outputs/factory.py +0 -0
  50. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/outputs/file.py +0 -0
  51. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/outputs/rest.py +0 -0
  52. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/pipeline/__init__.py +0 -0
  53. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/pipeline/content_provider.py +0 -0
  54. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/pipeline/detector_pipeline.py +0 -0
  55. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/pipeline/parsed_content_provider.py +0 -0
  56. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/pipeline/worker_pool.py +0 -0
  57. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sandbox/__init__.py +0 -0
  58. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sandbox/runner.py +0 -0
  59. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/__init__.py +0 -0
  60. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/asset_metadata.py +0 -0
  61. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/atlassian_common.py +0 -0
  62. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/azure_blob_storage/__init__.py +0 -0
  63. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/azure_blob_storage/source.py +0 -0
  64. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/base.py +0 -0
  65. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/confluence/__init__.py +0 -0
  66. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/confluence/source.py +0 -0
  67. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/databricks/__init__.py +0 -0
  68. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/databricks/source.py +0 -0
  69. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/delta_lake/__init__.py +0 -0
  70. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/delta_lake/source.py +0 -0
  71. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/dependencies.py +0 -0
  72. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/elasticsearch/__init__.py +0 -0
  73. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/elasticsearch/source.py +0 -0
  74. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/email/__init__.py +0 -0
  75. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/email/source.py +0 -0
  76. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/google_cloud_storage/__init__.py +0 -0
  77. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/google_cloud_storage/source.py +0 -0
  78. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/hive/__init__.py +0 -0
  79. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/hive/source.py +0 -0
  80. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/iceberg/__init__.py +0 -0
  81. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/iceberg/source.py +0 -0
  82. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/jira/__init__.py +0 -0
  83. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/jira/source.py +0 -0
  84. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/kafka/__init__.py +0 -0
  85. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/kafka/source.py +0 -0
  86. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/lakehouse_base.py +0 -0
  87. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/meilisearch/__init__.py +0 -0
  88. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/meilisearch/source.py +0 -0
  89. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/mongodb/__init__.py +0 -0
  90. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/mongodb/source.py +0 -0
  91. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/mssql/__init__.py +0 -0
  92. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/mssql/source.py +0 -0
  93. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/mysql/__init__.py +0 -0
  94. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/mysql/source.py +0 -0
  95. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/neo4j/__init__.py +0 -0
  96. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/neo4j/source.py +0 -0
  97. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/notion/__init__.py +0 -0
  98. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/notion/client.py +0 -0
  99. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/notion/source.py +0 -0
  100. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/object_storage/base.py +0 -0
  101. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/opensearch/__init__.py +0 -0
  102. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/opensearch/source.py +0 -0
  103. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/oracle/__init__.py +0 -0
  104. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/oracle/source.py +0 -0
  105. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/postgresql/__init__.py +0 -0
  106. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/postgresql/source.py +0 -0
  107. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/powerbi/__init__.py +0 -0
  108. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/powerbi/source.py +0 -0
  109. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/recipe_normalizer.py +0 -0
  110. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/s3_client.py +0 -0
  111. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/s3_compatible_storage/README.md +0 -0
  112. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/s3_compatible_storage/__init__.py +0 -0
  113. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/s3_compatible_storage/source.py +0 -0
  114. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/search_engine_base.py +0 -0
  115. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/servicedesk/__init__.py +0 -0
  116. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/servicedesk/source.py +0 -0
  117. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/slack/__init__.py +0 -0
  118. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/slack/source.py +0 -0
  119. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/snowflake/__init__.py +0 -0
  120. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/snowflake/source.py +0 -0
  121. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/sqlite/__init__.py +0 -0
  122. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/sqlite/source.py +0 -0
  123. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/tableau/__init__.py +0 -0
  124. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/tableau/source.py +0 -0
  125. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/tabular_base.py +0 -0
  126. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/tabular_utils.py +0 -0
  127. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/wordpress/__init__.py +0 -0
  128. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/wordpress/source.py +0 -0
  129. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/youtube/__init__.py +0 -0
  130. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/sources/youtube/source.py +0 -0
  131. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/telemetry.py +0 -0
  132. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/utils/__init__.py +0 -0
  133. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/utils/content_extraction.py +0 -0
  134. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/utils/dependency_groups.py +0 -0
  135. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/utils/embedded_images.py +0 -0
  136. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/utils/file_metadata.py +0 -0
  137. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/utils/file_parser.py +0 -0
  138. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/utils/file_to_images.py +0 -0
  139. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/utils/hashing.py +0 -0
  140. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/utils/resources.py +0 -0
  141. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/utils/transcription.py +0 -0
  142. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/utils/uv_sync.py +0 -0
  143. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/src/utils/validation.py +0 -0
  144. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/__init__.py +0 -0
  145. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/_lakehouse_fakes.py +0 -0
  146. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/conftest.py +0 -0
  147. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/__init__.py +0 -0
  148. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/broken_links/test_broken_links_detector.py +0 -0
  149. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/conftest.py +0 -0
  150. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/content/__init__.py +0 -0
  151. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/custom/__init__.py +0 -0
  152. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/custom/conftest.py +0 -0
  153. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/custom/test_invoice_extraction.py +0 -0
  154. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/custom/test_llm_runner.py +0 -0
  155. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/custom/test_pipeline_integration.py +0 -0
  156. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/custom/test_regex_runner.py +0 -0
  157. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/custom/test_transformer_runners.py +0 -0
  158. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/pii/__init__.py +0 -0
  159. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/pii/conftest.py +0 -0
  160. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/pii/sample_invoice.pdf +0 -0
  161. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/pii/test_pii_detector.py +0 -0
  162. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/pii/test_pii_detector_extended.py +0 -0
  163. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/secrets/__init__.py +0 -0
  164. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/secrets/test_secrets_detector.py +0 -0
  165. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/secrets/test_secrets_detector_extended.py +0 -0
  166. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/test_base_detector.py +0 -0
  167. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/test_custom_detector_examples_runtime.py +0 -0
  168. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/test_detector_catalog_commercial.py +0 -0
  169. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/test_detector_pipeline_types.py +0 -0
  170. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/test_detector_schema_examples.py +0 -0
  171. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/test_detector_types.py +0 -0
  172. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/test_phase2_detectors.py +0 -0
  173. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/test_registry.py +0 -0
  174. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/threat/__init__.py +0 -0
  175. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/threat/test_code_security_detector.py +0 -0
  176. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/detectors/threat/test_yara_detector.py +0 -0
  177. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/integration/test_wordpress_broken_links_detector.py +0 -0
  178. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/integration/test_wordpress_links_assets.py +0 -0
  179. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/pipeline/test_detector_pipeline.py +0 -0
  180. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/pipeline/test_worker_pool.py +0 -0
  181. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_assets_metadata_catalog.py +0 -0
  182. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_azure_blob_storage_source.py +0 -0
  183. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_base_source_attachment.py +0 -0
  184. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_base_source_sampling.py +0 -0
  185. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_config.py +0 -0
  186. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_confluence_source.py +0 -0
  187. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_custom_extractor.py +0 -0
  188. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_databricks_source.py +0 -0
  189. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_delta_lake_source.py +0 -0
  190. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_dependency_groups.py +0 -0
  191. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_elasticsearch_source.py +0 -0
  192. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_email_source.py +0 -0
  193. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_google_cloud_storage_source.py +0 -0
  194. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_hashing.py +0 -0
  195. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_hive_source.py +0 -0
  196. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_iceberg_source.py +0 -0
  197. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_jira_source.py +0 -0
  198. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_kafka_source.py +0 -0
  199. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_meilisearch_source.py +0 -0
  200. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_mongodb_source.py +0 -0
  201. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_mssql_source.py +0 -0
  202. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_mysql_source.py +0 -0
  203. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_neo4j_source.py +0 -0
  204. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_notion_source.py +0 -0
  205. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_opensearch_source.py +0 -0
  206. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_oracle_source.py +0 -0
  207. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_outputs.py +0 -0
  208. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_postgresql_source.py +0 -0
  209. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_powerbi_source.py +0 -0
  210. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_recipe_normalizer.py +0 -0
  211. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_s3_compatible_storage_source.py +0 -0
  212. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_sampling_automatic.py +0 -0
  213. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_sandbox_runner.py +0 -0
  214. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_servicedesk_source.py +0 -0
  215. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_slack_source.py +0 -0
  216. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_snowflake_source.py +0 -0
  217. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_source_dependency_groups.py +0 -0
  218. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_sqlite_source.py +0 -0
  219. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_tableau_source.py +0 -0
  220. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_tabular_automatic_sampling.py +0 -0
  221. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_tabular_utils.py +0 -0
  222. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_uv_sync.py +0 -0
  223. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_wordpress_source.py +0 -0
  224. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_youtube_source.py +0 -0
  225. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/test_youtube_source_integration.py +0 -0
  226. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/utils/test_content_extraction.py +0 -0
  227. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/utils/test_embedded_images.py +0 -0
  228. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/utils/test_file_metadata.py +0 -0
  229. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/utils/test_file_parser.py +0 -0
  230. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/utils/test_file_to_images.py +0 -0
  231. {classifyre_cli-0.4.43 → classifyre_cli-0.4.44}/tests/utils/test_transcription.py +0 -0
@@ -0,0 +1,3 @@
1
+ $ uv sync
2
+ Resolved 276 packages in 202ms
3
+ Checked 51 packages in 3ms
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: classifyre-cli
3
- Version: 0.4.43
3
+ Version: 0.4.44
4
4
  Summary: Classifyre CLI — scan and classify unstructured data sources
5
5
  License: MIT
6
6
  Keywords: data,ingestion,metadata,pii,secrets,unstructured
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@classifyre/cli",
3
- "version": "0.4.43",
3
+ "version": "0.4.44",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "build": "uv sync",
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "classifyre-cli"
3
- version = "0.4.43"
3
+ version = "0.4.44"
4
4
  description = "Classifyre CLI — scan and classify unstructured data sources"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -489,30 +489,30 @@ wheels = [
489
489
 
490
490
  [[package]]
491
491
  name = "boto3"
492
- version = "1.43.45"
492
+ version = "1.43.46"
493
493
  source = { registry = "https://pypi.org/simple" }
494
494
  dependencies = [
495
495
  { name = "botocore" },
496
496
  { name = "jmespath" },
497
497
  { name = "s3transfer" },
498
498
  ]
499
- sdist = { url = "https://files.pythonhosted.org/packages/cb/c0/bcbe0a924ed89f8982a87727cd0f88a73397fa423a60df17ae76aa013514/boto3-1.43.45.tar.gz", hash = "sha256:65e0ae541a9948ac41b706d5c7165d96ebf155812562b6518b862be027ee7347", size = 112666, upload-time = "2026-07-09T19:30:06.944Z" }
499
+ sdist = { url = "https://files.pythonhosted.org/packages/f2/e7/976bf3dfe0aa5d7f31bec2f2cf57c79641620c910a39bc843a237aa9592d/boto3-1.43.46.tar.gz", hash = "sha256:66c0d943b049a46a492ec4ec2ebe73c930b1842c7137bee83aad6d93e95d4d96", size = 112654, upload-time = "2026-07-10T19:32:12.498Z" }
500
500
  wheels = [
501
- { url = "https://files.pythonhosted.org/packages/d0/cf/0d7d1e537d301cf0d079fa4a0765c9febf0eb74d65c115cababa6368c1b3/boto3-1.43.45-py3-none-any.whl", hash = "sha256:bb076647526c491ce75cab896543afcda5b81c97d3f8e8da08a033fc1ddb7429", size = 140031, upload-time = "2026-07-09T19:30:04.87Z" },
501
+ { url = "https://files.pythonhosted.org/packages/ef/1d/c52e66ff32ba7911664e6c4c2ac62e1c6d2d1e7550c7ac185d3f4b70a8a4/boto3-1.43.46-py3-none-any.whl", hash = "sha256:69453e2c1bcb9fd9806527ab99950cacfc2826cb0dce9a3a0414d19270c06c3c", size = 140031, upload-time = "2026-07-10T19:32:11.129Z" },
502
502
  ]
503
503
 
504
504
  [[package]]
505
505
  name = "botocore"
506
- version = "1.43.45"
506
+ version = "1.43.46"
507
507
  source = { registry = "https://pypi.org/simple" }
508
508
  dependencies = [
509
509
  { name = "jmespath" },
510
510
  { name = "python-dateutil" },
511
511
  { name = "urllib3" },
512
512
  ]
513
- sdist = { url = "https://files.pythonhosted.org/packages/25/fa/fb07ee4025ec257ff7b45d40411a922c86da3a4eaa98783da74404071d99/botocore-1.43.45.tar.gz", hash = "sha256:a2da80ff3caa2873769b9a32ae5f1fb18b3571ab63a981896639955611ca01e6", size = 15689068, upload-time = "2026-07-09T19:29:55.584Z" }
513
+ sdist = { url = "https://files.pythonhosted.org/packages/7d/f1/1917891851ac5ac09bb9f4862b8fc9252a009d7c24e8688bb67e4383d9e7/botocore-1.43.46.tar.gz", hash = "sha256:59f2e1ac3cdc66d191cae91c0804bc41847ce817dc8147cf43eaada8f76a5533", size = 15694635, upload-time = "2026-07-10T19:32:00.437Z" }
514
514
  wheels = [
515
- { url = "https://files.pythonhosted.org/packages/0e/a5/ac3ca5d2d42456eb497a4aafc6b1b15502b0817299ca8fc7c9bd7969c301/botocore-1.43.45-py3-none-any.whl", hash = "sha256:a04871d814124e65daf429fb99640def23b8c4d3edc6438603b31f11116d7a67", size = 15376233, upload-time = "2026-07-09T19:29:52.312Z" },
515
+ { url = "https://files.pythonhosted.org/packages/0e/f2/4bd8f2f419088feb3ce55f0ca91040ff902f402edfd197450b20a2e1d533/botocore-1.43.46-py3-none-any.whl", hash = "sha256:cb673891e623ae6e6a1bf24d94ef169504f3eb02584adb5d5bee2f6aae819b60", size = 15380350, upload-time = "2026-07-10T19:31:57.616Z" },
516
516
  ]
517
517
 
518
518
  [[package]]
@@ -721,7 +721,7 @@ wheels = [
721
721
 
722
722
  [[package]]
723
723
  name = "classifyre-cli"
724
- version = "0.4.43"
724
+ version = "0.4.44"
725
725
  source = { editable = "." }
726
726
  dependencies = [
727
727
  { name = "beautifulsoup4" },
@@ -883,7 +883,7 @@ neo4j = [
883
883
  ocr = [
884
884
  { name = "chardet" },
885
885
  { name = "docling", version = "2.99.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'darwin'" },
886
- { name = "docling", version = "2.111.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin'" },
886
+ { name = "docling", version = "2.112.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin'" },
887
887
  { name = "duckdb" },
888
888
  { name = "filetype" },
889
889
  { name = "openpyxl" },
@@ -1151,7 +1151,7 @@ youtube = [
1151
1151
 
1152
1152
  [[package]]
1153
1153
  name = "classifyre-schemas"
1154
- version = "0.4.43"
1154
+ version = "0.4.44"
1155
1155
  source = { editable = "../../packages/schemas" }
1156
1156
  dependencies = [
1157
1157
  { name = "fastjsonschema" },
@@ -1554,7 +1554,7 @@ wheels = [
1554
1554
 
1555
1555
  [[package]]
1556
1556
  name = "docling"
1557
- version = "2.111.0"
1557
+ version = "2.112.0"
1558
1558
  source = { registry = "https://pypi.org/simple" }
1559
1559
  resolution-markers = [
1560
1560
  "python_full_version >= '3.15' and sys_platform == 'linux'",
@@ -1575,11 +1575,11 @@ resolution-markers = [
1575
1575
  "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1576
1576
  ]
1577
1577
  dependencies = [
1578
- { name = "docling-slim", version = "2.111.0", source = { registry = "https://pypi.org/simple" }, extra = ["standard"] },
1578
+ { name = "docling-slim", version = "2.112.0", source = { registry = "https://pypi.org/simple" }, extra = ["standard"] },
1579
1579
  ]
1580
- sdist = { url = "https://files.pythonhosted.org/packages/74/36/19e52116628a888b05c3861997e16ab81d86baa661b819b026b48a1c4afa/docling-2.111.0.tar.gz", hash = "sha256:c8fdbf7e456cc0918dad117351debf9f314bfe8888f62fc4ec760a97824f75d2", size = 8956, upload-time = "2026-07-08T11:26:32.71Z" }
1580
+ sdist = { url = "https://files.pythonhosted.org/packages/73/95/58c86038af4ae8d67c832a6d5e8752a2228d5f98a45a7923d978cf5caa1f/docling-2.112.0.tar.gz", hash = "sha256:348266f8ea4e57178e43f5d6aa52b608b9c7bbcb2f93e601f1787c8bcbac6649", size = 8956, upload-time = "2026-07-11T04:30:36.605Z" }
1581
1581
  wheels = [
1582
- { url = "https://files.pythonhosted.org/packages/e5/85/e8034dabd04698ed8c69b4ecf1e755ec66fddbc2ea88e49e9a321fc8f5d4/docling-2.111.0-py3-none-any.whl", hash = "sha256:6bc7f3bcd881f0a1c2a7aa85fe2021c2f33878601e84e730858b78012104d590", size = 5118, upload-time = "2026-07-08T11:26:31.389Z" },
1582
+ { url = "https://files.pythonhosted.org/packages/dd/df/4566b2c2cdf26401f6845957fcfc26748fae7ad49a073526c11364a90dca/docling-2.112.0-py3-none-any.whl", hash = "sha256:d970d787e32bd2aa8a23bb481d70004b9331d8a6f3b2c458b387c63a5b9341ef", size = 5118, upload-time = "2026-07-11T04:30:35.327Z" },
1583
1583
  ]
1584
1584
 
1585
1585
  [[package]]
@@ -1774,7 +1774,7 @@ wheels = [
1774
1774
 
1775
1775
  [[package]]
1776
1776
  name = "docling-parse"
1777
- version = "7.7.0"
1777
+ version = "7.8.0"
1778
1778
  source = { registry = "https://pypi.org/simple" }
1779
1779
  resolution-markers = [
1780
1780
  "python_full_version >= '3.15' and sys_platform == 'linux'",
@@ -1800,20 +1800,20 @@ dependencies = [
1800
1800
  { name = "pydantic" },
1801
1801
  { name = "pywin32", marker = "sys_platform == 'win32'" },
1802
1802
  ]
1803
- sdist = { url = "https://files.pythonhosted.org/packages/76/8c/2c09ba43e4da19b40384200d5317a0ab210440acfc5c4198db488f143de3/docling_parse-7.7.0.tar.gz", hash = "sha256:681da07e5355cac3d76f2aa046513a2d0ff7fde32352da858f480c5c0feead41", size = 6748991, upload-time = "2026-07-08T05:58:24.315Z" }
1803
+ sdist = { url = "https://files.pythonhosted.org/packages/23/3f/7fa6749a3c89ae9ca7586718e9c2f1e42ce92a9397a4f751eda214064081/docling_parse-7.8.0.tar.gz", hash = "sha256:af99bd764835a308078764d04b99c4eeec5b519a854e715cbf56d2ccb2560891", size = 6754332, upload-time = "2026-07-10T14:43:41.946Z" }
1804
1804
  wheels = [
1805
- { url = "https://files.pythonhosted.org/packages/f0/c7/1b4e95621dcfaeb53ddc320265d4832d78f22a8aad320442a86a5df550aa/docling_parse-7.7.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bd36c9a881e48b0e2b9bc72f7973836ba057d39e46639e7e6fefc774c03bb7ad", size = 10298221, upload-time = "2026-07-08T05:57:55.741Z" },
1806
- { url = "https://files.pythonhosted.org/packages/b9/19/54fdb0f1a9447bd9dd97e222115032e4d0fd7f4aece2468d4b948664d331/docling_parse-7.7.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:47a4f35f7411c8197227c396a58a01b5e49ddbdf921ed4985dd102cef774c434", size = 10708358, upload-time = "2026-07-08T05:57:58.502Z" },
1807
- { url = "https://files.pythonhosted.org/packages/8f/b5/98017bf39acc89071533d115d18d356d5887b0546a8a243e128543e52a01/docling_parse-7.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:513e32052113270edf453dd85a8acf723ae70103a4962ff592ca30d12e01b834", size = 11454323, upload-time = "2026-07-08T05:58:00.673Z" },
1808
- { url = "https://files.pythonhosted.org/packages/d8/2d/2927d2731dee3bc2ed2e908d6f509a298e734a85a206866e738b9778ebde/docling_parse-7.7.0-cp312-cp312-win_arm64.whl", hash = "sha256:5a694577da704c38da3a9ea3179cffc6d25b0b9da5846e93c0d8b0e18361a702", size = 8865170, upload-time = "2026-07-08T05:58:02.626Z" },
1809
- { url = "https://files.pythonhosted.org/packages/f5/87/7c16a91eb769e929cef8b88f2a7ef04580fc64c75d439150717885bc35e5/docling_parse-7.7.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7d6af4faacbfd5812f2c04416b93ccfa5c930d8ce26797abd1642f2b6ca03222", size = 10298088, upload-time = "2026-07-08T05:58:06.22Z" },
1810
- { url = "https://files.pythonhosted.org/packages/4f/44/8fe989bc237241358a932b01abacd647942abd4bf43b92120830905ec509/docling_parse-7.7.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f0817ce4bafd1229eac90881b98be37875017df303568bda143cbe814f9fd07b", size = 10708369, upload-time = "2026-07-08T05:58:08.253Z" },
1811
- { url = "https://files.pythonhosted.org/packages/ab/6a/948ed0ea6ffed228c0a52cea769b93a6fe9a4a79a46dce0c32e844781045/docling_parse-7.7.0-cp313-cp313-win_amd64.whl", hash = "sha256:d641348410db9cd16fb703fec8e1f34dfe52024dcf700284010eaf9219822fca", size = 11454345, upload-time = "2026-07-08T05:58:10.103Z" },
1812
- { url = "https://files.pythonhosted.org/packages/32/6a/a337d40942549a89a23e597abd316b8dbbf8f24d3f5e065982a0023ef788/docling_parse-7.7.0-cp313-cp313-win_arm64.whl", hash = "sha256:02181d3882f11624dc16373d7c4439c3d3eb1679928ad958a6779b5bd25ed1a4", size = 8865187, upload-time = "2026-07-08T05:58:12.216Z" },
1813
- { url = "https://files.pythonhosted.org/packages/ee/3b/39a664492ca8dbe2dec24970eb8cf207c6d454bc8f6a5132fd576d73a8b7/docling_parse-7.7.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3d8d30b6267e9a7de13c3d823e624c10bd99fd569b8a825e5dbfb7ff6d8413e2", size = 10298153, upload-time = "2026-07-08T05:58:16.181Z" },
1814
- { url = "https://files.pythonhosted.org/packages/c1/f7/09405e1be37e552cefed696208486449da48178346b824d2231d666c9132/docling_parse-7.7.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8181d881aa3e4c51205fee997121405c32dcf640e7a4ccd6a984f1f1d572e29e", size = 10708343, upload-time = "2026-07-08T05:58:17.962Z" },
1815
- { url = "https://files.pythonhosted.org/packages/43/56/2792e66edfcef084511713a33f3c0191fbcc1ba5d70c9aa8020ce5898cc1/docling_parse-7.7.0-cp314-cp314-win_amd64.whl", hash = "sha256:f6aa9ef8f208495a1e459be963c078012eb06997d3052b19a9b14704eed0986b", size = 11880065, upload-time = "2026-07-08T05:58:19.884Z" },
1816
- { url = "https://files.pythonhosted.org/packages/09/a3/0c1da37a5024d51951c296a3517c3bc1122f9cb1fcf408f25e5e85b8ef76/docling_parse-7.7.0-cp314-cp314-win_arm64.whl", hash = "sha256:757f43ffc851011d7beb03fcd69094a2632f9ceffd30f675f5dda6bd901d5db1", size = 9224663, upload-time = "2026-07-08T05:58:21.854Z" },
1805
+ { url = "https://files.pythonhosted.org/packages/80/ec/87c942951b5c903063a4b823db403fd7a819e56ee57822712d7134ff3450/docling_parse-7.8.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:63d82a7c281223680bbeecbb8f3b80cffe867264e03dd08d838e414528837b47", size = 10305254, upload-time = "2026-07-10T14:43:14.268Z" },
1806
+ { url = "https://files.pythonhosted.org/packages/97/e3/240a93cd9bfcdc693e7911ac961d7ca478356086667a450b63173670623a/docling_parse-7.8.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1964530a82b0a70bec36880c636777a4f984f4176680803bc9f59be98ff93cb3", size = 10715577, upload-time = "2026-07-10T14:43:16.134Z" },
1807
+ { url = "https://files.pythonhosted.org/packages/b8/f6/e5560ad4eb8897723ab4f6aeabe3870b77e5f2497004624ffca88ae872d5/docling_parse-7.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:a12f5d162077f37d3914531c3d0f4f8046fb054da08c854f316cf2177255088e", size = 11464300, upload-time = "2026-07-10T14:43:18.043Z" },
1808
+ { url = "https://files.pythonhosted.org/packages/c7/c0/bbf192d26215172cbb08db2c6d9afb938d8591706fac12ff902bacdabc32/docling_parse-7.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:92a7b0db943f3800a60a1397e9fc6ce3e49a01ae7948441621231235c09e48b6", size = 8873136, upload-time = "2026-07-10T14:43:19.884Z" },
1809
+ { url = "https://files.pythonhosted.org/packages/57/e7/cc11d9ade5d51f9ba9e5beef714ead97855123262cd6b3d2cbdf61cb4bd0/docling_parse-7.8.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f8e32f5c1d62aa48b44f9ebe574e9a5b0b8f343f479eef4e618ee984e0d3b8c", size = 10306135, upload-time = "2026-07-10T14:43:23.89Z" },
1810
+ { url = "https://files.pythonhosted.org/packages/15/49/c09afc915f9cac70f8cf30c53bdd3937fe7bffdfbe6d3b6c0dcdace5baf0/docling_parse-7.8.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a6dab1879c32af9336903738cbe75338af548955a461c0b8304c859ebca6cb98", size = 10716584, upload-time = "2026-07-10T14:43:25.941Z" },
1811
+ { url = "https://files.pythonhosted.org/packages/d3/5b/7b7b100b8bdaa4c2d62b95dddc36c62ea8754c9df207a826dce0d8f4814d/docling_parse-7.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:c99bb47606ef012bc4bf05014c3e023cd4df3bdae849243897555878ac8d7da6", size = 11464334, upload-time = "2026-07-10T14:43:27.932Z" },
1812
+ { url = "https://files.pythonhosted.org/packages/75/5b/3dee6f7da617e9683e17f54a7f3a2eb4a365141f907f582db7c239a87325/docling_parse-7.8.0-cp313-cp313-win_arm64.whl", hash = "sha256:cfc093d782fe35ba4038f3b4639f1215453250a549d2a2f00b74ca84e2eb1789", size = 8873158, upload-time = "2026-07-10T14:43:29.899Z" },
1813
+ { url = "https://files.pythonhosted.org/packages/73/2c/1f697f83130a495a8ecf47cf162943e195578942f46de1d10867e2c92ce9/docling_parse-7.8.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:39428fa4079f28b3773a8c73e2b632952aa341e9402996ea59d7703dbd503bb9", size = 10306611, upload-time = "2026-07-10T14:43:34.003Z" },
1814
+ { url = "https://files.pythonhosted.org/packages/7f/67/6164ff7e1ee22408ca1abb4f7499571a65bdd23010a3a1d4e12d7ecd325d/docling_parse-7.8.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:15b4a3bebe87bb4709fab636b6d5fa97c6f8e1a5b40d23999133ba98f7be0d9a", size = 10716620, upload-time = "2026-07-10T14:43:36.037Z" },
1815
+ { url = "https://files.pythonhosted.org/packages/84/63/2359122e886f8720b50a96f6dbe97dad2f94fcd5f4bdc60b538bdf6afaaa/docling_parse-7.8.0-cp314-cp314-win_amd64.whl", hash = "sha256:5fd86befb33be14ec85de466819e2163f4ab62250540a432ec7227490247831d", size = 11891563, upload-time = "2026-07-10T14:43:38.147Z" },
1816
+ { url = "https://files.pythonhosted.org/packages/05/82/9e14b43c26346820a0f004944f32f52190015505cbad1af62227c9d00406/docling_parse-7.8.0-cp314-cp314-win_arm64.whl", hash = "sha256:a9e784735d878b72dee3765dfb4750cc2aa88e94e1c111c4c49cb71f931c06c4", size = 9234625, upload-time = "2026-07-10T14:43:40.136Z" },
1817
1817
  ]
1818
1818
 
1819
1819
  [[package]]
@@ -1874,7 +1874,7 @@ standard = [
1874
1874
 
1875
1875
  [[package]]
1876
1876
  name = "docling-slim"
1877
- version = "2.111.0"
1877
+ version = "2.112.0"
1878
1878
  source = { registry = "https://pypi.org/simple" }
1879
1879
  resolution-markers = [
1880
1880
  "python_full_version >= '3.15' and sys_platform == 'linux'",
@@ -1904,9 +1904,9 @@ dependencies = [
1904
1904
  { name = "requests" },
1905
1905
  { name = "tqdm" },
1906
1906
  ]
1907
- sdist = { url = "https://files.pythonhosted.org/packages/6a/10/2ac03b68d2c5be3578651b04eb7b097dbb39dc500778159b9416d7b73fce/docling_slim-2.111.0.tar.gz", hash = "sha256:c46d801582a299730b36ba779c2e4465207e38f7b1062ae4112fcdd439b68d3a", size = 512496, upload-time = "2026-07-08T11:25:12.82Z" }
1907
+ sdist = { url = "https://files.pythonhosted.org/packages/e0/6a/c6e161e5768bf0a9be286cdda311cfcda4e2cc171616fab8f26afcb3202e/docling_slim-2.112.0.tar.gz", hash = "sha256:a90b2523d3e82f1a9b15f9ed9f9a779b03c78bcdacfe2473f7eaa7a489496b05", size = 515618, upload-time = "2026-07-11T04:29:18.673Z" }
1908
1908
  wheels = [
1909
- { url = "https://files.pythonhosted.org/packages/f9/73/4f94187f574844c5a55022b9c0fc900a7e1fd61ce150da94047dd3bddde6/docling_slim-2.111.0-py3-none-any.whl", hash = "sha256:58683696e1342380d1a4676100a33493a61d3243c322f73286799435ca7e7b9e", size = 644787, upload-time = "2026-07-08T11:25:10.699Z" },
1909
+ { url = "https://files.pythonhosted.org/packages/2b/c1/cd621ecb10a5ba542658d57a9b617e64fd09d574a5b4736cfc98d3682408/docling_slim-2.112.0-py3-none-any.whl", hash = "sha256:cd53979aeac9767b4663ece9a2cfd94192486fcbb22e90d1d306be70feeadc37", size = 648635, upload-time = "2026-07-11T04:29:16.991Z" },
1910
1910
  ]
1911
1911
 
1912
1912
  [package.optional-dependencies]
@@ -1916,7 +1916,7 @@ standard = [
1916
1916
  { name = "defusedxml" },
1917
1917
  { name = "docling-core", version = "2.86.0", source = { registry = "https://pypi.org/simple" }, extra = ["chunking"] },
1918
1918
  { name = "docling-ibm-models", version = "3.13.3", source = { registry = "https://pypi.org/simple" } },
1919
- { name = "docling-parse", version = "7.7.0", source = { registry = "https://pypi.org/simple" } },
1919
+ { name = "docling-parse", version = "7.8.0", source = { registry = "https://pypi.org/simple" } },
1920
1920
  { name = "httpx" },
1921
1921
  { name = "huggingface-hub" },
1922
1922
  { name = "mail-parser" },
@@ -2788,7 +2788,7 @@ wheels = [
2788
2788
 
2789
2789
  [[package]]
2790
2790
  name = "litellm"
2791
- version = "1.91.1"
2791
+ version = "1.91.2"
2792
2792
  source = { registry = "https://pypi.org/simple" }
2793
2793
  dependencies = [
2794
2794
  { name = "aiohttp" },
@@ -2804,9 +2804,9 @@ dependencies = [
2804
2804
  { name = "tiktoken" },
2805
2805
  { name = "tokenizers" },
2806
2806
  ]
2807
- sdist = { url = "https://files.pythonhosted.org/packages/a7/70/1b419158085e0cc1615642dd62c7a5d4c3254db3de77df65dade3b25165b/litellm-1.91.1.tar.gz", hash = "sha256:49a24593df7e37262c52243a8e07572d451d37c100aa1b1f347d80d501d2e386", size = 14872532, upload-time = "2026-07-08T23:07:04.559Z" }
2807
+ sdist = { url = "https://files.pythonhosted.org/packages/6b/5d/2dfda0e057511ba24904c5c9af720512b1fc86893821947fa52f4cc0231b/litellm-1.91.2.tar.gz", hash = "sha256:e9aa292b95f25fa9d127e47a6e7266a2a99f7a1645f41100a411d7a8a77a6a46", size = 14872927, upload-time = "2026-07-11T06:04:18.847Z" }
2808
2808
  wheels = [
2809
- { url = "https://files.pythonhosted.org/packages/3d/52/166a934d194afcff2a7ec4e1928f1865504ade2e26f62e24d49aaec400d1/litellm-1.91.1-py3-none-any.whl", hash = "sha256:bf8e3d23cddf0eb4c05714dffcaafd8a944adf0f9c9b01c6c863b2637309de2e", size = 16670790, upload-time = "2026-07-08T23:07:01.151Z" },
2809
+ { url = "https://files.pythonhosted.org/packages/50/54/760eb0a5ffbfdb57364963e5330abe542b1292f7163a51963e88eb649a8d/litellm-1.91.2-py3-none-any.whl", hash = "sha256:9f78f82f818bc3644ba6aec770adc6e67b063e2b1ff4ebf8b5c3b085488f711e", size = 16670494, upload-time = "2026-07-11T06:04:14.941Z" },
2810
2810
  ]
2811
2811
 
2812
2812
  [[package]]
@@ -4957,90 +4957,90 @@ wheels = [
4957
4957
 
4958
4958
  [[package]]
4959
4959
  name = "regex"
4960
- version = "2026.6.28"
4961
- source = { registry = "https://pypi.org/simple" }
4962
- sdist = { url = "https://files.pythonhosted.org/packages/f1/05/e4f219230e11e774a6c9987d2ab0d0c6b8573e13a17e143d0015bee710ef/regex-2026.6.28.tar.gz", hash = "sha256:3cb4b6c5cb3060cc31efdc1fbb27c25fb9b29044afd87e40601a1c4d9db54342", size = 416101, upload-time = "2026-06-28T19:56:55.302Z" }
4963
- wheels = [
4964
- { url = "https://files.pythonhosted.org/packages/da/21/44aa415873032056c43eac21c67285deb2cf66cddb2a964c3cdc8f803efc/regex-2026.6.28-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:81cc5793ad33a10444445e8d29d3c73e752c8fb2e120772d70fcb6d41df40fe1", size = 490480, upload-time = "2026-06-28T19:54:05.392Z" },
4965
- { url = "https://files.pythonhosted.org/packages/8b/5f/30d4116093c2128099f78b6990dfc1698fdbf3ee528f1e1c647378034c79/regex-2026.6.28-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:e18225243250a1f7d7e5e5d883f3b96465cd79031acf5c6db902b7025f2125d9", size = 292137, upload-time = "2026-06-28T19:54:07.088Z" },
4966
- { url = "https://files.pythonhosted.org/packages/cb/0e/ca20a0e0de49837e6337603a91ab77556aa27033ac5b975615d98698cfb3/regex-2026.6.28-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ecd1638b1c2db1f2d01c182a4b0d3e2e88b0e99910320a745c1727ee3638ddab", size = 289623, upload-time = "2026-06-28T19:54:08.762Z" },
4967
- { url = "https://files.pythonhosted.org/packages/50/11/c013422a7e2c59946df8ac93e792a4922c98287f2a2181341603c78a5d98/regex-2026.6.28-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4303ebe16b74eeb3fe2715745023266fea92fd44a23f3e7bb2fb48c7a7bbc195", size = 796756, upload-time = "2026-06-28T19:54:10.616Z" },
4968
- { url = "https://files.pythonhosted.org/packages/b0/95/1309645a0e1ee6fb91d954501da57a0b33d50ad2a9acb313702851a7054e/regex-2026.6.28-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:56b856b70b96c381d837f609eee442a1bd320cd2159f5c294b679552fb1a7eaf", size = 865465, upload-time = "2026-06-28T19:54:12.742Z" },
4969
- { url = "https://files.pythonhosted.org/packages/20/06/491802db47c6f5e2904ffa2518ad3ac27fe6bbf5a66d73210a95cc080d47/regex-2026.6.28-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:f74675ab76ab1d005ffba4dee308e53e89efc22be6e9f9fae5b539a3f81bdff2", size = 912350, upload-time = "2026-06-28T19:54:14.508Z" },
4970
- { url = "https://files.pythonhosted.org/packages/5e/60/3ba57840bcc7e2367090360de0c15a5ba6ad22be89314251105f2e943f43/regex-2026.6.28-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:90581684565a93f7258af1e5d3f41ef20d7d7c61f2a428183a342bcb65485e38", size = 801261, upload-time = "2026-06-28T19:54:16.432Z" },
4971
- { url = "https://files.pythonhosted.org/packages/eb/27/af1eb74e9a78c782b3e450b611a595e44906da8a5107e1227f4a7fd0480b/regex-2026.6.28-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:28f9e6c28f9b90f6f784595a33240a57e181e61b6ee3dc259b25c61e356d1aa3", size = 777072, upload-time = "2026-06-28T19:54:18.128Z" },
4972
- { url = "https://files.pythonhosted.org/packages/20/18/fdd4c883a39e3ed00d669062af1135809bfd3281bf528150849fbd68825b/regex-2026.6.28-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:378a71d861fc7c8806b04ac5b133d53c0e774f92f5d9663a539872d3fa2b0417", size = 785119, upload-time = "2026-06-28T19:54:20.314Z" },
4973
- { url = "https://files.pythonhosted.org/packages/1c/79/0aabe34b8482dcadf64355f70f96e22eba5ec6c1efb33563f89654f4061c/regex-2026.6.28-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4cc199874ecd6267a49b111052250825bfe19b5101b23b2ba80f54efa3e0994e", size = 860118, upload-time = "2026-06-28T19:54:22.368Z" },
4974
- { url = "https://files.pythonhosted.org/packages/a8/2c/c973323306a27c9db7d160e9584eb7e0ece2a96224ccb0d39060558b31f9/regex-2026.6.28-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:b916a10431494ef4b4d62c6c89cab6426af7873125b8cd6c15811bf5fc58eec8", size = 765786, upload-time = "2026-06-28T19:54:24.265Z" },
4975
- { url = "https://files.pythonhosted.org/packages/e3/df/9ca3e378e352242a4cb45573a5e9162c3ee791507702a23966fa559e36b5/regex-2026.6.28-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:2e27727fba075f1e4409416d2f537d4c30fc11f012ea507f7bd74d3e19ecb57a", size = 852120, upload-time = "2026-06-28T19:54:25.972Z" },
4976
- { url = "https://files.pythonhosted.org/packages/a2/3e/3e31e255c4971f53cbce6306b5e3c76cbd3735a54f419bb3b2f194e9f68c/regex-2026.6.28-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:700fc6a7844bb2c4149292ac79d1df8841a00acd4d45cd32c1ebc7bcc1fd0da8", size = 789503, upload-time = "2026-06-28T19:54:27.678Z" },
4977
- { url = "https://files.pythonhosted.org/packages/72/01/d36561c21c3033d7eeb31d51b491916817de7861acefccc5fc9db8a5037c/regex-2026.6.28-cp312-cp312-win32.whl", hash = "sha256:03376d60b6a11aecb88a79fa2be06b40faa01c6693bc31ef69435cd4818b9463", size = 267109, upload-time = "2026-06-28T19:54:29.316Z" },
4978
- { url = "https://files.pythonhosted.org/packages/a0/59/bbbb0591f38b18c65977cd65ce64749eba1c1996c99ac04e900fc30c0dcb/regex-2026.6.28-cp312-cp312-win_amd64.whl", hash = "sha256:fbd2ded482bf99e6651992bbfcde460272724d4bbc49ef3d6b46d9312867ec84", size = 277711, upload-time = "2026-06-28T19:54:31.143Z" },
4979
- { url = "https://files.pythonhosted.org/packages/86/06/be4f6b337d773ae5739a1bc238f97c16926e72017243735853c030f4c628/regex-2026.6.28-cp312-cp312-win_arm64.whl", hash = "sha256:37294d3d7ddb64c7e89184b2894e0f8f0a19c514bc59513d71fe692c3a8d5fc6", size = 277022, upload-time = "2026-06-28T19:54:32.97Z" },
4980
- { url = "https://files.pythonhosted.org/packages/b6/53/d5c1b3cc0b5a0c985563ad6fac93d73ff2b300cb84342d89f044625d6bc7/regex-2026.6.28-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:b295a83426e0e44e9e60fde99789e181bd26788a1890ae7fe2a24c69bb6246ca", size = 490329, upload-time = "2026-06-28T19:54:35.775Z" },
4981
- { url = "https://files.pythonhosted.org/packages/8d/9f/0c3503e819e91ca0e7a901a8e989ebf840ac7c7aea20b1fc7f31b6759f77/regex-2026.6.28-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:0c31665c0deb5c111557a1cac8c27bd5629e2f9e7fd5058900a03576c33b601c", size = 292039, upload-time = "2026-06-28T19:54:37.977Z" },
4982
- { url = "https://files.pythonhosted.org/packages/bb/7f/cd004e13fcad23b3794a82307dfd222e6365eb7f598bd3caab148a830bff/regex-2026.6.28-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6bf295f2c59de77d1ea7de053607ae4dc9ceb3d57bbb6c7ec51ef4acc4ccff94", size = 289488, upload-time = "2026-06-28T19:54:39.545Z" },
4983
- { url = "https://files.pythonhosted.org/packages/73/4c/293fb34586fbcdc47eac436069e9c11f71fae5dadfd4889b475d7d2e5f7a/regex-2026.6.28-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:17c077586770f67e05bbffeba07fbee6b2b22244f4d4caf8d94e59d574befe04", size = 796772, upload-time = "2026-06-28T19:54:41.347Z" },
4984
- { url = "https://files.pythonhosted.org/packages/92/fa/c0cd1a90b7d12d9dc155cfc8bdea8df9720988ea5b07e8fa1eccbd0ab2dd/regex-2026.6.28-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:0e6cb5a61486f9062397d2e189573b39d38ecfaed698fd9fb6e2756a8ebb8762", size = 865467, upload-time = "2026-06-28T19:54:43.485Z" },
4985
- { url = "https://files.pythonhosted.org/packages/4e/db/0b479973046d005a1eaea299d5d536aeecb9488a16d9cbb8286338102e2d/regex-2026.6.28-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e86e91a2664f44c3a4e363a7d78fb17c27d5046882e30ea5a877f5e89b28d2ba", size = 912345, upload-time = "2026-06-28T19:54:46.091Z" },
4986
- { url = "https://files.pythonhosted.org/packages/5b/5b/d65adfbd02f32212431bca1f06d1e2eb763a20b12978b454bafaf23dacb7/regex-2026.6.28-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4dfd1331c49233998d84fc5f1f4436cf7a435a7655f6cf0f490229bb5c7254e5", size = 801291, upload-time = "2026-06-28T19:54:48.3Z" },
4987
- { url = "https://files.pythonhosted.org/packages/fc/09/2103686defaf9a0a31c1663782359d5b45f42524c64cca681f5481e44a5e/regex-2026.6.28-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:cadea12805a1bce0b091c302b814207be26fb60a9c0e7f9ad2f9e21790a429fe", size = 777106, upload-time = "2026-06-28T19:54:50.326Z" },
4988
- { url = "https://files.pythonhosted.org/packages/85/5a/b57593c0aa23ed269ec332fbcf07852abcb6b746e811d9464e0d09b4e25f/regex-2026.6.28-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5f2c1682b67ad5d2376498f2a5a2a8f782fa2e4a06d0465b5e357799806e8a20", size = 785175, upload-time = "2026-06-28T19:54:52.172Z" },
4989
- { url = "https://files.pythonhosted.org/packages/79/59/c36e756ad29bf14d7b6c6d7138952476b21f6160286cedb98ac13481c993/regex-2026.6.28-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:64e142eb55e84868087da1375d7c36ff97d55010951849f515322a91d5fef1b4", size = 860186, upload-time = "2026-06-28T19:54:54.11Z" },
4990
- { url = "https://files.pythonhosted.org/packages/61/66/49808aea0da9649c300139360708fb91b7144be1f962fcebf96755fde948/regex-2026.6.28-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:abb4daabe7be63273787a62dfd6164dadf8f7a63fbec3d2730e5e5e7126d858c", size = 765754, upload-time = "2026-06-28T19:54:56.04Z" },
4991
- { url = "https://files.pythonhosted.org/packages/be/c5/52bbd436cf2200decdf48825fa38363eaaeebb77011ea9928a1ef9e0b9f2/regex-2026.6.28-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:ec2b2ad00ab8c16a2798cc8db80c53c4d5b8b3a2441f6cbaef06625f5ca25854", size = 852085, upload-time = "2026-06-28T19:54:57.988Z" },
4992
- { url = "https://files.pythonhosted.org/packages/f9/c3/0390b66e3019497143fe768b3ba567b64d8b24f3812d09506deb86f4a0f0/regex-2026.6.28-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:bfc9677982c914d9085b8e1c3b3ae6e88f139fb56531c2416d6c8f338093c22b", size = 789600, upload-time = "2026-06-28T19:54:59.977Z" },
4993
- { url = "https://files.pythonhosted.org/packages/88/fd/ab5b03653a244975069fed93d73f4f5f7484c03a84cedb238292510d7182/regex-2026.6.28-cp313-cp313-win32.whl", hash = "sha256:bf54bc693fc4e0530e666ba5ec4bcba14dbe8f66b7cfc15c27317d1a6e40b9a5", size = 267088, upload-time = "2026-06-28T19:55:02.159Z" },
4994
- { url = "https://files.pythonhosted.org/packages/68/55/21022f7d3143210ae8d4ff905c45306237b657375cc0b97883f49db3d423/regex-2026.6.28-cp313-cp313-win_amd64.whl", hash = "sha256:e128feaf65bf3d9eb91bec92322a8f7e4835e9c798f3e9ea4b69f4def85620e3", size = 277680, upload-time = "2026-06-28T19:55:04.185Z" },
4995
- { url = "https://files.pythonhosted.org/packages/b6/99/7f664804f1aef924542b0b233996b78b3e4d0a52d9951358aac99f129f51/regex-2026.6.28-cp313-cp313-win_arm64.whl", hash = "sha256:695873e0ea8d3815ea9e92e2c68faf039cc450e2c0a62a31afe2049eb11be767", size = 277017, upload-time = "2026-06-28T19:55:06.29Z" },
4996
- { url = "https://files.pythonhosted.org/packages/cb/e1/9eb83518e159d719fd681c4932dc2aaff855ce72451e1d05d69466f25a96/regex-2026.6.28-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:189dbf9fc4252d9f1352bf4bd1bef885edb6cc4b7341df202a65f821aaa3891c", size = 494195, upload-time = "2026-06-28T19:55:08.292Z" },
4997
- { url = "https://files.pythonhosted.org/packages/fd/e2/e259c5f2f7be269d0e2fb54275c1fa6a13fb47019f389c3f3ae457447825/regex-2026.6.28-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9277a4c6503390aa39cb4483b87ec0384faee0850a23b5cea33d008b5d8d83f1", size = 293976, upload-time = "2026-06-28T19:55:10.014Z" },
4998
- { url = "https://files.pythonhosted.org/packages/8d/4e/9bdf444014d22b045d0c82ca114fac7e07a597b5b5331b7c4ce6328426e2/regex-2026.6.28-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:17eddca4e8ea9af0b5739314776cdf0172a49731ab61f2e1ea66e066ddd46c97", size = 292340, upload-time = "2026-06-28T19:55:11.88Z" },
4999
- { url = "https://files.pythonhosted.org/packages/fd/3a/f49b11e59cbfe187ace0053a460bd72a0169b8cd52e7db9421a074ce7a43/regex-2026.6.28-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e4466b8641e00c697aab5a73150150d2b2ea96b131c595691f42031abafd9f4d", size = 811704, upload-time = "2026-06-28T19:55:13.612Z" },
5000
- { url = "https://files.pythonhosted.org/packages/2f/fb/ad04c39e149bf8b6cf357df5fff78341733ec366780a00c803a36735818c/regex-2026.6.28-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9cfcd4b0bdcf768c498415c170d1ed2a25a99bf0b65fa253bbd02f68ceba6475", size = 871157, upload-time = "2026-06-28T19:55:15.797Z" },
5001
- { url = "https://files.pythonhosted.org/packages/7f/64/0e5ba31c11eb8ef7aac19a690c1211fc9aa9990caf09565785ebb0081b9a/regex-2026.6.28-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:80c7adf1ef647f6b1e8aa2ca280e517174cd08bdf7a2e412cdfb68bd6a0917cb", size = 917287, upload-time = "2026-06-28T19:55:18.692Z" },
5002
- { url = "https://files.pythonhosted.org/packages/11/75/6b78df2b858c2fcbbc4858fdc3f2975cf2703be374b2842db7d2c32591a7/regex-2026.6.28-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a043f5770e82283a22aed4cefef1a4e0f9dd8fd7184cb6ce0ad2e579e2134a9e", size = 816333, upload-time = "2026-06-28T19:55:20.973Z" },
5003
- { url = "https://files.pythonhosted.org/packages/b4/01/ecfe665a3694d5eda9f3ec686c856438ada0943947b6005e90556a1e2cdf/regex-2026.6.28-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:3bd630a8dba06b55254ea5ee862194edab52ec783100d2ef1cd15a9c512fee27", size = 785518, upload-time = "2026-06-28T19:55:23.003Z" },
5004
- { url = "https://files.pythonhosted.org/packages/b4/0a/88f9cd88ff1e82881605c4ffd62d77ee67d051232cfe6f8e9a64b86cf0e8/regex-2026.6.28-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:b77207e3cee13086f1906a6a2a12b41244c577e8ad9370d4b35ae1d548d354f3", size = 801371, upload-time = "2026-06-28T19:55:24.888Z" },
5005
- { url = "https://files.pythonhosted.org/packages/a8/97/601483732f93275482ceb9fed57813dfed7c47d3a019db6ec4a3bb6e23e0/regex-2026.6.28-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:6de82c268e5d101ee9e3ffd869924aa9a371e3a21e752cf4fa17b6ce50d219f7", size = 866517, upload-time = "2026-06-28T19:55:27.232Z" },
5006
- { url = "https://files.pythonhosted.org/packages/81/ed/385c2a0351b994a693453c1d1a6e9af9eb35db3c9460d76b5078acd70c62/regex-2026.6.28-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:b15859e3908544fb99cf47341dcf0bfd089147d258c4c4d8a29e5b087f8085cb", size = 772834, upload-time = "2026-06-28T19:55:29.154Z" },
5007
- { url = "https://files.pythonhosted.org/packages/06/bc/bbf4a5b3b29770d7f307d3c28b5b1bca0105b0cb424be0a4eb1339bc92cf/regex-2026.6.28-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:c91487a917edd48a1ea646fdf60d7936d304f0e686fa7ea8326e47efca51d816", size = 856606, upload-time = "2026-06-28T19:55:32.186Z" },
5008
- { url = "https://files.pythonhosted.org/packages/28/26/51d74fff82f682819979249f8d700267108ba5dc4eb284b0e11b9c85e4b3/regex-2026.6.28-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:c4ac65f3e3a99fd8f3a4a74e7a6610acd1ce9dfe9b8a03d346a4922380d68aeb", size = 803475, upload-time = "2026-06-28T19:55:34.328Z" },
5009
- { url = "https://files.pythonhosted.org/packages/7c/3e/6be10cefdc813533fe604dbf5d3c77d2638e7ee658b2749ebadc113b6b2e/regex-2026.6.28-cp313-cp313t-win32.whl", hash = "sha256:3f6316f258bc7e6c9c2acbe9954947bbd397a81be3742a637a555f1855d6618d", size = 269126, upload-time = "2026-06-28T19:55:36.565Z" },
5010
- { url = "https://files.pythonhosted.org/packages/3c/3c/32cda905ea1a6eeeb798291c294d8ec66ee0efe0cdba28b061e248b1d396/regex-2026.6.28-cp313-cp313t-win_amd64.whl", hash = "sha256:1484bdd6fba28422df9b5ebb04055b2e1b680e8e4f08490bb21ff0f3cc50d0ab", size = 279961, upload-time = "2026-06-28T19:55:38.456Z" },
5011
- { url = "https://files.pythonhosted.org/packages/ea/b9/69f4e5cd6fbe0bb420cb2dbae441ca118f2495bdda522a74da75aa9829e7/regex-2026.6.28-cp313-cp313t-win_arm64.whl", hash = "sha256:3f15020f0b69cafe57baa067ff65b29acef68ff6b1670a53bef1ca11d708e02d", size = 279266, upload-time = "2026-06-28T19:55:40.62Z" },
5012
- { url = "https://files.pythonhosted.org/packages/3b/fb/fad3b810a5bb1e09b9e5d6913fc6ba88cab738fdf283196827a3c59a4c10/regex-2026.6.28-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:f7c032b0c8a73739ff8ff1aaf30c281fa19c17bf7f1543256c8507390db7807c", size = 490407, upload-time = "2026-06-28T19:55:42.724Z" },
5013
- { url = "https://files.pythonhosted.org/packages/d6/52/b8c79d12276d93e90e707e939b396034c04980caf1235312ef790f8e11fc/regex-2026.6.28-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:f6710f512c57b84f127a23d0f59560a03b64136eff419ae1be5ab557577fe5e3", size = 291988, upload-time = "2026-06-28T19:55:44.549Z" },
5014
- { url = "https://files.pythonhosted.org/packages/23/d2/6a911f18279daa8d7bb8b20d771ddb6ef31fabd35f5921f9d3ba21640e80/regex-2026.6.28-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c0013958f427bd82509a186b9ff206d66cb8d60a81fc797a4c717afd18c5b0ba", size = 289704, upload-time = "2026-06-28T19:55:46.365Z" },
5015
- { url = "https://files.pythonhosted.org/packages/fd/22/ad1955c47c669291a05804d53d7071cc0732dfdf166857be38003cedc2d1/regex-2026.6.28-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:94f06cdcd6421f8e194ad312ea608020381250df9b8a57661c1b57e9e5273878", size = 797017, upload-time = "2026-06-28T19:55:48.166Z" },
5016
- { url = "https://files.pythonhosted.org/packages/e5/67/a83159ff8703ab4d0c2cf99e76ebf289b7b4a501623241d09f88f3614f80/regex-2026.6.28-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:ec9689392f7494ff4e3f8e7e8522f9158f11023f337eaaf04a64542fc45bbf26", size = 866112, upload-time = "2026-06-28T19:55:51.047Z" },
5017
- { url = "https://files.pythonhosted.org/packages/b9/09/7bff2d6dbbd77421b3274aa51db1c887381cbc5b6eda93598c3e882ea345/regex-2026.6.28-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:aa084684e6d2078bf6139e374d1fc2af5ddc1ac7122759a2db716d68169f6fd0", size = 911554, upload-time = "2026-06-28T19:55:53.707Z" },
5018
- { url = "https://files.pythonhosted.org/packages/29/44/ae59c3826e7ba492e56795cdf74ea2a7b5b7c5ea116afb79ee4956a5dff1/regex-2026.6.28-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:40455e6840dc4e96a6fe50f4cedc957de2752c954d91e789812be55d49be199a", size = 800665, upload-time = "2026-06-28T19:55:55.875Z" },
5019
- { url = "https://files.pythonhosted.org/packages/d6/19/6fd033d2ab00f35d445aaeaf3307c1e721424dcbfd48f6f65c857cb939cf/regex-2026.6.28-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:530b5c223b9ca5dd8370ac502e080aee0e4ded32be987c6564b425fb5523d581", size = 777243, upload-time = "2026-06-28T19:55:57.909Z" },
5020
- { url = "https://files.pythonhosted.org/packages/4e/9d/99730f26df4938049ab1e652ca75e967b4c6739444e18d9707bfdb8af20c/regex-2026.6.28-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:8e0ed273ecd1a89be84466c1749bfe58609cc2a32b5d5e05006c4625ba96411b", size = 785784, upload-time = "2026-06-28T19:56:00.072Z" },
5021
- { url = "https://files.pythonhosted.org/packages/48/49/105cd57162f5fc5c04cc917a1388a060cf8427e5c14353cd9044660fbf4d/regex-2026.6.28-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:0ab0d5344311fc8e8667078942056c3b9c9b4a4b1cc99f2eb8a5af54554f4acc", size = 860914, upload-time = "2026-06-28T19:56:02.017Z" },
5022
- { url = "https://files.pythonhosted.org/packages/a2/a5/788245a95b69018f58bff2f4fd27d007cacaea088cdb390979743f1b2571/regex-2026.6.28-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:eacb79625323d9f7e7925366b917f492b8356fad58f5dc4fa12ff8c21d8f4ca9", size = 765915, upload-time = "2026-06-28T19:56:05.021Z" },
5023
- { url = "https://files.pythonhosted.org/packages/ca/01/292065a39a004b05e67a337b18213670a7cb919d6856ac2d7df7f1a10dbb/regex-2026.6.28-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:20f4d87702702aa1d572721e146f301660c50eef6fd6cb596e48a22b0ace17db", size = 851404, upload-time = "2026-06-28T19:56:07.251Z" },
5024
- { url = "https://files.pythonhosted.org/packages/98/9e/a93d865db0e13483ae1a01d81e2ce16d4a7fe2f9b9fe4aac4cc08590b136/regex-2026.6.28-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:1e693940a3b9e6d6e4dc2a54ecaa74b74934f77af1ef95f518a74261ef7cc1bc", size = 789373, upload-time = "2026-06-28T19:56:09.894Z" },
5025
- { url = "https://files.pythonhosted.org/packages/82/0c/38b1685ad4017d78efbc8fa7dbbf96d8113b53750c8aa2d3609defd46605/regex-2026.6.28-cp314-cp314-win32.whl", hash = "sha256:234a51e20ebc18ab83b2c0600cf28f2e884560a0e00f743878f0b7d8e7c4cf03", size = 272496, upload-time = "2026-06-28T19:56:11.83Z" },
5026
- { url = "https://files.pythonhosted.org/packages/55/50/e19f261ff9ba9b50722a529e09b1743ecf65eb348be99d0fd2cd7fcede1c/regex-2026.6.28-cp314-cp314-win_amd64.whl", hash = "sha256:7b15c437bc4604f03ceb3f8d37eae2f8930e320e1bc556b259848c639d9eec1a", size = 280754, upload-time = "2026-06-28T19:56:13.758Z" },
5027
- { url = "https://files.pythonhosted.org/packages/36/b8/c9e68f3a9e33be73f20990b2c065b144ff2d0aa242608a950d8c4f3b56e8/regex-2026.6.28-cp314-cp314-win_arm64.whl", hash = "sha256:c6e6f790d01380a74ad564f216c533b86504afb61bf66f2b2e11e7f1a3e287a7", size = 280979, upload-time = "2026-06-28T19:56:15.928Z" },
5028
- { url = "https://files.pythonhosted.org/packages/03/e6/21c425a37880c650d007c4171c6a80325446d830d85f5fbf335e7205b1e7/regex-2026.6.28-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:3527a72adcbe9e3600f1553b497d397c1a371d227580d41d96c3c5964109b65c", size = 494282, upload-time = "2026-06-28T19:56:18.049Z" },
5029
- { url = "https://files.pythonhosted.org/packages/07/50/6647a7ccf5ffff995ba955a0b7d766440f4e58ce1666549c8ee998f2b972/regex-2026.6.28-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:a644f6408692812f5ead82519eed680e08d5d546fddbd9f7d9514e3c73899aa5", size = 293977, upload-time = "2026-06-28T19:56:20.145Z" },
5030
- { url = "https://files.pythonhosted.org/packages/8c/dc/a3e141a4eaf125e50f63105570c01fa477c06ac5259dcfa95e9b90760e84/regex-2026.6.28-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:8e2fae6bb883648346f84db270dc9aafc29d8e895f62b88a75ccc83b09519820", size = 292432, upload-time = "2026-06-28T19:56:22.345Z" },
5031
- { url = "https://files.pythonhosted.org/packages/35/ee/2ac1a6b9f167f8ff69f5a789938cc103b60cff41b24a6990daced8b88e34/regex-2026.6.28-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:debe623e09cee97ef9404575e936c610aac9bb08358c5099aaef14644a6871f2", size = 811877, upload-time = "2026-06-28T19:56:25.056Z" },
5032
- { url = "https://files.pythonhosted.org/packages/df/7b/9a5505ee92180bcae300b1018b9ff3d3c19962436e66f2505f255e9fde35/regex-2026.6.28-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:cc579c91fb4605773483a8d940b136bcc5b854fff44fa14a1572a038f46563f1", size = 871212, upload-time = "2026-06-28T19:56:27.352Z" },
5033
- { url = "https://files.pythonhosted.org/packages/24/4d/d61a702a9f9d1bd29b22cbef1aed6d477baa961232a7eb4d91b7775b0b3e/regex-2026.6.28-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:e7c42be203d84ecf7d487ff23f8a61ef0eb0534fa0fc317a2fce8c065d20618f", size = 917507, upload-time = "2026-06-28T19:56:29.762Z" },
5034
- { url = "https://files.pythonhosted.org/packages/d4/60/1308066f5966b65fbb6905b99ba37e9f1cd753dd0ac08485f8257334ee92/regex-2026.6.28-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e8184b4e2fdaf9cdfe77e38f15a4d9dc149168c9c29eb0ea17c5481d3bb80546", size = 816389, upload-time = "2026-06-28T19:56:32.043Z" },
5035
- { url = "https://files.pythonhosted.org/packages/bd/5c/57ce2cb8d714ee0b7f11c7ee4cfe2af66df2b90f147feadcb538609a3a02/regex-2026.6.28-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:697f103104f5872d64078d8eeac59979960be8ee76115a2d3f31096312e2a400", size = 785890, upload-time = "2026-06-28T19:56:34.492Z" },
5036
- { url = "https://files.pythonhosted.org/packages/ff/fd/1d5350d3a8a327bff0fccacb911732baf7b5b6f5529c0e3fa602a23e7dad/regex-2026.6.28-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:714d2b1aa29beef0ddfcdc72ad0771c05326551a8bb0680b0ddf74bfaad87387", size = 801451, upload-time = "2026-06-28T19:56:36.749Z" },
5037
- { url = "https://files.pythonhosted.org/packages/f3/79/3c9e4f8a0306e030ad5a43bbbc01625fb28d58a813bc52d42fd1cc63fb2e/regex-2026.6.28-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:0f09f62e450cc2f113018cc8412aeea3a120a04e1ca7e801a0d441583f9a3b06", size = 866504, upload-time = "2026-06-28T19:56:38.994Z" },
5038
- { url = "https://files.pythonhosted.org/packages/65/12/f747de475b54f4709efb24dd0fbc8467c64cec91f5db0d047b079646ee78/regex-2026.6.28-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:731ea12d5aeb2577eaef2393d6428b995f76eb35f68a89e03e15a97719d1de19", size = 773047, upload-time = "2026-06-28T19:56:41.061Z" },
5039
- { url = "https://files.pythonhosted.org/packages/58/3c/f02f860e0500c1b2d61a79dec7e214b37fb9656281dcddc92397edf96678/regex-2026.6.28-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:51e952c8783eabd4706d0f63922f219bcfc1bef9b8cb35941c0d1a0396578858", size = 856665, upload-time = "2026-06-28T19:56:43.466Z" },
5040
- { url = "https://files.pythonhosted.org/packages/4d/6c/28b3fa222513484be9dee26b7222bda109056c43ea28aa2314262ca48816/regex-2026.6.28-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:43248fe4c0ab8fbb223588a0795b11268940072c97bba30ea8f9b49d8cdfde34", size = 803573, upload-time = "2026-06-28T19:56:45.791Z" },
5041
- { url = "https://files.pythonhosted.org/packages/fa/f0/8f86cf1a1fd85c5ab0c503c9fe4607ad4ad48978b2d8b435d94465e134c7/regex-2026.6.28-cp314-cp314t-win32.whl", hash = "sha256:fc1eddc25ad23c0f1344ab280d961ac595ead48292d7c779497975942373f493", size = 274515, upload-time = "2026-06-28T19:56:47.948Z" },
5042
- { url = "https://files.pythonhosted.org/packages/0f/de/f8613c03b36786ddef2c930d28f9bcae861fcd541cc9203a870956cf1e83/regex-2026.6.28-cp314-cp314t-win_amd64.whl", hash = "sha256:ede8d8e53b6dde0a50f7eca902f0af76d87ab02a55aba7542da68ae3e5dfe83d", size = 283650, upload-time = "2026-06-28T19:56:50.614Z" },
5043
- { url = "https://files.pythonhosted.org/packages/4d/f3/f5ec86839bbabe33b6dee649b62ff9a445d43de6b0ad780cf6b83c56f61e/regex-2026.6.28-cp314-cp314t-win_arm64.whl", hash = "sha256:4da6f6a72f8700b97a1a765e837fb7d5750bfd9f13acea7bae498f573e3a70a8", size = 283338, upload-time = "2026-06-28T19:56:52.879Z" },
4960
+ version = "2026.7.10"
4961
+ source = { registry = "https://pypi.org/simple" }
4962
+ sdist = { url = "https://files.pythonhosted.org/packages/7b/37/451aaddbf50922f34d744ad5ca919ae1fcfac112123885d9728f52a484b3/regex-2026.7.10.tar.gz", hash = "sha256:1050fedf0a8a92e843971120c2f57c3a99bea86c0dfa1d63a9fac053fe54b135", size = 416282, upload-time = "2026-07-10T19:49:46.267Z" }
4963
+ wheels = [
4964
+ { url = "https://files.pythonhosted.org/packages/b3/9c/2503d4ccf3452dc323f8baa3cf3ee10406037d52735c76cfced81423f183/regex-2026.7.10-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:7252b48b0c60100095088fbeb281fca9a4fcf678a4e04b1c520c3f8613c952c4", size = 497114, upload-time = "2026-07-10T19:47:16.22Z" },
4965
+ { url = "https://files.pythonhosted.org/packages/91/eb/04534f4263a4f658cd20a511e9d6124350044f2214eb24fee2db96acf318/regex-2026.7.10-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:da6ef4cb8d457aab0482b50120136ae94238aaa421863eaa7d599759742c72d6", size = 297422, upload-time = "2026-07-10T19:47:17.794Z" },
4966
+ { url = "https://files.pythonhosted.org/packages/ca/2d/35809de392ab66ba439b58c3187ae3b8b53c883233f284b59961e5725c99/regex-2026.7.10-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:fe7ff456c22725c9d9017f7a2a7df2b51af6df77314176760b22e2d05278e181", size = 292110, upload-time = "2026-07-10T19:47:19.188Z" },
4967
+ { url = "https://files.pythonhosted.org/packages/ad/1e/5ce0fbe9aab071893ce2b7df020d0f561f7b411ec334124302468d587884/regex-2026.7.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f3463a5f26be513a49e4d497debcf1b252a2db7b92c77d89621aa90b83d2dd38", size = 796800, upload-time = "2026-07-10T19:47:20.639Z" },
4968
+ { url = "https://files.pythonhosted.org/packages/d4/67/c1ccbada395c10e334763b583e1039b1660b142303ebb941d4269130b22f/regex-2026.7.10-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:948dfc62683a6947b9b486c4598d8f6e3ecc542478b6767b87d52be68aeb55c6", size = 865509, upload-time = "2026-07-10T19:47:22.135Z" },
4969
+ { url = "https://files.pythonhosted.org/packages/0e/06/f0b31afc16c1208f945b66290eb2a9936ab8becdfb23bbcedb91cc5f9d9b/regex-2026.7.10-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:c2cbd385d82f63bb35edb60b09b08abad3619bd0a4a492ae59e55afaf98e1b9d", size = 912395, upload-time = "2026-07-10T19:47:24.128Z" },
4970
+ { url = "https://files.pythonhosted.org/packages/0b/1c/8687de3a6c3220f4f872a9bf4bcd8dc249f2a96e7dddfa93de8bd4d16399/regex-2026.7.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f6222cafe00e072bb2b8f14142cd969637411fbc4dd3b1d73a90a3b817fa046f", size = 801308, upload-time = "2026-07-10T19:47:25.696Z" },
4971
+ { url = "https://files.pythonhosted.org/packages/5f/e3/60a40ec02a2315d826414a125640aceb6f30450574c530c8f352110ece0e/regex-2026.7.10-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:65ee5d1ac3cd541325f5ac92625b1c1505f4d171520dd931bda7952895c5321a", size = 777120, upload-time = "2026-07-10T19:47:27.158Z" },
4972
+ { url = "https://files.pythonhosted.org/packages/6a/9a/ec579b4f840ac59bc7c192b56e66abd4cbf385615300d59f7c94bf6863ae/regex-2026.7.10-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:aa34473fbcc108fea403074f3f45091461b18b2047d136f16ffaa4c65ad46a68", size = 785164, upload-time = "2026-07-10T19:47:28.732Z" },
4973
+ { url = "https://files.pythonhosted.org/packages/ad/1c/60d88afd5f98d4b0fb1f8b8969270628140dc01c7ff93a939f2aa83f31a6/regex-2026.7.10-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:9d028d189d8f38d7ff292f22187c0df37f2317f554d2ed9a2908ada330af57c0", size = 860161, upload-time = "2026-07-10T19:47:30.605Z" },
4974
+ { url = "https://files.pythonhosted.org/packages/2a/40/08ae3ba45fe79e48c9a888a3389a7ee7e2d8c580d2d996da5ece02dfdcb9/regex-2026.7.10-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:396ea70e4ea1f19571940add3bad9fd3eb6a19dc610d0d01f692bc1ba0c10cb4", size = 765829, upload-time = "2026-07-10T19:47:32.06Z" },
4975
+ { url = "https://files.pythonhosted.org/packages/12/e6/e613c6755d19aca9d977cdc3418a1991ffc8f386779752dd8fdfa888ea89/regex-2026.7.10-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:ebbf0d83ed5271991d666e54bb6c90ac2c55fb2ef3a88740c6af85dc85de2402", size = 852170, upload-time = "2026-07-10T19:47:33.567Z" },
4976
+ { url = "https://files.pythonhosted.org/packages/03/33/89072f2060e6b844b4916d5bc40ef01e973640c703025707869264ec75ab/regex-2026.7.10-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:58a4571b2a093f6f6ee4fd281faa8ebf645abcf575f758173ea2605c7a1e1ecb", size = 789550, upload-time = "2026-07-10T19:47:35.395Z" },
4977
+ { url = "https://files.pythonhosted.org/packages/e3/3c/4bc8be9a155035e63780ccac1da101f36194946fdc3f6fce90c7179fc6df/regex-2026.7.10-cp312-cp312-win32.whl", hash = "sha256:eac1207936555aa691ce32df1432b478f2729d54e6d93a1f4db9215bcd8eb47d", size = 267151, upload-time = "2026-07-10T19:47:37.047Z" },
4978
+ { url = "https://files.pythonhosted.org/packages/35/73/9f5aade65bb98cc6e99c336e45a49a658300720c16721f3e687f8d754fec/regex-2026.7.10-cp312-cp312-win_amd64.whl", hash = "sha256:ecae626449d00db8c08f8f1fc00047a32d6d7eb5402b3976f5c3fda2b80a7a4f", size = 277751, upload-time = "2026-07-10T19:47:38.488Z" },
4979
+ { url = "https://files.pythonhosted.org/packages/36/6f/d069dd12872ea1d50e17319d342f89e2072cae4b62f4245009a1108c74d8/regex-2026.7.10-cp312-cp312-win_arm64.whl", hash = "sha256:87794549a3f5c1c2bdfba2380c1bf87b931e375f4133d929da44f95e396bf5fe", size = 277063, upload-time = "2026-07-10T19:47:40.023Z" },
4980
+ { url = "https://files.pythonhosted.org/packages/e0/88/0c977b9f3ba9b08645516eca236388c340f56f7a87054d41a187a04e134c/regex-2026.7.10-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:4db009b4fc533d79af3e841d6c8538730423f82ea8508e353a3713725de7901c", size = 496868, upload-time = "2026-07-10T19:47:41.675Z" },
4981
+ { url = "https://files.pythonhosted.org/packages/f6/51/600882cd5d9a3cf083fd66a4064f5b7f243ba2a7de2437d42823e286edaf/regex-2026.7.10-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:b96341cb29a3faa5db05aff29c77d141d827414f145330e5d8846892119351c1", size = 297306, upload-time = "2026-07-10T19:47:43.521Z" },
4982
+ { url = "https://files.pythonhosted.org/packages/52/6f/48a912054ffcb756e374207bb8f4430c5c3e0ffa9627b3c7b6661844b30a/regex-2026.7.10-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:14d27f6bd04beb01f6a25a1153d73e58c290fd45d92ba56af1bb44199fd1010d", size = 291950, upload-time = "2026-07-10T19:47:45.267Z" },
4983
+ { url = "https://files.pythonhosted.org/packages/1a/c8/8e1c3c86ebcee7effccbd1f7fc54fe3af22aa0e9204503e2baea4a6ff001/regex-2026.7.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e6b6a11bf898cca3ce7bfaa17b646901107f3975677fbd5097f36e5eb5641983", size = 796817, upload-time = "2026-07-10T19:47:48.054Z" },
4984
+ { url = "https://files.pythonhosted.org/packages/65/39/3e49d9ff0e0737eb8180a00569b47aabb59b84611f48392eba4d998d91a0/regex-2026.7.10-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:234f8e0d65cf1df9becadae98648f74030ee85a8f12edcb5eb0f60a22a602197", size = 865513, upload-time = "2026-07-10T19:47:49.855Z" },
4985
+ { url = "https://files.pythonhosted.org/packages/70/57/6511ad809bb3122c65bbeeffa5b750652bb03d273d29f3acb0754109b183/regex-2026.7.10-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:91b916d495db3e1b473c7c8e68733beec4dce8e487442db61764fff94f59740e", size = 912391, upload-time = "2026-07-10T19:47:51.776Z" },
4986
+ { url = "https://files.pythonhosted.org/packages/cc/29/a1b0c109c9e878cb04b931bfe4c54332d692b93c322e127b5ae9f25b0d9e/regex-2026.7.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1f0d4ccf70b1d13711242de0ba78967db5c35d12ac408378c70e06295c3f6644", size = 801338, upload-time = "2026-07-10T19:47:53.38Z" },
4987
+ { url = "https://files.pythonhosted.org/packages/33/be/171c3dad4d77000e1befeff2883ca88734696dfd97b2951e5e074f32e4dd/regex-2026.7.10-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:c622f4c638a725c39abcb2e680b1bd592663c83b672a4ed350a17f806d75618e", size = 777149, upload-time = "2026-07-10T19:47:54.944Z" },
4988
+ { url = "https://files.pythonhosted.org/packages/33/61/41ab0de0e4574da1071c151f67d1eb9db3d92c43e31d64d2e6863c3d89bf/regex-2026.7.10-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:41a47c2b28d9421e2509a4583a22510dc31d83212fcf38e1508a7013140f71a8", size = 785216, upload-time = "2026-07-10T19:47:56.56Z" },
4989
+ { url = "https://files.pythonhosted.org/packages/66/28/372859ea693736f07cf7023247c7eca8f221d9c6df8697ff9f93371cca08/regex-2026.7.10-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:13fba679fe035037e9d5286620f88bbfd105df4d5fcd975942edd282ab986775", size = 860229, upload-time = "2026-07-10T19:47:58.278Z" },
4990
+ { url = "https://files.pythonhosted.org/packages/50/b1/e1d32cd944b599534ae655d35e8640d0ec790c0fa12e1fb29bf434d50f55/regex-2026.7.10-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:8e26a075fa9945b9e44a3d02cc83d776c3b76bb1ff4b133bbfa620d5650131da", size = 765797, upload-time = "2026-07-10T19:48:00.291Z" },
4991
+ { url = "https://files.pythonhosted.org/packages/0c/62/79a2cd9556a3329351e370929743ef4f0ccc0aaff6b3dc414ae5fa4a1302/regex-2026.7.10-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:d0834c84ae8750ae1c4cede59b0afd4d2f775be958e11b18a3eea24ed9d0d9f1", size = 852130, upload-time = "2026-07-10T19:48:01.972Z" },
4992
+ { url = "https://files.pythonhosted.org/packages/66/58/76fec29898cf5d359ab63face50f9d4f7135cc2eca3477139227b1d09952/regex-2026.7.10-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:64722a5031aeace7f6c8d5ea9a9b22d9368af0d6e8fa532585da8158549ea963", size = 789644, upload-time = "2026-07-10T19:48:03.748Z" },
4993
+ { url = "https://files.pythonhosted.org/packages/f6/06/3c7cec7817bda293e13c8f88aed227bbcf8b37e5990936ff6442a8fdf11a/regex-2026.7.10-cp313-cp313-win32.whl", hash = "sha256:74ae61d8573ecd51b5eeee7be2218e4c56e99c14fa8fcf97cf7519611d4be92e", size = 267130, upload-time = "2026-07-10T19:48:05.677Z" },
4994
+ { url = "https://files.pythonhosted.org/packages/88/6c/e2a6f9a6a905f923cfc912298a5949737e9504b1ca24f29eda8d04d05ece/regex-2026.7.10-cp313-cp313-win_amd64.whl", hash = "sha256:5e792367e5f9b4ffb8cad93f1beaa91837056b94da98aa5c65a0db0c1b474927", size = 277722, upload-time = "2026-07-10T19:48:07.318Z" },
4995
+ { url = "https://files.pythonhosted.org/packages/00/a6/9d8935aaa940c388496aa1a0c82669cc4b5d06291c2712d595e3f0cf16d3/regex-2026.7.10-cp313-cp313-win_arm64.whl", hash = "sha256:82ab8330e7e2e416c2d42fcec67f02c242393b8681014750d4b70b3f158e1f08", size = 277059, upload-time = "2026-07-10T19:48:08.977Z" },
4996
+ { url = "https://files.pythonhosted.org/packages/7d/e9/26decfd3e85c09e42ff7b0d23a6f51085ca4c268db15f084928ca33459c6/regex-2026.7.10-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:2b93eafd92c4128bab2f93500e8912cc9ecb3d3765f6685b902c6820d0909b6b", size = 501508, upload-time = "2026-07-10T19:48:10.668Z" },
4997
+ { url = "https://files.pythonhosted.org/packages/38/a5/5b167cebde101945690219bf34361481c9f07e858a4f46d9996b80ec1490/regex-2026.7.10-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:3f03b92fb6ec739df042e45b06423fc717ecf0063e07ffe2897f7b2d5735e1e8", size = 299705, upload-time = "2026-07-10T19:48:12.544Z" },
4998
+ { url = "https://files.pythonhosted.org/packages/f6/20/7909be4b9f449f8c282c14b6762d59aa722aeaeebe7ee4f9bb623eeaa5e0/regex-2026.7.10-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:bb5aab464a0c5e03a97abad5bdf54517061ebbf72340d576e99ff661a42575cc", size = 294605, upload-time = "2026-07-10T19:48:14.495Z" },
4999
+ { url = "https://files.pythonhosted.org/packages/82/88/e52550185d6fda68f549b01239698697de47320fd599f5e880b1986b7673/regex-2026.7.10-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fadb07dbe36a541283ff454b1a268afd54b077d917043f2e1e5615372cb5f200", size = 811747, upload-time = "2026-07-10T19:48:16.197Z" },
5000
+ { url = "https://files.pythonhosted.org/packages/06/98/16c255c909714de1ee04da6ae30f3ee04170f300cdc0dcf57a314ee4816a/regex-2026.7.10-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:21150500b970b12202879dfd82e7fd809d8e853140fff84d08e57a90cf1e154e", size = 871203, upload-time = "2026-07-10T19:48:18.12Z" },
5001
+ { url = "https://files.pythonhosted.org/packages/3b/32/423ed27c9bae2092a453e853da2b6628a658d08bb5a6117db8d591183d85/regex-2026.7.10-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:a68b637451d64ba30ed8ae125c973fa834cc2d37dfa7f154c2b479015d477ba8", size = 917334, upload-time = "2026-07-10T19:48:19.952Z" },
5002
+ { url = "https://files.pythonhosted.org/packages/73/87/74dac8efb500db31cb000fda6bae2be45fc2fbf1fa9412f445fbb8acbe37/regex-2026.7.10-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:3e23458d8903e33e7d27196d7a311523dc4e2f4137a5f34e4dbd30c8d37ff33e", size = 816379, upload-time = "2026-07-10T19:48:21.616Z" },
5003
+ { url = "https://files.pythonhosted.org/packages/a8/9f/1859403654e3e030b288f06d49233c6a4f889d62b84c4ef3f3a28653173d/regex-2026.7.10-cp313-cp313t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:cae27622c094558e519abf3242cf4272db961d12c5c9a9ffb7a1b44b2627d5c6", size = 785563, upload-time = "2026-07-10T19:48:23.643Z" },
5004
+ { url = "https://files.pythonhosted.org/packages/6d/d8/35d30d6bdf1ef6a5430e8982607b3a6db4df1ddedbe001e43435585d88ba/regex-2026.7.10-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:ee877b6d78f9dff1da94fef51ae8cf9cce0967e043fdcc864c40b85cf293c192", size = 801415, upload-time = "2026-07-10T19:48:25.499Z" },
5005
+ { url = "https://files.pythonhosted.org/packages/f7/22/630f31f5ea4826167b2b064d9cac2093a5b3222af380aa432cfe1a5dabcd/regex-2026.7.10-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:2c66a8a1969cfd506d1e203c0005fd0fc3fe6efc83c945606566b6f9611d4851", size = 866560, upload-time = "2026-07-10T19:48:27.789Z" },
5006
+ { url = "https://files.pythonhosted.org/packages/8d/14/f5914a6d9c5bc63b9bed8c9a1169fb0be35dbe05cdc460e17d953031a366/regex-2026.7.10-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:2bc350e1c5fa250f30ab0c3e38e5cfdffcd82cb8af224df69955cab4e3003812", size = 772877, upload-time = "2026-07-10T19:48:29.563Z" },
5007
+ { url = "https://files.pythonhosted.org/packages/c1/0f/7c13999eef3e4186f7c79d4950fa56f041bf4de107682fb82c80db605ff9/regex-2026.7.10-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:53f54993b462f3f91fea0f2076b46deb6619a5f45d70dbd1f543f789d8b900ef", size = 856648, upload-time = "2026-07-10T19:48:31.282Z" },
5008
+ { url = "https://files.pythonhosted.org/packages/a4/71/a48e43909b6450fb48fa94e783bef2d9a37179258bc32ef2283955df7be7/regex-2026.7.10-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:cfcec18f7da682c4e2d82112829ce906569cb8d69fa6c26f3a50dfbed5ceb682", size = 803520, upload-time = "2026-07-10T19:48:33.275Z" },
5009
+ { url = "https://files.pythonhosted.org/packages/e0/b8/f037d1bf2c133cb24ceb6e7d81d08417080390eddab6ddfd701aa7091874/regex-2026.7.10-cp313-cp313t-win32.whl", hash = "sha256:a2d6d30be35ddd70ce0f8ee259a4c25f24d6d689a45a5ac440f03e6bcc5a21d1", size = 269168, upload-time = "2026-07-10T19:48:35.353Z" },
5010
+ { url = "https://files.pythonhosted.org/packages/b6/9c/eaac34f8452a838956e7e89852ad049678cdc1af5d14f72d3b3b658b1ea5/regex-2026.7.10-cp313-cp313t-win_amd64.whl", hash = "sha256:c57b6ad3f7a1bdd101b2966f29dc161adf49727b1e8d3e1e89db2eda8a75c344", size = 280004, upload-time = "2026-07-10T19:48:37.106Z" },
5011
+ { url = "https://files.pythonhosted.org/packages/cd/a9/e22e997587bc1d588b0b2cd0572027d39dd3a006216e40bbf0361688c51c/regex-2026.7.10-cp313-cp313t-win_arm64.whl", hash = "sha256:3d8ef9df02c8083c7b4b855e3cb87c8e0ebbcfea088d98c7a886aaefdf88d837", size = 279308, upload-time = "2026-07-10T19:48:38.907Z" },
5012
+ { url = "https://files.pythonhosted.org/packages/6a/4a/a7fa3ada9bd2d2ce20d56dfceec6b2a51afeed9bf3d8286355ceec5f0628/regex-2026.7.10-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:39f81d1fdf594446495f2f4edd8e62d8eda0f7a802c77ac596dc8448ad4cc5ca", size = 497087, upload-time = "2026-07-10T19:48:40.543Z" },
5013
+ { url = "https://files.pythonhosted.org/packages/0f/7e/ca0b1a87192e5828dbc16f16ae6caca9b67f25bf729a3348468a5ff52755/regex-2026.7.10-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:441edc66a54063f8269d1494fc8474d06605e71e8a918f4bcfd079ebda4ce042", size = 297307, upload-time = "2026-07-10T19:48:42.213Z" },
5014
+ { url = "https://files.pythonhosted.org/packages/b2/6c/fb40bb34275d3cd4d7a376d5fb2ea1f0f4a96fd884fa83c0c4ae869001bf/regex-2026.7.10-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:cfeb11990f59e59a0df26c648f0adfcbf27be77241250636f5769eb08db662be", size = 292163, upload-time = "2026-07-10T19:48:43.929Z" },
5015
+ { url = "https://files.pythonhosted.org/packages/18/0b/34cbea16c8fea9a18475a7e8f5837c70af451e738bfeb4eb5b029b7dc07a/regex-2026.7.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:460176b2db044a292baaee6891106566739657877af89a251cded228689015a6", size = 797064, upload-time = "2026-07-10T19:48:45.623Z" },
5016
+ { url = "https://files.pythonhosted.org/packages/87/77/f6805d97f15f5a710bdfd56a768f3468c978239daf9e1b15efd8935e1967/regex-2026.7.10-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9dc55698737aca028848bde418d6c51d74f2a5fd44872d3c8b56b626729adb89", size = 866155, upload-time = "2026-07-10T19:48:47.589Z" },
5017
+ { url = "https://files.pythonhosted.org/packages/a2/e3/a2a905807bba3bcd90d6ebbb67d27af2adf7d41708175cbc6b956a0c75f1/regex-2026.7.10-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:d3e10779f60c000213a5b53f518824bd07b3dc119333b26d70c6be1c27b5c794", size = 911596, upload-time = "2026-07-10T19:48:49.473Z" },
5018
+ { url = "https://files.pythonhosted.org/packages/a2/ca/a3126888b2c6f33c7e29144fedf85f6d5a52a400024fa045ad8fc0550ef1/regex-2026.7.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:38a5926601aaccf379512746b86eb0ac1d29121f6c776dac6ac5b31077432f2c", size = 800713, upload-time = "2026-07-10T19:48:51.452Z" },
5019
+ { url = "https://files.pythonhosted.org/packages/66/19/9d252fd969f726c8b56b4bacf910811cc70495a110907b3a7ccb96cd9cad/regex-2026.7.10-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:a72ecf5bfd3fc8d57927f7e3ded2487e144472f39010c3acaec3f6f3ff53f361", size = 777286, upload-time = "2026-07-10T19:48:53.443Z" },
5020
+ { url = "https://files.pythonhosted.org/packages/40/7a/5f1bf433fa446ecb3aab87bb402603dc9e171ef8052c1bb8690bb4e255a3/regex-2026.7.10-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:d50714405845c1010c871098558cfe5718fe39d2a2fab5f95c8863caeb7a82b3", size = 785826, upload-time = "2026-07-10T19:48:55.381Z" },
5021
+ { url = "https://files.pythonhosted.org/packages/99/ca/69f3a7281d86f1b592338007f3e535cc219d771448e2b61c0b56e4f9d05b/regex-2026.7.10-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:ec1c44cf9bd22079aac37a07cb49a29ced9050ab5bddf24e50aba298f1e34d90", size = 860957, upload-time = "2026-07-10T19:48:57.962Z" },
5022
+ { url = "https://files.pythonhosted.org/packages/bc/11/487ff55c8d515ec9dd60d7ba3c129eeaa9e527358ed9e8a054a9e9430f81/regex-2026.7.10-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:9e9aaef25a40d1f1e1bbb1d0eb0190c4a64a7a1750f7eb67b8399bed6f4fd2a6", size = 765959, upload-time = "2026-07-10T19:49:00.27Z" },
5023
+ { url = "https://files.pythonhosted.org/packages/73/e1/fa034e6fa8896a09bd0d5e19c81fdc024411ab37980950a0401dccee8f6d/regex-2026.7.10-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:e54e088dc64dd2766014e7cfe5f8bc45399400fd486816e494f93e3f0f55da06", size = 851447, upload-time = "2026-07-10T19:49:02.128Z" },
5024
+ { url = "https://files.pythonhosted.org/packages/ee/a5/b9427ed53b0e14c540dc436d56aaf57a19fb9183c6e7abd66f4b4368fbad/regex-2026.7.10-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:834271b1ff2cfa1f67fcd65a48bf11d11e9ab837e21bf79ce554efb648599ae8", size = 789418, upload-time = "2026-07-10T19:49:03.949Z" },
5025
+ { url = "https://files.pythonhosted.org/packages/ba/52/aab92420c8aa845c7bcbe68dc65023d4a9e9ea785abf0beb2198f0de5ba1/regex-2026.7.10-cp314-cp314-win32.whl", hash = "sha256:f988a1cec68058f71a38471813fba9e87dffe855582682e8a10e40ece12567a2", size = 272538, upload-time = "2026-07-10T19:49:05.833Z" },
5026
+ { url = "https://files.pythonhosted.org/packages/99/16/5c7050e0ef7dd8889441924ff0a2c33b7f0587c0ccb0953fe7ca997d673b/regex-2026.7.10-cp314-cp314-win_amd64.whl", hash = "sha256:2129e4a5e86f26926982d883dff815056f2e98220fdf630e59f961b578a26c43", size = 280796, upload-time = "2026-07-10T19:49:07.593Z" },
5027
+ { url = "https://files.pythonhosted.org/packages/e8/1a/4f6099d2ba271502fdb97e697bae2ed0213c0d87f2273fe7d21e2e401d12/regex-2026.7.10-cp314-cp314-win_arm64.whl", hash = "sha256:9cd5b6805396157b4cf993a6940cbb8663161f29b4df2458c1c9991f099299c5", size = 281017, upload-time = "2026-07-10T19:49:09.767Z" },
5028
+ { url = "https://files.pythonhosted.org/packages/19/02/4061fc71f64703e0df61e782c2894c3fbc089d277767eff6e16099581c73/regex-2026.7.10-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:103e8f3acc3dcede88c0331c8612766bdcfc47c9250c5477f0e10e0550b9da49", size = 501467, upload-time = "2026-07-10T19:49:11.952Z" },
5029
+ { url = "https://files.pythonhosted.org/packages/73/a5/8d42b2f3fd672908a05582effd0f88438bf9bb4e8e02d69a62c723e23601/regex-2026.7.10-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:538ddb143f5ca085e372def17ef3ed9d74b50ad7fc431bd85dc50a9af1a7076f", size = 299700, upload-time = "2026-07-10T19:49:14.067Z" },
5030
+ { url = "https://files.pythonhosted.org/packages/65/70/36fa4b46f73d268c0dbe77c40e62da2cd4833ee206d3b2e438c2034e1f36/regex-2026.7.10-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:6e3448e86b05ce87d4eb50f9c680860830f3b32493660b39f43957d6263e2eba", size = 294590, upload-time = "2026-07-10T19:49:15.883Z" },
5031
+ { url = "https://files.pythonhosted.org/packages/e0/a7/b6db1823f3a233c2a46f854fdc986f4fd424a84ed557b7751f2998efb266/regex-2026.7.10-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5eab9d3f981c423afd1a61db055cfe83553c3f6455949e334db04722469dd0a2", size = 811925, upload-time = "2026-07-10T19:49:17.97Z" },
5032
+ { url = "https://files.pythonhosted.org/packages/b6/7d/f8bee4c210c42c7e8b952bb9fb7099dd7fb2f4bd0f33d0d65a8ab08aafc0/regex-2026.7.10-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:177f930af3ad72e1045f8877540e0c43a38f7d328cf05f31963d0bd5f7ecf067", size = 871257, upload-time = "2026-07-10T19:49:19.943Z" },
5033
+ { url = "https://files.pythonhosted.org/packages/5d/78/22adf72e614ba0216b996e9aaef5712c23699e360ea127bb3d5ee1a7666f/regex-2026.7.10-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl", hash = "sha256:dd3b6d97beb39afb412f2c79522b9e099463c31f4c49ab8347c5a2ca3531c478", size = 917551, upload-time = "2026-07-10T19:49:22.069Z" },
5034
+ { url = "https://files.pythonhosted.org/packages/03/f7/ebc15a39e81e6b58da5f913b91fc293a25c6700d353c14d5cd25fc85712a/regex-2026.7.10-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8679f0652a183d93da646fcec8da8228db0be40d1595da37e6d74c2dc8c4713c", size = 816436, upload-time = "2026-07-10T19:49:24.131Z" },
5035
+ { url = "https://files.pythonhosted.org/packages/5c/33/20bc2bdd57f7e0fcc51be37e4c4d1bca7f0b4af8dc0a148c23220e689da8/regex-2026.7.10-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl", hash = "sha256:494b19a5805438aeb582de99f9d97603d8fd48e6f4cc74d0088bb292b4da3b70", size = 785935, upload-time = "2026-07-10T19:49:26.265Z" },
5036
+ { url = "https://files.pythonhosted.org/packages/b4/51/87ff99c849b56309c40214a72b54b0eef320d0516a8a516970cc8be1b725/regex-2026.7.10-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:0911e34151a5429d0325dae538ba9851ec0b62426bdfd613060cda8f1c36ec7f", size = 801494, upload-time = "2026-07-10T19:49:28.493Z" },
5037
+ { url = "https://files.pythonhosted.org/packages/16/11/fde67d49083fef489b7e0f841e2e5736516795b166c9867f05956c1e494b/regex-2026.7.10-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:b862572b7a5f5ed47d2ba5921e63bf8d9e3b682f859d8f11e0e5ca46f7e82173", size = 866549, upload-time = "2026-07-10T19:49:30.592Z" },
5038
+ { url = "https://files.pythonhosted.org/packages/e6/b5/31a156c36acf10181d88f55a66c688d5454a344e53ccc03d49f4a48a2297/regex-2026.7.10-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:3f361215e000d68a4aff375106637b83c80be36091d83ee5107ad3b32bd73f48", size = 773089, upload-time = "2026-07-10T19:49:32.661Z" },
5039
+ { url = "https://files.pythonhosted.org/packages/27/bb/734e978c904726664df47ae36ce5eca5065de5141185ae46efec063476a2/regex-2026.7.10-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:4533af6099543db32ef26abc2b2f824781d4eebb309ab9296150fd1a0c7eb07d", size = 856710, upload-time = "2026-07-10T19:49:35.289Z" },
5040
+ { url = "https://files.pythonhosted.org/packages/6d/e5/dc35cea074dbdcb9776c4b0542a3bc326ff08454af0768ef35f3fc66e7fa/regex-2026.7.10-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:668ab85105361d0200e3545bec198a1acfc6b0aeb5fff8897647a826e5a171be", size = 803621, upload-time = "2026-07-10T19:49:37.704Z" },
5041
+ { url = "https://files.pythonhosted.org/packages/a6/b2/124564af46bc0b592785610b3985315610af0a07f4cf21fa36e06c2398dd/regex-2026.7.10-cp314-cp314t-win32.whl", hash = "sha256:dd7715817a187edd7e2a2390908757f7ba42148e59cad755fb8ee1160c628eca", size = 274558, upload-time = "2026-07-10T19:49:39.926Z" },
5042
+ { url = "https://files.pythonhosted.org/packages/4e/9c/cd813ce9f3404c0443915175c1e339c5afd8fcda04310102eaf233015eef/regex-2026.7.10-cp314-cp314t-win_amd64.whl", hash = "sha256:78712d4954234df5ca24fdadb65a2ab034213f0cdfde376c272f9fc5e09866bb", size = 283687, upload-time = "2026-07-10T19:49:41.872Z" },
5043
+ { url = "https://files.pythonhosted.org/packages/1b/d3/3dae6a6ce46144940e64425e32b8573a393a009aeaf75fa6752a35399056/regex-2026.7.10-cp314-cp314t-win_arm64.whl", hash = "sha256:749b92640e1970e881fdf22a411d74bf9d049b154f4ef7232eeb9a90dd8be7f3", size = 283377, upload-time = "2026-07-10T19:49:43.985Z" },
5044
5044
  ]
5045
5045
 
5046
5046
  [[package]]
@@ -5222,14 +5222,14 @@ wheels = [
5222
5222
 
5223
5223
  [[package]]
5224
5224
  name = "s3transfer"
5225
- version = "0.19.0"
5225
+ version = "0.19.1"
5226
5226
  source = { registry = "https://pypi.org/simple" }
5227
5227
  dependencies = [
5228
5228
  { name = "botocore" },
5229
5229
  ]
5230
- sdist = { url = "https://files.pythonhosted.org/packages/f6/94/dcdaeb1713cab9c84def276cfac7388b17c7d9855bbcfe88d77e4dbafd44/s3transfer-0.19.0.tar.gz", hash = "sha256:ce436931687addc4c1712d52d40b32f53e88315723f107ffa20ba82b05a0f685", size = 165171, upload-time = "2026-06-16T19:44:51.599Z" }
5230
+ sdist = { url = "https://files.pythonhosted.org/packages/65/da/4bef7ce7bb989b222aa4785a413896dbec53306dfc59c6ce7d16a7ffbd6a/s3transfer-0.19.1.tar.gz", hash = "sha256:d3d6371dc3f1e5c5427b2b457bcf13bcf87bec334c95aed18642eae61f6926f3", size = 165354, upload-time = "2026-07-10T19:32:04.849Z" }
5231
5231
  wheels = [
5232
- { url = "https://files.pythonhosted.org/packages/46/5f/4c174edad94f82de888ac00a5ddd8d07b35609b6c94f0bdf4d74af57703e/s3transfer-0.19.0-py3-none-any.whl", hash = "sha256:777cc2415536f1debadb5c2ef7779275d0fc0fe0e042411cdd6caebeb2685262", size = 90101, upload-time = "2026-06-16T19:44:50.439Z" },
5232
+ { url = "https://files.pythonhosted.org/packages/24/23/e84c64ad0e8bc59cd1b2ef98def848deff0ef3456c542afe74d51e9e8c85/s3transfer-0.19.1-py3-none-any.whl", hash = "sha256:d5fd7005ee39307455ad5f310b5ea67f4b1960d7fed5b3671ee50c249de675de", size = 90072, upload-time = "2026-07-10T19:32:03.673Z" },
5233
5233
  ]
5234
5234
 
5235
5235
  [[package]]
@@ -1,3 +0,0 @@
1
- $ uv sync
2
- Resolved 276 packages in 201ms
3
- Checked 51 packages in 1ms