weave-python 0.59.0__tar.gz → 0.60.0__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 (172) hide show
  1. {weave_python-0.59.0 → weave_python-0.60.0}/PKG-INFO +1 -1
  2. weave_python-0.60.0/uv.lock +166 -0
  3. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/agent/v1/service_pb2_grpc.py +3 -3
  4. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/service_pb2_grpc.py +6 -6
  5. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/auth/v1/service_pb2_grpc.py +9 -9
  6. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/chat/v1/service_pb2_grpc.py +3 -3
  7. weave_python-0.60.0/weave/weaveapi/consolidation/v1/consolidation_pb2.py +107 -0
  8. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/consolidation/v1/consolidation_pb2.pyi +39 -43
  9. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/consolidation/v1/service_pb2_grpc.py +3 -3
  10. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/gateway/v1/service_pb2_grpc.py +9 -9
  11. weave_python-0.60.0/weave/weaveapi/ingestion/v1/ingestion_pb2.py +523 -0
  12. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/ingestion/v1/ingestion_pb2.pyi +262 -80
  13. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/ingestion/v1/service_pb2.py +24 -6
  14. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/ingestion/v1/service_pb2_grpc.py +160 -16
  15. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/ingestion/v1/service_pb2_grpc.pyi +56 -8
  16. weave_python-0.60.0/weave/weaveapi/ingestion/v1/table_pb2.py +92 -0
  17. weave_python-0.60.0/weave/weaveapi/ingestion/v1/table_pb2.pyi +587 -0
  18. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/model/v1/model_pb2.py +6 -6
  19. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/model/v1/model_pb2.pyi +21 -21
  20. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/model/v1/service_pb2.py +6 -6
  21. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/model/v1/service_pb2.pyi +21 -21
  22. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/model/v1/service_pb2_grpc.py +3 -3
  23. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/organization/v1/service_pb2_grpc.py +3 -3
  24. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/project/v1/service_pb2_grpc.py +3 -3
  25. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/provider/v1/service_pb2_grpc.py +3 -3
  26. weave_python-0.60.0/weave/weaveapi/retrieval/v1/retrieval_pb2.py +317 -0
  27. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/retrieval/v1/retrieval_pb2.pyi +822 -0
  28. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/retrieval/v1/service_pb2.py +16 -2
  29. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/retrieval/v1/service_pb2_grpc.py +97 -3
  30. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/retrieval/v1/service_pb2_grpc.pyi +32 -0
  31. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/task/v1/service_pb2_grpc.py +3 -3
  32. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/workflow/v1/service_pb2_grpc.py +3 -3
  33. weave_python-0.60.0/weave/weaveapi/workflow/v1/workflow_pb2_grpc.py +2 -0
  34. weave_python-0.60.0/weave/weaveapi/workflow/v1/workflow_pb2_grpc.pyi +21 -0
  35. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/consolidation.py +122 -122
  36. weave_python-0.60.0/weave/weavesql/weavedb/document_table.py +2625 -0
  37. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/ingestion.py +299 -121
  38. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/models.py +84 -6
  39. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/retrieval.py +32 -32
  40. weave_python-0.59.0/uv.lock +0 -155
  41. weave_python-0.59.0/weave/weaveapi/consolidation/v1/consolidation_pb2.py +0 -107
  42. weave_python-0.59.0/weave/weaveapi/ingestion/v1/ingestion_pb2.py +0 -507
  43. weave_python-0.59.0/weave/weaveapi/retrieval/v1/retrieval_pb2.py +0 -199
  44. {weave_python-0.59.0 → weave_python-0.60.0}/.github/runs-on.yml +0 -0
  45. {weave_python-0.59.0 → weave_python-0.60.0}/.github/workflows/format-lint.yaml +0 -0
  46. {weave_python-0.59.0 → weave_python-0.60.0}/.github/workflows/generate.yaml +0 -0
  47. {weave_python-0.59.0 → weave_python-0.60.0}/.github/workflows/gh-actions-lint.yaml +0 -0
  48. {weave_python-0.59.0 → weave_python-0.60.0}/.github/workflows/release.yaml +0 -0
  49. {weave_python-0.59.0 → weave_python-0.60.0}/.gitignore +0 -0
  50. {weave_python-0.59.0 → weave_python-0.60.0}/.python-version +0 -0
  51. {weave_python-0.59.0 → weave_python-0.60.0}/LICENSE +0 -0
  52. {weave_python-0.59.0 → weave_python-0.60.0}/README.md +0 -0
  53. {weave_python-0.59.0 → weave_python-0.60.0}/Taskfile.yaml +0 -0
  54. {weave_python-0.59.0 → weave_python-0.60.0}/buf.gen.yaml +0 -0
  55. {weave_python-0.59.0 → weave_python-0.60.0}/pyproject.toml +0 -0
  56. {weave_python-0.59.0 → weave_python-0.60.0}/renovate.json +0 -0
  57. {weave_python-0.59.0 → weave_python-0.60.0}/tools/sqlcgen/README.md +0 -0
  58. {weave_python-0.59.0 → weave_python-0.60.0}/tools/sqlcgen/sqlcgen.py +0 -0
  59. {weave_python-0.59.0 → weave_python-0.60.0}/tools/sqlcgen/test_sqlcgen.py +0 -0
  60. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/agent/v1/agent_pb2.py +0 -0
  61. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/agent/v1/agent_pb2.pyi +0 -0
  62. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/agent/v1/agent_pb2_grpc.py +0 -0
  63. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/agent/v1/agent_pb2_grpc.pyi +0 -0
  64. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/agent/v1/service_pb2.py +0 -0
  65. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/agent/v1/service_pb2.pyi +0 -0
  66. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/agent/v1/service_pb2_grpc.pyi +0 -0
  67. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/event_pb2.py +0 -0
  68. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/event_pb2.pyi +0 -0
  69. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/event_pb2_grpc.py +0 -0
  70. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/event_pb2_grpc.pyi +0 -0
  71. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/message_pb2.py +0 -0
  72. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/message_pb2.pyi +0 -0
  73. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/message_pb2_grpc.py +0 -0
  74. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/message_pb2_grpc.pyi +0 -0
  75. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/process_pb2.py +0 -0
  76. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/process_pb2.pyi +0 -0
  77. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/process_pb2_grpc.py +0 -0
  78. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/process_pb2_grpc.pyi +0 -0
  79. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/run_pb2.py +0 -0
  80. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/run_pb2.pyi +0 -0
  81. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/run_pb2_grpc.py +0 -0
  82. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/run_pb2_grpc.pyi +0 -0
  83. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/service_pb2.py +0 -0
  84. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/service_pb2.pyi +0 -0
  85. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/atc/v1/service_pb2_grpc.pyi +0 -0
  86. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/auth/v1/auth_pb2.py +0 -0
  87. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/auth/v1/auth_pb2.pyi +0 -0
  88. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/auth/v1/auth_pb2_grpc.py +0 -0
  89. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/auth/v1/auth_pb2_grpc.pyi +0 -0
  90. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/auth/v1/service_pb2.py +0 -0
  91. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/auth/v1/service_pb2.pyi +0 -0
  92. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/auth/v1/service_pb2_grpc.pyi +0 -0
  93. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/chat/v1/chat_pb2.py +0 -0
  94. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/chat/v1/chat_pb2.pyi +0 -0
  95. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/chat/v1/chat_pb2_grpc.py +0 -0
  96. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/chat/v1/chat_pb2_grpc.pyi +0 -0
  97. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/chat/v1/service_pb2.py +0 -0
  98. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/chat/v1/service_pb2.pyi +0 -0
  99. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/chat/v1/service_pb2_grpc.pyi +0 -0
  100. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/consolidation/v1/consolidation_pb2_grpc.py +0 -0
  101. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/consolidation/v1/consolidation_pb2_grpc.pyi +0 -0
  102. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/consolidation/v1/service_pb2.py +0 -0
  103. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/consolidation/v1/service_pb2.pyi +0 -0
  104. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/consolidation/v1/service_pb2_grpc.pyi +0 -0
  105. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/gateway/v1/gateway_pb2.py +0 -0
  106. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/gateway/v1/gateway_pb2.pyi +0 -0
  107. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/gateway/v1/gateway_pb2_grpc.py +0 -0
  108. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/gateway/v1/gateway_pb2_grpc.pyi +0 -0
  109. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/gateway/v1/service_pb2.py +0 -0
  110. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/gateway/v1/service_pb2.pyi +0 -0
  111. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/gateway/v1/service_pb2_grpc.pyi +0 -0
  112. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/ingestion/v1/ingestion_pb2_grpc.py +0 -0
  113. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/ingestion/v1/ingestion_pb2_grpc.pyi +0 -0
  114. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/ingestion/v1/service_pb2.pyi +0 -0
  115. /weave_python-0.59.0/weave/weaveapi/model/v1/model_pb2_grpc.py → /weave_python-0.60.0/weave/weaveapi/ingestion/v1/table_pb2_grpc.py +0 -0
  116. /weave_python-0.59.0/weave/weaveapi/model/v1/model_pb2_grpc.pyi → /weave_python-0.60.0/weave/weaveapi/ingestion/v1/table_pb2_grpc.pyi +0 -0
  117. /weave_python-0.59.0/weave/weaveapi/organization/v1/organization_pb2_grpc.py → /weave_python-0.60.0/weave/weaveapi/model/v1/model_pb2_grpc.py +0 -0
  118. /weave_python-0.59.0/weave/weaveapi/organization/v1/organization_pb2_grpc.pyi → /weave_python-0.60.0/weave/weaveapi/model/v1/model_pb2_grpc.pyi +0 -0
  119. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/model/v1/service_pb2_grpc.pyi +0 -0
  120. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/organization/v1/organization_pb2.py +0 -0
  121. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/organization/v1/organization_pb2.pyi +0 -0
  122. /weave_python-0.59.0/weave/weaveapi/project/v1/project_pb2_grpc.py → /weave_python-0.60.0/weave/weaveapi/organization/v1/organization_pb2_grpc.py +0 -0
  123. /weave_python-0.59.0/weave/weaveapi/project/v1/project_pb2_grpc.pyi → /weave_python-0.60.0/weave/weaveapi/organization/v1/organization_pb2_grpc.pyi +0 -0
  124. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/organization/v1/service_pb2.py +0 -0
  125. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/organization/v1/service_pb2.pyi +0 -0
  126. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/organization/v1/service_pb2_grpc.pyi +0 -0
  127. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/project/v1/project_pb2.py +0 -0
  128. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/project/v1/project_pb2.pyi +0 -0
  129. /weave_python-0.59.0/weave/weaveapi/provider/v1/provider_pb2_grpc.py → /weave_python-0.60.0/weave/weaveapi/project/v1/project_pb2_grpc.py +0 -0
  130. /weave_python-0.59.0/weave/weaveapi/provider/v1/provider_pb2_grpc.pyi → /weave_python-0.60.0/weave/weaveapi/project/v1/project_pb2_grpc.pyi +0 -0
  131. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/project/v1/service_pb2.py +0 -0
  132. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/project/v1/service_pb2.pyi +0 -0
  133. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/project/v1/service_pb2_grpc.pyi +0 -0
  134. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/provider/v1/provider_pb2.py +0 -0
  135. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/provider/v1/provider_pb2.pyi +0 -0
  136. /weave_python-0.59.0/weave/weaveapi/retrieval/v1/retrieval_pb2_grpc.py → /weave_python-0.60.0/weave/weaveapi/provider/v1/provider_pb2_grpc.py +0 -0
  137. /weave_python-0.59.0/weave/weaveapi/retrieval/v1/retrieval_pb2_grpc.pyi → /weave_python-0.60.0/weave/weaveapi/provider/v1/provider_pb2_grpc.pyi +0 -0
  138. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/provider/v1/service_pb2.py +0 -0
  139. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/provider/v1/service_pb2.pyi +0 -0
  140. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/provider/v1/service_pb2_grpc.pyi +0 -0
  141. /weave_python-0.59.0/weave/weaveapi/task/v1/task_pb2_grpc.py → /weave_python-0.60.0/weave/weaveapi/retrieval/v1/retrieval_pb2_grpc.py +0 -0
  142. /weave_python-0.59.0/weave/weaveapi/task/v1/task_pb2_grpc.pyi → /weave_python-0.60.0/weave/weaveapi/retrieval/v1/retrieval_pb2_grpc.pyi +0 -0
  143. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/retrieval/v1/service_pb2.pyi +0 -0
  144. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/task/v1/service_pb2.py +0 -0
  145. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/task/v1/service_pb2.pyi +0 -0
  146. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/task/v1/service_pb2_grpc.pyi +0 -0
  147. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/task/v1/task_pb2.py +0 -0
  148. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/task/v1/task_pb2.pyi +0 -0
  149. /weave_python-0.59.0/weave/weaveapi/workflow/v1/workflow_pb2_grpc.py → /weave_python-0.60.0/weave/weaveapi/task/v1/task_pb2_grpc.py +0 -0
  150. /weave_python-0.59.0/weave/weaveapi/workflow/v1/workflow_pb2_grpc.pyi → /weave_python-0.60.0/weave/weaveapi/task/v1/task_pb2_grpc.pyi +0 -0
  151. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/workflow/v1/service_pb2.py +0 -0
  152. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/workflow/v1/service_pb2.pyi +0 -0
  153. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/workflow/v1/service_pb2_grpc.pyi +0 -0
  154. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/workflow/v1/workflow_pb2.py +0 -0
  155. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weaveapi/workflow/v1/workflow_pb2.pyi +0 -0
  156. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/atcdb/event.py +0 -0
  157. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/atcdb/inspection.py +0 -0
  158. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/atcdb/mailbox.py +0 -0
  159. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/atcdb/models.py +0 -0
  160. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/atcdb/run_template.py +0 -0
  161. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/atcdb/snapshot.py +0 -0
  162. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/atcdb/team.py +0 -0
  163. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/agent.py +0 -0
  164. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/auth_identity.py +0 -0
  165. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/chat.py +0 -0
  166. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/document_security.py +0 -0
  167. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/model_catalog.py +0 -0
  168. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/organization.py +0 -0
  169. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/project.py +0 -0
  170. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/provider.py +0 -0
  171. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/task.py +0 -0
  172. {weave_python-0.59.0 → weave_python-0.60.0}/weave/weavesql/weavedb/workflow.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: weave-python
3
- Version: 0.59.0
3
+ Version: 0.60.0
4
4
  Author: Weave Labs
5
5
  License: FCL-1.0-ALv2
6
6
  License-File: LICENSE
@@ -0,0 +1,166 @@
1
+ version = 1
2
+ revision = 3
3
+ requires-python = ">=3.10"
4
+
5
+ [[package]]
6
+ name = "greenlet"
7
+ version = "3.5.1"
8
+ source = { registry = "https://pypi.org/simple" }
9
+ sdist = { url = "https://files.pythonhosted.org/packages/6d/6e/802acd792aebb2256fbbee8cacf2727faaeb6f240ac11008f09eae4414bc/greenlet-3.5.1.tar.gz", hash = "sha256:5a56aeb7d5d9cc4b3a735efb5095bd4b4f6f0e4f93e5ca876d0e2315137b7829", size = 197356, upload-time = "2026-05-20T15:05:03.917Z" }
10
+ wheels = [
11
+ { url = "https://files.pythonhosted.org/packages/1d/21/117c8710abb7f146d804a124c07eb5964a60b90d02b72452885aecc18efa/greenlet-3.5.1-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:7eacb17a9d41538a2bc4912eba5ef13823c83cb69e4d141d0813debe7163187f", size = 283510, upload-time = "2026-05-20T13:12:26.475Z" },
12
+ { url = "https://files.pythonhosted.org/packages/b9/f7/6762a56fa5f6c2295c449c6524e10ce481e381c994cc44d9d03aef0700fb/greenlet-3.5.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e5cc9606aa5f4e0bde0d3bd502b44f743864c3ffa5cfa1011b1e30f5aa02366f", size = 599696, upload-time = "2026-05-20T14:00:02.906Z" },
13
+ { url = "https://files.pythonhosted.org/packages/0f/05/85a511e68ee109aff0aa00b4b497806091dd2d82ce209e49c6e801bd5d92/greenlet-3.5.1-cp310-cp310-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:c3d35f87c7253b715d13d679e0783d845910144f282cb939fe1ba4ac8616269c", size = 612618, upload-time = "2026-05-20T14:05:39.202Z" },
14
+ { url = "https://files.pythonhosted.org/packages/89/b8/8b83d18ae07c46c019617f35afd7b47aab7f9b4fbb12fc637d681e10bdd8/greenlet-3.5.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:540dae7b956209af4d70a3be35927b4055f617763771e5e84a5255bea934d2f5", size = 612947, upload-time = "2026-05-20T13:14:23.469Z" },
15
+ { url = "https://files.pythonhosted.org/packages/5d/14/ad1f9fc9b82384c010212464a3702bd911f95dab2f1180bc6fbcfb1f958c/greenlet-3.5.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ed8cdb691169715a9a492844a83246f090182247d1a5031dc78a403f68ba1e97", size = 1571425, upload-time = "2026-05-20T14:02:22.671Z" },
16
+ { url = "https://files.pythonhosted.org/packages/46/1c/43b8203cf10f4292c9e3d270e9e5f5ade79115a0a0ca5ea6f1be5f8915a7/greenlet-3.5.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:9d59e840387076a51016777a9328b3f2c427c6f9208a6e958bad251be50a648d", size = 1638688, upload-time = "2026-05-20T13:14:30.026Z" },
17
+ { url = "https://files.pythonhosted.org/packages/ac/6e/0344b1e99f58f71715456e46492101fd2daa408957b8186ade0a4b515da7/greenlet-3.5.1-cp310-cp310-win_amd64.whl", hash = "sha256:b9152fca4a6466e114aaec745ae61cba739903a109754a9d4e1262f01e9259b1", size = 237763, upload-time = "2026-05-20T13:11:35.659Z" },
18
+ { url = "https://files.pythonhosted.org/packages/42/3c/ff890b466eaba2b0f5e6bdfff025f8c75f41b8ffdc3dbc3d24ad261e764a/greenlet-3.5.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:73f78f9b9f0a5c06e5c946ba1e8e36f5114923b6be109ee618c54f079c3ea14f", size = 284764, upload-time = "2026-05-20T13:09:10.204Z" },
19
+ { url = "https://files.pythonhosted.org/packages/81/0e/5e5457be3d256918f6a4756f073548a3f0190836e2cc94aa6d0d617a940b/greenlet-3.5.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a0cbed8bb44e23c5b199f888f4e4ce096b45ad9f25ff74a7ad0213875e936bb2", size = 603479, upload-time = "2026-05-20T14:00:04.757Z" },
20
+ { url = "https://files.pythonhosted.org/packages/6d/e1/f89a21d58d308298e6f275f13a1b472ed96c680b601a371b08be6a725989/greenlet-3.5.1-cp311-cp311-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a203a8bd0acb0701653d3bbb26e404854a68674139ed5cbb778830f42b09bb33", size = 615495, upload-time = "2026-05-20T14:05:40.87Z" },
21
+ { url = "https://files.pythonhosted.org/packages/75/de/af6cef182862d2ccd6975440d21c9058a77c3f9b469abf94e322dfd2e0e3/greenlet-3.5.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8a271fcd66c74615cda6a964fda3f304267a12e50a084472218a39bb0376f563", size = 614754, upload-time = "2026-05-20T13:14:24.947Z" },
22
+ { url = "https://files.pythonhosted.org/packages/1a/c6/50e520283a9f19388a7326b05f9e8637e566003475eacaadad04f558c68d/greenlet-3.5.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:ded7b068c7c31c1a8657d4fd42d886b3e051ae29f88b80c5ff9d502257b0f071", size = 1574097, upload-time = "2026-05-20T14:02:24.003Z" },
23
+ { url = "https://files.pythonhosted.org/packages/21/1c/13abd1f4860d987fa5e1170a01930d6e6cd40d328de487a3c9fdaff0ffd0/greenlet-3.5.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:d0932b81d72f552ded9d810d00021b64d89f2195a91ce115b893f943b7a4ab3c", size = 1641058, upload-time = "2026-05-20T13:14:31.83Z" },
24
+ { url = "https://files.pythonhosted.org/packages/f5/56/5f332b7705545eac2dc01b4e9254d24a793f2656d55d5cc6b94ee59d22ae/greenlet-3.5.1-cp311-cp311-win_amd64.whl", hash = "sha256:88e300d136eac057b2397aa1cfd7328b4c87c7eb66a09c7bc6a1292234db474e", size = 238089, upload-time = "2026-05-20T13:14:03.229Z" },
25
+ { url = "https://files.pythonhosted.org/packages/d9/a9/a3c2fa886c5b94863fb0e61b3bc14610b7aa94cf4f17f8741b11708305fc/greenlet-3.5.1-cp311-cp311-win_arm64.whl", hash = "sha256:cc6ab7e555c8a112ad3a76e368e86e12a2754bcae1652a5602e133ec7b635523", size = 234989, upload-time = "2026-05-20T13:08:27.715Z" },
26
+ { url = "https://files.pythonhosted.org/packages/c4/37/4549f149c9797c21b32c2683c33522af22522099de128b2406672526d005/greenlet-3.5.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:fa4f98af3a528f0c3fd592a26df7f376f93329c8f4d987f6bb979057af8bf5e2", size = 286220, upload-time = "2026-05-20T13:07:28.463Z" },
27
+ { url = "https://files.pythonhosted.org/packages/38/ff/a4f436709716965eaab9f36ea7b906c8a927fbe32fb1372a2071d964f6b1/greenlet-3.5.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ffea73584b216150eab159b6d12348fb253e68757974de1e2c40d8a318ac89ed", size = 601585, upload-time = "2026-05-20T14:00:06.141Z" },
28
+ { url = "https://files.pythonhosted.org/packages/65/ad/54bc3fcee3ad368a61b19b67d88117f7a8c29727bf71fffdeda81fbd946e/greenlet-3.5.1-cp312-cp312-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:1072b4f9edcc1e192d9283a66a3e68d6b84c561de33a83d7858beb9ba1effe10", size = 614215, upload-time = "2026-05-20T14:05:42.675Z" },
29
+ { url = "https://files.pythonhosted.org/packages/40/69/b91cda0647df839483201545913514c2827ebea5e5ccdf931842763bc127/greenlet-3.5.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:add5217d68b31130f0beca584d7fef4878327d2e31642b66618a14eef312b63b", size = 611358, upload-time = "2026-05-20T13:14:26.37Z" },
30
+ { url = "https://files.pythonhosted.org/packages/59/90/3cf77e080350cd02fa307bb2abf05df48f4482c240275bbd2c203ba8bb1c/greenlet-3.5.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a5ea42a752d47a145eae922b605cd1634665ac3d5ec1e72402d5048e8d60d207", size = 1570475, upload-time = "2026-05-20T14:02:25.29Z" },
31
+ { url = "https://files.pythonhosted.org/packages/65/2c/18cece62045e74598c3c393f70dce4a63f56222015ba29a5d4eeb04f764c/greenlet-3.5.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c5551170cf4f5ff5623e9af81323751979fee2c731e2287b61f73cd27257b823", size = 1635625, upload-time = "2026-05-20T13:14:34.027Z" },
32
+ { url = "https://files.pythonhosted.org/packages/30/f5/310d104ddf41eb5a70f4c268d22508dfb0c3c8e86fec152be34d0d2ed819/greenlet-3.5.1-cp312-cp312-win_amd64.whl", hash = "sha256:3c8bb982ad117d29478ef8f5533e97df21f1e2befd17a299257b0c96d1371c0b", size = 238791, upload-time = "2026-05-20T13:10:39.018Z" },
33
+ { url = "https://files.pythonhosted.org/packages/62/90/ceca11f504cd23a8047a3dea31919adc48df9b626dd0c13f0d858734fdfd/greenlet-3.5.1-cp312-cp312-win_arm64.whl", hash = "sha256:80eb4b04dadc4e67df3fae179a32c4706a3f495bc7f22fc8a81115d5f5512188", size = 235580, upload-time = "2026-05-20T13:08:45.056Z" },
34
+ { url = "https://files.pythonhosted.org/packages/27/69/7f7e5372d998b81001899b1c0823c957aa413ba0f2662e65821611cc31e4/greenlet-3.5.1-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:51518ff74664078fc51bffcc6fc529b0df5ae58da192691cee765d45ce944a2b", size = 285060, upload-time = "2026-05-20T13:08:51.899Z" },
35
+ { url = "https://files.pythonhosted.org/packages/b1/bf/387f9b6b865fd2ae0d0be09e0004827295a01b71be76ed350dd1e28a91a4/greenlet-3.5.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1ffdb3c0bb002c99cd8f298957e046c3dbf6006b5b7cdf11a4e19194624a0a0a", size = 604370, upload-time = "2026-05-20T14:00:07.492Z" },
36
+ { url = "https://files.pythonhosted.org/packages/32/f5/169ce3d4e4c67291bd18f8cbe0299c9f3e45102c7f1fb3c14780c93e4532/greenlet-3.5.1-cp313-cp313-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7715a5a2c3378ba602c3a440558261e13a820bb53a82693aacd7b7f6d964e283", size = 616987, upload-time = "2026-05-20T14:05:44.237Z" },
37
+ { url = "https://files.pythonhosted.org/packages/ee/e5/7f2e41d5273be07e77560d61ea4e56485b4d6c316d2a84518c62d1364061/greenlet-3.5.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dc71ff466927a201b08305acac451ebe1aedfcea002f62f1f2f2ac2ac1e6a135", size = 613911, upload-time = "2026-05-20T13:14:27.539Z" },
38
+ { url = "https://files.pythonhosted.org/packages/c5/a4/fbdc67579b73615a1f91615e814303cc71e06128f7baaba87be79b8fb90c/greenlet-3.5.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cd443683db272ebaaca03af98c0b063ab30db70ea8a31a1559f35e3f7b744ccd", size = 1570689, upload-time = "2026-05-20T14:02:27.225Z" },
39
+ { url = "https://files.pythonhosted.org/packages/e6/b4/77abbe35078be39718a46cd49caf16bceb35662f97a34101dca28aa98e47/greenlet-3.5.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:089fff7a6ce8d9316d1f65ebc00273a56be258c1725b32b94de90a3a979557e1", size = 1635602, upload-time = "2026-05-20T13:14:36.344Z" },
40
+ { url = "https://files.pythonhosted.org/packages/37/f7/129f27ca700845b8ee8ca88ce7f43435a1239c2eddb7677fc938822762cf/greenlet-3.5.1-cp313-cp313-win_amd64.whl", hash = "sha256:110a1ca7b49b014b097f6078272c3f4ed31af45b254de5228b79adba879f6af9", size = 238683, upload-time = "2026-05-20T13:11:50.57Z" },
41
+ { url = "https://files.pythonhosted.org/packages/6d/5c/a485a36e87df8d8fd0632ee01511244f5156a20ed3746cc6599340326395/greenlet-3.5.1-cp313-cp313-win_arm64.whl", hash = "sha256:f16ba1efc0715b680a18b8123d90dad887c6112ae3555b4b5c32c149540c6b4e", size = 235499, upload-time = "2026-05-20T13:12:42.028Z" },
42
+ { url = "https://files.pythonhosted.org/packages/8a/cb/c62454606daf5640369c94d8a9dd540599b1bfc090e2d2180cb77f4038d2/greenlet-3.5.1-cp314-cp314-macosx_11_0_universal2.whl", hash = "sha256:d8ab31c9de8651a2facdd5c5bb0011f2380dd1a7af78ce2adf4b56095294fc07", size = 285579, upload-time = "2026-05-20T13:08:56.396Z" },
43
+ { url = "https://files.pythonhosted.org/packages/ec/71/c4270398c2eba968a6071af1dfbdcaeee6ec1c24bc8b435b8cc452700da6/greenlet-3.5.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5e300185139abc337ade480c327183adf42a875ac7181bfe66d7d4efea31fbea", size = 651106, upload-time = "2026-05-20T14:00:09.448Z" },
44
+ { url = "https://files.pythonhosted.org/packages/1a/ab/71e34b78a44ec271fb5f550c17bc46d301ddc5953890d935f270b0dcdb5a/greenlet-3.5.1-cp314-cp314-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7ffdb990dcaa0234cf9845aead5df2e3c3a8b6507d409274dd87e0d5ab05ffc2", size = 663478, upload-time = "2026-05-20T14:05:45.88Z" },
45
+ { url = "https://files.pythonhosted.org/packages/77/96/4efd6fa5c62c85426a0c19077a586258ebc3a2a146ff2493e4312a697a22/greenlet-3.5.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2f82b3597e9d83b63408affed0b48fd0f54935edac4302237b9a837be0dae33c", size = 660800, upload-time = "2026-05-20T13:14:29.129Z" },
46
+ { url = "https://files.pythonhosted.org/packages/7a/e0/6c71401a25cac7000261304e866a2f2cc04dc74810d40e2f118aa4799495/greenlet-3.5.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:c0141e37414c10164e702b8fb1473304221ad98f71600850c6ef7ff4880feba0", size = 1617518, upload-time = "2026-05-20T14:02:28.662Z" },
47
+ { url = "https://files.pythonhosted.org/packages/41/26/c5c06643e8c0af9e7bf18e16cb51d0ab7625155f0392e1c9015d66d556cd/greenlet-3.5.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:50ae25a67bea74ea41fb14b960bc532df73eb713417b2d61892dced82fe8d3bc", size = 1681593, upload-time = "2026-05-20T13:14:39.417Z" },
48
+ { url = "https://files.pythonhosted.org/packages/8a/bd/e11a108317485075e68af9d23039619b86b28130c3b50d227d42edece64b/greenlet-3.5.1-cp314-cp314-win_amd64.whl", hash = "sha256:8a17c42330e261299766b75ac1ea32caa437a9453c8f65d16a13140db378ecd3", size = 239800, upload-time = "2026-05-20T13:09:30.128Z" },
49
+ { url = "https://files.pythonhosted.org/packages/47/f8/8e8e8417b7bf28639a5a56356ef934d0375e1d0c70a57e04d7701e870ffe/greenlet-3.5.1-cp314-cp314-win_arm64.whl", hash = "sha256:7b5f5fae05b8ac6d176a61b60c394a8cbdc2b5b91b81793066e68745cf165e54", size = 236862, upload-time = "2026-05-20T13:09:10.498Z" },
50
+ { url = "https://files.pythonhosted.org/packages/90/12/41bf27fde4d3605d3773ae57751eda182b8be2f5398011c041173b1d9534/greenlet-3.5.1-cp314-cp314t-macosx_11_0_universal2.whl", hash = "sha256:ea8da1e900d758d078810d4255d8c6aa572181896a31ec79d779eb79c3adc9ad", size = 293637, upload-time = "2026-05-20T13:12:35.529Z" },
51
+ { url = "https://files.pythonhosted.org/packages/44/44/ba14b23e9757707050c2f397d305bbcae62e5d7cad122f8b6baec5ae4a1f/greenlet-3.5.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a19570c52a21420dcbc94e661994bc325c0b5b11304540fed514586da5dc8f2e", size = 650840, upload-time = "2026-05-20T14:00:11.079Z" },
52
+ { url = "https://files.pythonhosted.org/packages/a8/37/5ddc2b686a6844f91abecef43411842426da2e1573f60b49ecf2547f4ae1/greenlet-3.5.1-cp314-cp314t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:3d955c89b75eeca4723d7cc14135f393cd47c32e2a6cb4a8e4c6e760a26b0986", size = 656416, upload-time = "2026-05-20T14:05:47.118Z" },
53
+ { url = "https://files.pythonhosted.org/packages/e1/f0/d17510297c35a2992712f0bf84de3779749999f7d3d63aa1f09db7c62dbe/greenlet-3.5.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:de2daaaebd1a5aa88c49045b6baf9310b3263796bd88db713edf37cf53e7bb4e", size = 654397, upload-time = "2026-05-20T13:14:30.696Z" },
54
+ { url = "https://files.pythonhosted.org/packages/37/eb/147387705bb89092645b012586e7273cb5ed3c90ef7eaf3a69173eaf0209/greenlet-3.5.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:3bfbd69cc349e43bf3a8ae1c85548ff0718efc887615c2db16c3833d7b0b072d", size = 1614469, upload-time = "2026-05-20T14:02:30.192Z" },
55
+ { url = "https://files.pythonhosted.org/packages/a6/4e/37ee0da7732b7aa9896f17e15579a9df34b9fcb9dd494f0adfa749af6623/greenlet-3.5.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:4378720dd888136c27215a0214d32a4d37c3852765d45bc37aad0623423cfd78", size = 1675115, upload-time = "2026-05-20T13:14:40.972Z" },
56
+ { url = "https://files.pythonhosted.org/packages/57/f3/97dfcf4a6eb5077f8a672234216fb5923eb89f2cab7081cb10b2cf75b605/greenlet-3.5.1-cp314-cp314t-win_amd64.whl", hash = "sha256:45718441607f9325d948db98cbc691276059316d0358c188c246da4e1d4d23d2", size = 245246, upload-time = "2026-05-20T13:12:22.646Z" },
57
+ { url = "https://files.pythonhosted.org/packages/5d/73/d7f72e34b582f694f4a9b248162db7b09cc458a259ba8f0c0bfa1a34ea7d/greenlet-3.5.1-cp315-cp315-macosx_11_0_universal2.whl", hash = "sha256:2baee5ca02031757ffe8cc3d69f0cc0aec7065ce362622da74f32d3bcab1c541", size = 285575, upload-time = "2026-05-20T13:12:07.043Z" },
58
+ { url = "https://files.pythonhosted.org/packages/df/59/fa9c6e87dc8ad27a95dabe2f29f372b733d05a8a67470f6c901ed9975655/greenlet-3.5.1-cp315-cp315-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9b1ec3274918a81d3ea778b9e75b56b72b33f300edb6cf7f3a7fe1dae56683de", size = 656428, upload-time = "2026-05-20T14:00:12.556Z" },
59
+ { url = "https://files.pythonhosted.org/packages/f6/f9/e753408871eaa61dfe35e619cfc67512b036fde99893685d50eea9e07146/greenlet-3.5.1-cp315-cp315-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:111e2390ffffc47d5840b01711dd7fac07d4c09283d0283e7f3264b14e284c64", size = 667064, upload-time = "2026-05-20T14:05:48.662Z" },
60
+ { url = "https://files.pythonhosted.org/packages/96/27/5565b5b40389f1c7753003a07e21892fda8660926787036d5bc0308b8113/greenlet-3.5.1-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e630136e905fe5ff43e86945ae41220b6d1470956a39220e708110ac48d01ea5", size = 665697, upload-time = "2026-05-20T13:14:32.943Z" },
61
+ { url = "https://files.pythonhosted.org/packages/cf/82/e7de4178c0c2d1c9a5a3be3cc0b33e46a85b3ee4a77c071bf7ad8600e079/greenlet-3.5.1-cp315-cp315-musllinux_1_2_aarch64.whl", hash = "sha256:975eac34b44a7077ca4d421348455b94f0f518246a7f14bc6d2fdcfe5b584368", size = 1621256, upload-time = "2026-05-20T14:02:31.91Z" },
62
+ { url = "https://files.pythonhosted.org/packages/00/10/f2dddcf7dacac17dfc68691809589adad06135eb28930429cf58a6467a2f/greenlet-3.5.1-cp315-cp315-musllinux_1_2_x86_64.whl", hash = "sha256:9ab3c3a0b2ae6198e67c898dad5215a49f9ae0d0081b3c3ec59f333e39eeca26", size = 1685956, upload-time = "2026-05-20T13:14:42.55Z" },
63
+ { url = "https://files.pythonhosted.org/packages/22/17/4a232b32133230ada52f70e9d7f5b65b0caef8772f01849bd8d149e7e4ca/greenlet-3.5.1-cp315-cp315-win_amd64.whl", hash = "sha256:cbfc69be86e10dcfef5b1e6269d1d6926552aa89ee39e1de3353360c1b6989ab", size = 239802, upload-time = "2026-05-20T13:13:15.481Z" },
64
+ { url = "https://files.pythonhosted.org/packages/c2/ae/4e623a7e6d4d2a5f4cb8e4c82de4169fc637942caae68d6e676b8a128ac5/greenlet-3.5.1-cp315-cp315-win_arm64.whl", hash = "sha256:92fd6d44ac5e5a887c8a5dc4a8ba0ba908527c31c12f78c6bc7dcfe8aab279f6", size = 236853, upload-time = "2026-05-20T13:15:37.301Z" },
65
+ { url = "https://files.pythonhosted.org/packages/7a/57/816d9cff29119da3505b3d6a5e14a8af89006ac36f47f891ff293ee05af1/greenlet-3.5.1-cp315-cp315t-macosx_11_0_universal2.whl", hash = "sha256:a6fdf2433a5441ef9a95464f7c3e674775da1c8c1177fff311cee1acad4626ed", size = 293877, upload-time = "2026-05-20T13:10:19.078Z" },
66
+ { url = "https://files.pythonhosted.org/packages/23/a1/59b0a7c7d140ff1a75626680b9a9899b79a9176cab298b394968fb023295/greenlet-3.5.1-cp315-cp315t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7546556f0d649f99f6a361098a55f761181bb2ea12ff150bb16d26092ad88244", size = 655333, upload-time = "2026-05-20T14:00:14.758Z" },
67
+ { url = "https://files.pythonhosted.org/packages/72/1b/5efe127597625042218939d01855109f352779050768b670b52edcc16a6c/greenlet-3.5.1-cp315-cp315t-manylinux_2_24_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:d5ee3ea898009fa898f85f9982255d35278c477bebe185beca249cab42d4526c", size = 659443, upload-time = "2026-05-20T14:05:50.159Z" },
68
+ { url = "https://files.pythonhosted.org/packages/6c/6d/c404246ea4d22d097a7426d0efb5b781bd7eb67715f09e79001bd552ab18/greenlet-3.5.1-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:a5c81f74d204d3edd136ebfd50dce53acbb776995d721a0fe801626cfc93b8cd", size = 658356, upload-time = "2026-05-20T13:14:35.091Z" },
69
+ { url = "https://files.pythonhosted.org/packages/51/02/f8ee37fb6d2219329f350af241c27fcf12df57e723d11f6fc6d3bacdadaa/greenlet-3.5.1-cp315-cp315t-musllinux_1_2_aarch64.whl", hash = "sha256:2c18ef16bf6d4dd410e4dd52996888ea1497be26892fe5bbc73580aba4287b8e", size = 1619216, upload-time = "2026-05-20T14:02:33.403Z" },
70
+ { url = "https://files.pythonhosted.org/packages/93/c5/3dc9475ace2c7a3680da12372cddd7f1ac874eb410a1ac48d3e9dab83782/greenlet-3.5.1-cp315-cp315t-musllinux_1_2_x86_64.whl", hash = "sha256:17d86354f0ae6b61bf9be5148d0dd34e06c3cb7c602c671f79f29ac3b150e659", size = 1678427, upload-time = "2026-05-20T13:14:43.71Z" },
71
+ { url = "https://files.pythonhosted.org/packages/df/4e/750c15c317a41ffb36f0bf40b933e3d744a7dede61889f74443ea69690cf/greenlet-3.5.1-cp315-cp315t-win_amd64.whl", hash = "sha256:e7516cf6ae6b8a582c2770a0caed47b8a48373ed732c33d69a72913ae6ac923e", size = 245225, upload-time = "2026-05-20T13:13:59.366Z" },
72
+ { url = "https://files.pythonhosted.org/packages/4f/fd/d3baea2eeb7b617efd47e87ca06e2ec2c6118d303aa9e918e0ce16eadc10/greenlet-3.5.1-cp315-cp315t-win_arm64.whl", hash = "sha256:5028648bf2253ec4745add746129d3904121fa7fe871a76bed23c5720573ce0a", size = 239590, upload-time = "2026-05-20T13:13:37.382Z" },
73
+ ]
74
+
75
+ [[package]]
76
+ name = "protobuf"
77
+ version = "7.35.0"
78
+ source = { registry = "https://pypi.org/simple" }
79
+ sdist = { url = "https://files.pythonhosted.org/packages/60/fd/5b1491d9e4b586d621c54f4c36b888714164b6875f8d6afa3f9072906a51/protobuf-7.35.0.tar.gz", hash = "sha256:a2efd84605f41e559f1881b0912b44099d0a2ac9bf46b3474823f10fb393b0e6", size = 458677, upload-time = "2026-05-19T23:02:29.197Z" }
80
+ wheels = [
81
+ { url = "https://files.pythonhosted.org/packages/83/ee/93d06e358a4aa32280b00e722d3ea0a1f25fc3cc5778d80581c9cca2c10e/protobuf-7.35.0-cp310-abi3-macosx_10_9_universal2.whl", hash = "sha256:66be6c513931c794fa92c080ffee41671390da3d79da219cf9c0c0907f035dda", size = 433225, upload-time = "2026-05-19T23:02:19.884Z" },
82
+ { url = "https://files.pythonhosted.org/packages/8b/39/1c76c2da93f3c507e958e0aecee2391cc44d4625de6c728bbc555195b5a8/protobuf-7.35.0-cp310-abi3-manylinux2014_aarch64.whl", hash = "sha256:fcbe42a4ac09d3ec9c987ddfcd956afd0b15f1ff613bd8371bde9405ffd5c8e5", size = 328847, upload-time = "2026-05-19T23:02:22.3Z" },
83
+ { url = "https://files.pythonhosted.org/packages/91/1a/39f7ce90a238c1a987a4d81ec26379e02ca0aff367de68e4a1fa474215b9/protobuf-7.35.0-cp310-abi3-manylinux2014_s390x.whl", hash = "sha256:4cbf5cc286130e06a6c9bbefac442431173906dfcc979712183d4adcc01b37ee", size = 344030, upload-time = "2026-05-19T23:02:23.591Z" },
84
+ { url = "https://files.pythonhosted.org/packages/70/5b/6baf9008817964454055ff3fe65f1de0b5f1e26c80c82f7fb108b7cd4ea3/protobuf-7.35.0-cp310-abi3-manylinux2014_x86_64.whl", hash = "sha256:6c0f98f10c8a05ea30f8993dfef2de093d27b490fdae78bb60c8343795d55011", size = 327130, upload-time = "2026-05-19T23:02:24.637Z" },
85
+ { url = "https://files.pythonhosted.org/packages/8e/e5/e46adb0badc388bfb84877a5f9f026aff63f60e611016cf64dbe77e05446/protobuf-7.35.0-cp310-abi3-win32.whl", hash = "sha256:4c4617b83ade0e279d1d2bfe04025a1adb87f9ed657de038620dc0ff959357f6", size = 428946, upload-time = "2026-05-19T23:02:25.741Z" },
86
+ { url = "https://files.pythonhosted.org/packages/a7/ab/547fbd9e16d879dd13c167478f8ae0a83a428008ca07a5e06acdc23ad473/protobuf-7.35.0-cp310-abi3-win_amd64.whl", hash = "sha256:f05bcadf9a2a6b8dda047007075135fb7d08c73d9177aabc067e1be46881a201", size = 439996, upload-time = "2026-05-19T23:02:26.808Z" },
87
+ { url = "https://files.pythonhosted.org/packages/b8/ef/50433d346c56657a70d27f156c7b349ac59a068b01de4eb796e747eecc43/protobuf-7.35.0-py3-none-any.whl", hash = "sha256:c13f325cf242bad135c350629eeb5d54b24228eb472fb3e2e9ebbd4c5dc20ca0", size = 171659, upload-time = "2026-05-19T23:02:27.842Z" },
88
+ ]
89
+
90
+ [[package]]
91
+ name = "sqlalchemy"
92
+ version = "2.0.50"
93
+ source = { registry = "https://pypi.org/simple" }
94
+ dependencies = [
95
+ { name = "greenlet", marker = "platform_machine == 'AMD64' or platform_machine == 'WIN32' or platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'ppc64le' or platform_machine == 'win32' or platform_machine == 'x86_64'" },
96
+ { name = "typing-extensions" },
97
+ ]
98
+ sdist = { url = "https://files.pythonhosted.org/packages/57/da/6fbf010c8ebb347679d0d100b22fe9ba5e13fd04046c5df7280d2f0bf706/sqlalchemy-2.0.50.tar.gz", hash = "sha256:af5607d11ef90fd6a5c0549fe0045dce1663d427426bcfb506dcb5346a85a3b9", size = 9907424, upload-time = "2026-05-24T19:20:04.018Z" }
99
+ wheels = [
100
+ { url = "https://files.pythonhosted.org/packages/70/a9/812a775bd8c1af0966d660238d005baf25e9bced1f038c8e71f00aa637a7/sqlalchemy-2.0.50-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7af6eeb84985bf840ba779018ff9424d61ff69b52e66b8789d3c8da7bf5341b2", size = 2161617, upload-time = "2026-05-24T20:00:00.761Z" },
101
+ { url = "https://files.pythonhosted.org/packages/d5/74/5a6bc5496e9be8f740fbf80f9e6bd4ab965c8a80870eb07ab015e360957a/sqlalchemy-2.0.50-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0fe7822866f3a9fc5f3db21a290ce8961a53050115f05edf9402b6a5feb92a9f", size = 3244104, upload-time = "2026-05-24T20:07:38.158Z" },
102
+ { url = "https://files.pythonhosted.org/packages/81/55/b260d8df2adc9bb0bf294f67b5f802ff0d84d99442b536b9efd0ea72d447/sqlalchemy-2.0.50-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e8e1b0f6a4dcd9b4839e2320afb5df37a6981cbc20ff9c423ae11c5537bdbd21", size = 3243039, upload-time = "2026-05-24T20:14:23.765Z" },
103
+ { url = "https://files.pythonhosted.org/packages/e5/6d/58714005cbf370f16c3f30d30324a43be10069efcfe764f7236a2e851947/sqlalchemy-2.0.50-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e195687f1af431c9515416288373b323b6eb599f774409814e89e9d603a56e39", size = 3195017, upload-time = "2026-05-24T20:07:40.086Z" },
104
+ { url = "https://files.pythonhosted.org/packages/30/e8/67527fee039bd3e1a6ce3f03d2b62fd87ab9099c17052810d79496727b66/sqlalchemy-2.0.50-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:ea1a8a2db4b2217d456c8d7a873bfc605f06fe3584d315264ea18c2a17585d0b", size = 3215308, upload-time = "2026-05-24T20:14:26.034Z" },
105
+ { url = "https://files.pythonhosted.org/packages/94/b2/dd3155a6a6706cb89adecf5ee6e0512f7b0ee5cf3e6f4cde67d3c20ebfda/sqlalchemy-2.0.50-cp310-cp310-win32.whl", hash = "sha256:68b154b08088b4ec32bb4d2958bfbb50e57549f91a4cd3e7f928e3553ed69031", size = 2121637, upload-time = "2026-05-24T20:08:06.401Z" },
106
+ { url = "https://files.pythonhosted.org/packages/93/a1/a09c463ee3e7764b5ce5bd19a7f0b6eefbde62e637439ab58498cdbd6b47/sqlalchemy-2.0.50-cp310-cp310-win_amd64.whl", hash = "sha256:66e374271ecb7101273f57af1a62446a953d327eec4f8089147de57c591bbacc", size = 2144673, upload-time = "2026-05-24T20:08:07.936Z" },
107
+ { url = "https://files.pythonhosted.org/packages/b6/5d/3172686af1770e4de2805f919a51441085f589ddadf3dd76ec582f84f497/sqlalchemy-2.0.50-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1aa6e403663a9c43c8fef7ce4bdb4cf48bcd8d352e91deda2a99f963270bd508", size = 2161366, upload-time = "2026-05-24T20:00:02.061Z" },
108
+ { url = "https://files.pythonhosted.org/packages/0f/90/e98dedea3c3e663a17afcd003a34ba45efdac2cea3b6f2e4585e2b1e2537/sqlalchemy-2.0.50-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:51b637a84f9fa35ae1f9017e786cb142974a25305085e1b378b3647a67f65ad3", size = 3318926, upload-time = "2026-05-24T20:07:42.369Z" },
109
+ { url = "https://files.pythonhosted.org/packages/3b/4f/501308c2babb62c11753ecb4ee88ba9eef019419a4d6cbf7cb13e2bad353/sqlalchemy-2.0.50-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:2dab927761d9108550f0cf8e66ff21af56f907a0ce0a689793db615e2b55f62c", size = 3319199, upload-time = "2026-05-24T20:14:28.551Z" },
110
+ { url = "https://files.pythonhosted.org/packages/ac/39/d88996c5e03ed6248c3a788d20f0b8d8b376b9f8a495e4bab9df7c72d2f8/sqlalchemy-2.0.50-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:545eae198d37bcf837a10ede3684e2af32458d6f35c597c35c2de7502dc38fc4", size = 3270301, upload-time = "2026-05-24T20:07:44.917Z" },
111
+ { url = "https://files.pythonhosted.org/packages/42/1b/1ae0e65161b51cc43e5ca75430ef79d80e23b5042d645586c2c342c3b92e/sqlalchemy-2.0.50-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0fec460e18cdbb4c7773531122ce9a27e96c6ca17af3933941d94da475ad2c86", size = 3293465, upload-time = "2026-05-24T20:14:30.501Z" },
112
+ { url = "https://files.pythonhosted.org/packages/83/29/17c0003f2c0dfa6d1b97672475707e3ec5980db09defd7fa20beb6833bbd/sqlalchemy-2.0.50-cp311-cp311-win32.whl", hash = "sha256:e6e814658818fd165e749e3d8490ef16cc7f379a118c37ada8b0589ffbaaac22", size = 2120694, upload-time = "2026-05-24T20:08:09.237Z" },
113
+ { url = "https://files.pythonhosted.org/packages/c9/18/280d00654cc19d1fccf236fa5070f6dd04b84dde6f1b2e637bde0ff340a7/sqlalchemy-2.0.50-cp311-cp311-win_amd64.whl", hash = "sha256:1c5f858fe79c9f5d8fda065c06186356acb7f8df3cd52dbd5ee3f200e4b144f5", size = 2145315, upload-time = "2026-05-24T20:08:10.952Z" },
114
+ { url = "https://files.pythonhosted.org/packages/be/b0/a9d19b43f38f878b1278bca5b00b909f7540d41494396dd2561f9ad0956d/sqlalchemy-2.0.50-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:23ae23d8b9d344d30d0a92f06d45825024a5790f1c1dd4cf452636a50d3e58cb", size = 2159807, upload-time = "2026-05-24T19:27:53.086Z" },
115
+ { url = "https://files.pythonhosted.org/packages/f5/2c/191dd58a248fd2cfd4780fa82c375c505e4ad98c8b522fa69ec492130d77/sqlalchemy-2.0.50-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:47b71b933e7b4ebad407c8fdfd70d2c4f08b78b3238bb30eebdd6eb32ca51b89", size = 3343358, upload-time = "2026-05-24T20:09:29.279Z" },
116
+ { url = "https://files.pythonhosted.org/packages/8a/2b/514fce8a7df81cf5bad7ff7865de7ac0c5776a38cc043475c4703eb7fe8b/sqlalchemy-2.0.50-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:110fdac56ace278949f00de805edacbd6141e382d992f9ba28238b3a0827a600", size = 3357994, upload-time = "2026-05-24T20:17:13.495Z" },
117
+ { url = "https://files.pythonhosted.org/packages/35/a6/a0e283f5494f92b0d77e319ff77e437b1ffe4a051ba67c81d53234825475/sqlalchemy-2.0.50-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:0f5e4ac70e9e757f6b3e87c0491ff034442ecd8dfd36d041a50564c322dafc0e", size = 3289399, upload-time = "2026-05-24T20:09:32.239Z" },
118
+ { url = "https://files.pythonhosted.org/packages/b7/96/1b07325ba71752d6a028b77d07bed1483ad545f794e8b1dc89b3ba3b3c68/sqlalchemy-2.0.50-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:724f3dcbe53dd0151e3cb5e7ec4ba4c620bede579caacd16275dc35ce06e8615", size = 3321216, upload-time = "2026-05-24T20:17:15.581Z" },
119
+ { url = "https://files.pythonhosted.org/packages/ed/8e/bad6ed253e8a99edfc99af02f7173ec48a1d3ed1b9b35a1b8bc1700900cc/sqlalchemy-2.0.50-cp312-cp312-win32.whl", hash = "sha256:1208050441471d003b7c8cb4054fb084f185cf35ac3f0ea270803865bca9939a", size = 2119194, upload-time = "2026-05-24T19:50:04.943Z" },
120
+ { url = "https://files.pythonhosted.org/packages/b6/2d/314a6690dda4b9cfc571eab1a63cf6fe6e1470aa3759ccda6aa016ee0f5a/sqlalchemy-2.0.50-cp312-cp312-win_amd64.whl", hash = "sha256:9d1af51558029a156a70986b7df88f042b3d158d7c8d8fb5072912d4b32d89c7", size = 2146186, upload-time = "2026-05-24T19:50:06.74Z" },
121
+ { url = "https://files.pythonhosted.org/packages/0b/c4/c42356b527296e9862f67990efce31ef78b4cf69cd3f80873a528a060320/sqlalchemy-2.0.50-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:06a9210bdc5f4298cff0781087e2ff45683922252dacc452846373a58761f093", size = 2156697, upload-time = "2026-05-24T19:27:54.764Z" },
122
+ { url = "https://files.pythonhosted.org/packages/60/a1/b1a70e3c4365ac7fe9e347f3710f19b562c866fb96d45e3c891588789a7b/sqlalchemy-2.0.50-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b53784972ade4f8174b9aa661f31a06f8a936d2cfdd602913ff3c6dd40ae873", size = 3284260, upload-time = "2026-05-24T20:09:34.195Z" },
123
+ { url = "https://files.pythonhosted.org/packages/3f/4a/f3ac3caa19f263d57b0a47f8c91bbf56583dc2d3fc63acfbf644abb24fe0/sqlalchemy-2.0.50-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:31648fa14460537e768a7303b078e4344d208e0d23e06867c1f376a227ed82db", size = 3302280, upload-time = "2026-05-24T20:17:17.825Z" },
124
+ { url = "https://files.pythonhosted.org/packages/66/55/ccada3e3d62254587819749a0bc69f41173eb48a6e385d10e66d32a9c88e/sqlalchemy-2.0.50-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:03f4323c980ad0e918cc9e5369b015f759f4e534db5bbaf4dc36832c10d05064", size = 3231580, upload-time = "2026-05-24T20:09:36.406Z" },
125
+ { url = "https://files.pythonhosted.org/packages/05/f6/6809349130a2de0e109e7f00fd7d431da9565b9b2868b32ee684754f672b/sqlalchemy-2.0.50-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:2b9dcc43afef8ac157cd92fce96985d6b8b0cfbd3df4d666f66b4d55a75d202f", size = 3269375, upload-time = "2026-05-24T20:17:20.34Z" },
126
+ { url = "https://files.pythonhosted.org/packages/48/84/278a811ef4e07be9c89dc5cdd7be833268509a66a68c4897cf585e67428f/sqlalchemy-2.0.50-cp313-cp313-win32.whl", hash = "sha256:60922d6599065ddca2c6f376b9aa2f41a6b85a271725e0909490bbc50b1998a5", size = 2117229, upload-time = "2026-05-24T19:50:08.215Z" },
127
+ { url = "https://files.pythonhosted.org/packages/f6/1c/067cc6187ed32d2ec222fe6d2643acc1659a6d0659f8a7cbc5ad3ae83280/sqlalchemy-2.0.50-cp313-cp313-win_amd64.whl", hash = "sha256:287086e67275a212c4582d166a6fb03a65ccc5551d80866270ce0dd9f34eccd3", size = 2143126, upload-time = "2026-05-24T19:50:09.691Z" },
128
+ { url = "https://files.pythonhosted.org/packages/df/32/10ac51b4be7cdecd7e93d069251c86dfbf70b7adbd7c67b48ccea6c49e1c/sqlalchemy-2.0.50-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c966932507a4d7d0a37314927dbfcd89720e3f37d2a1e3352e7ae7939fa8e8a0", size = 2158519, upload-time = "2026-05-24T19:27:56.472Z" },
129
+ { url = "https://files.pythonhosted.org/packages/5a/76/e703d2f7681d7d66c4c891af3f07c7ccf4c76ad7f18351de035b5eda007a/sqlalchemy-2.0.50-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:faffef4bcc20a1892e65e155293d99d60855bbbc79250ab712819cfd56a8e6bb", size = 3282063, upload-time = "2026-05-24T20:09:38.57Z" },
130
+ { url = "https://files.pythonhosted.org/packages/31/26/ef168b184a25701f9995e8fb7e503fafd7a99c1c77cda1bc1a26ea2ed486/sqlalchemy-2.0.50-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6c206aec519a2e7bd08abbfb33436e325fd22c632d9c21a9047e376ce241646e", size = 3287069, upload-time = "2026-05-24T20:17:21.942Z" },
131
+ { url = "https://files.pythonhosted.org/packages/c2/15/765acc2bc693bccc43ca4a95d5b69750da8aaf6db1b5c616536e087f8920/sqlalchemy-2.0.50-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:bef4ac756363227ef6402a75fee025a4bc690f92328e825868939b3b3a446a6d", size = 3230453, upload-time = "2026-05-24T20:09:40.398Z" },
132
+ { url = "https://files.pythonhosted.org/packages/63/61/08e03c3adbf5db0087a0b6816746fec8f3032fb2f7fc899a9bb9b2a48ce4/sqlalchemy-2.0.50-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:96fbee6b19c19cd1556c8bf9419447cf2ec149ffcab7ab64348c23e54ef8547f", size = 3252413, upload-time = "2026-05-24T20:17:24.067Z" },
133
+ { url = "https://files.pythonhosted.org/packages/03/0c/370a1f2db38436c615e10134c8a37de3688e74084792380695f3f5083860/sqlalchemy-2.0.50-cp314-cp314-win32.whl", hash = "sha256:8f00e3eb43ba30eb1b238ee03a8a62309486d1321eda3328bb611e0340033ad8", size = 2120063, upload-time = "2026-05-24T19:50:11.08Z" },
134
+ { url = "https://files.pythonhosted.org/packages/7f/a0/fe92bb9817863bc13ba093bda931979a26cc2ca69f8e8f26d07add3d7c6f/sqlalchemy-2.0.50-cp314-cp314-win_amd64.whl", hash = "sha256:15708c613cd5005b7dffe1f66ee6a63ee8f5e46799f71c70ebad74178c676a39", size = 2145830, upload-time = "2026-05-24T19:50:12.452Z" },
135
+ { url = "https://files.pythonhosted.org/packages/cc/ff/e5640a98a0b2f491eb8fde10fb6c773621a2e44340de231fafcc9370f4a9/sqlalchemy-2.0.50-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:3699dac4be410e97049a1658e9480da9cde956594aa0f3aebc60b88f21c5ba70", size = 2178435, upload-time = "2026-05-24T19:42:58.889Z" },
136
+ { url = "https://files.pythonhosted.org/packages/b7/85/337116e186f1236375b5fb70c21cfac98e8e8ab0d3a47be838dc47a59e08/sqlalchemy-2.0.50-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f96233858e3df43932ac11589e22520da6e8aeb624b03fedfeebb0e8ea213086", size = 3566059, upload-time = "2026-05-24T20:01:20.848Z" },
137
+ { url = "https://files.pythonhosted.org/packages/96/34/bb0e190e161c3c2c24314a65add57218be14a4a9486886b7f5047c1ff7c8/sqlalchemy-2.0.50-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c4e70c46fad30c3bcc6a4708bc0130a3173e11a5b25f0ea4a9d8911b450f1f52", size = 3535366, upload-time = "2026-05-24T20:03:56.768Z" },
138
+ { url = "https://files.pythonhosted.org/packages/df/5a/a7f759f97e4fd499c5d4e4488c760d5a7fbecf3028b465a04274fcd52384/sqlalchemy-2.0.50-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:1918a3cf564d16d95bca7301005f41ab2ad50b07cd3b9da50d3ed986db148d6a", size = 3474879, upload-time = "2026-05-24T20:01:23.058Z" },
139
+ { url = "https://files.pythonhosted.org/packages/9d/d9/2907ea38eb60687d297bf9c39e5ee58053c87b57fe8a9cae97090cecbf10/sqlalchemy-2.0.50-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:b00098cdbdbd38c7be3d568b0c9c3122b8c0ec62b911b57cd5e6e0254d60a76d", size = 3486117, upload-time = "2026-05-24T20:03:59.052Z" },
140
+ { url = "https://files.pythonhosted.org/packages/f2/e3/5aa06f167559f8c0bdae487e297d23ba548150ab016a3418265d617a4985/sqlalchemy-2.0.50-cp314-cp314t-win32.whl", hash = "sha256:1fbd55a969d7ac44a98e3dec75016074f809fa08f871585ace58dde110d1bf3e", size = 2150823, upload-time = "2026-05-24T20:08:58.644Z" },
141
+ { url = "https://files.pythonhosted.org/packages/65/9b/112fb8f977582d7489d036e409e3723948bcf5320b3ac465f3c481bbe8f9/sqlalchemy-2.0.50-cp314-cp314t-win_amd64.whl", hash = "sha256:c5c3cdb753a9004183e1ccb634b41611654c989e61bc68617ce878e46d6f1e51", size = 2185794, upload-time = "2026-05-24T20:09:00.319Z" },
142
+ { url = "https://files.pythonhosted.org/packages/d0/10/f7220e9b784d295d241c86ed99aeb537f92afcd469a64861f2717e9bb077/sqlalchemy-2.0.50-py3-none-any.whl", hash = "sha256:92064363517a3ff8212b5a93b8c62876579d8dfd1ca5b561335f30152d884fa9", size = 1943861, upload-time = "2026-05-24T19:59:01.119Z" },
143
+ ]
144
+
145
+ [[package]]
146
+ name = "typing-extensions"
147
+ version = "4.15.0"
148
+ source = { registry = "https://pypi.org/simple" }
149
+ sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" }
150
+ wheels = [
151
+ { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" },
152
+ ]
153
+
154
+ [[package]]
155
+ name = "weave-python"
156
+ source = { editable = "." }
157
+ dependencies = [
158
+ { name = "protobuf" },
159
+ { name = "sqlalchemy" },
160
+ ]
161
+
162
+ [package.metadata]
163
+ requires-dist = [
164
+ { name = "protobuf", specifier = ">=6.30.2" },
165
+ { name = "sqlalchemy", specifier = ">=2.0.40" },
166
+ ]
@@ -6,7 +6,7 @@ import grpc
6
6
  from weaveapi.agent.v1 import service_pb2 as weaveapi_dot_agent_dot_v1_dot_service__pb2
7
7
 
8
8
 
9
- class AgentServiceStub(object):
9
+ class AgentServiceStub:
10
10
  """Missing associated documentation comment in .proto file."""
11
11
 
12
12
  def __init__(self, channel):
@@ -95,7 +95,7 @@ class AgentServiceStub(object):
95
95
  )
96
96
 
97
97
 
98
- class AgentServiceServicer(object):
98
+ class AgentServiceServicer:
99
99
  """Missing associated documentation comment in .proto file."""
100
100
 
101
101
  def CreateAgentDefinition(self, request, context):
@@ -255,7 +255,7 @@ def add_AgentServiceServicer_to_server(servicer, server):
255
255
 
256
256
 
257
257
  # This class is part of an EXPERIMENTAL API.
258
- class AgentService(object):
258
+ class AgentService:
259
259
  """Missing associated documentation comment in .proto file."""
260
260
 
261
261
  @staticmethod
@@ -6,7 +6,7 @@ import grpc
6
6
  from weaveapi.atc.v1 import service_pb2 as weaveapi_dot_atc_dot_v1_dot_service__pb2
7
7
 
8
8
 
9
- class ATCServiceStub(object):
9
+ class ATCServiceStub:
10
10
  """ATCService is the primary API surface for running agents through the
11
11
  Agent Traffic Controller runtime.
12
12
  """
@@ -49,7 +49,7 @@ class ATCServiceStub(object):
49
49
  )
50
50
 
51
51
 
52
- class ATCServiceServicer(object):
52
+ class ATCServiceServicer:
53
53
  """ATCService is the primary API surface for running agents through the
54
54
  Agent Traffic Controller runtime.
55
55
  """
@@ -123,7 +123,7 @@ def add_ATCServiceServicer_to_server(servicer, server):
123
123
 
124
124
 
125
125
  # This class is part of an EXPERIMENTAL API.
126
- class ATCService(object):
126
+ class ATCService:
127
127
  """ATCService is the primary API surface for running agents through the
128
128
  Agent Traffic Controller runtime.
129
129
  """
@@ -279,7 +279,7 @@ class ATCService(object):
279
279
  )
280
280
 
281
281
 
282
- class InspectionServiceStub(object):
282
+ class InspectionServiceStub:
283
283
  """InspectionService provides observability and audit capabilities for
284
284
  the ATC runtime.
285
285
  """
@@ -340,7 +340,7 @@ class InspectionServiceStub(object):
340
340
  )
341
341
 
342
342
 
343
- class InspectionServiceServicer(object):
343
+ class InspectionServiceServicer:
344
344
  """InspectionService provides observability and audit capabilities for
345
345
  the ATC runtime.
346
346
  """
@@ -453,7 +453,7 @@ def add_InspectionServiceServicer_to_server(servicer, server):
453
453
 
454
454
 
455
455
  # This class is part of an EXPERIMENTAL API.
456
- class InspectionService(object):
456
+ class InspectionService:
457
457
  """InspectionService provides observability and audit capabilities for
458
458
  the ATC runtime.
459
459
  """
@@ -6,7 +6,7 @@ import grpc
6
6
  from weaveapi.auth.v1 import service_pb2 as weaveapi_dot_auth_dot_v1_dot_service__pb2
7
7
 
8
8
 
9
- class AuthServiceStub(object):
9
+ class AuthServiceStub:
10
10
  """Missing associated documentation comment in .proto file."""
11
11
 
12
12
  def __init__(self, channel):
@@ -95,7 +95,7 @@ class AuthServiceStub(object):
95
95
  )
96
96
 
97
97
 
98
- class AuthServiceServicer(object):
98
+ class AuthServiceServicer:
99
99
  """Missing associated documentation comment in .proto file."""
100
100
 
101
101
  def GetSession(self, request, context):
@@ -255,7 +255,7 @@ def add_AuthServiceServicer_to_server(servicer, server):
255
255
 
256
256
 
257
257
  # This class is part of an EXPERIMENTAL API.
258
- class AuthService(object):
258
+ class AuthService:
259
259
  """Missing associated documentation comment in .proto file."""
260
260
 
261
261
  @staticmethod
@@ -649,7 +649,7 @@ class AuthService(object):
649
649
  )
650
650
 
651
651
 
652
- class ProfileServiceStub(object):
652
+ class ProfileServiceStub:
653
653
  """Missing associated documentation comment in .proto file."""
654
654
 
655
655
  def __init__(self, channel):
@@ -690,7 +690,7 @@ class ProfileServiceStub(object):
690
690
  )
691
691
 
692
692
 
693
- class ProfileServiceServicer(object):
693
+ class ProfileServiceServicer:
694
694
  """Missing associated documentation comment in .proto file."""
695
695
 
696
696
  def GetProfile(self, request, context):
@@ -762,7 +762,7 @@ def add_ProfileServiceServicer_to_server(servicer, server):
762
762
 
763
763
 
764
764
  # This class is part of an EXPERIMENTAL API.
765
- class ProfileService(object):
765
+ class ProfileService:
766
766
  """Missing associated documentation comment in .proto file."""
767
767
 
768
768
  @staticmethod
@@ -916,7 +916,7 @@ class ProfileService(object):
916
916
  )
917
917
 
918
918
 
919
- class OrganizationAuthAdminServiceStub(object):
919
+ class OrganizationAuthAdminServiceStub:
920
920
  """Missing associated documentation comment in .proto file."""
921
921
 
922
922
  def __init__(self, channel):
@@ -1089,7 +1089,7 @@ class OrganizationAuthAdminServiceStub(object):
1089
1089
  )
1090
1090
 
1091
1091
 
1092
- class OrganizationAuthAdminServiceServicer(object):
1092
+ class OrganizationAuthAdminServiceServicer:
1093
1093
  """Missing associated documentation comment in .proto file."""
1094
1094
 
1095
1095
  def GetOrganizationAuthSettings(self, request, context):
@@ -1403,7 +1403,7 @@ def add_OrganizationAuthAdminServiceServicer_to_server(servicer, server):
1403
1403
 
1404
1404
 
1405
1405
  # This class is part of an EXPERIMENTAL API.
1406
- class OrganizationAuthAdminService(object):
1406
+ class OrganizationAuthAdminService:
1407
1407
  """Missing associated documentation comment in .proto file."""
1408
1408
 
1409
1409
  @staticmethod
@@ -6,7 +6,7 @@ import grpc
6
6
  from weaveapi.chat.v1 import service_pb2 as weaveapi_dot_chat_dot_v1_dot_service__pb2
7
7
 
8
8
 
9
- class ChatServiceStub(object):
9
+ class ChatServiceStub:
10
10
  """Missing associated documentation comment in .proto file."""
11
11
 
12
12
  def __init__(self, channel):
@@ -89,7 +89,7 @@ class ChatServiceStub(object):
89
89
  )
90
90
 
91
91
 
92
- class ChatServiceServicer(object):
92
+ class ChatServiceServicer:
93
93
  """Missing associated documentation comment in .proto file."""
94
94
 
95
95
  def CreateSession(self, request, context):
@@ -242,7 +242,7 @@ def add_ChatServiceServicer_to_server(servicer, server):
242
242
 
243
243
 
244
244
  # This class is part of an EXPERIMENTAL API.
245
- class ChatService(object):
245
+ class ChatService:
246
246
  """Missing associated documentation comment in .proto file."""
247
247
 
248
248
  @staticmethod
@@ -0,0 +1,107 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # NO CHECKED-IN PROTOBUF GENCODE
4
+ # source: weaveapi/consolidation/v1/consolidation.proto
5
+ # Protobuf Python Version: 7.35.0
6
+ """Generated protocol buffer code."""
7
+
8
+ from google.protobuf import descriptor as _descriptor
9
+ from google.protobuf import descriptor_pool as _descriptor_pool
10
+ from google.protobuf import runtime_version as _runtime_version
11
+ from google.protobuf import symbol_database as _symbol_database
12
+ from google.protobuf.internal import builder as _builder
13
+
14
+ _runtime_version.ValidateProtobufRuntimeVersion(
15
+ _runtime_version.Domain.PUBLIC,
16
+ 7,
17
+ 35,
18
+ 0,
19
+ "",
20
+ "weaveapi/consolidation/v1/consolidation.proto",
21
+ )
22
+ # @@protoc_insertion_point(imports)
23
+
24
+ _sym_db = _symbol_database.Default()
25
+
26
+
27
+ DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(
28
+ b'\n-weaveapi/consolidation/v1/consolidation.proto\x12\x19weaveapi.consolidation.v1\x1a\x1fgoogle/protobuf/timestamp.proto"S\n\x05Scope\x12\x38\n\x04kind\x18\x01 \x01(\x0e\x32$.weaveapi.consolidation.v1.ScopeKindR\x04kind\x12\x10\n\x03key\x18\x02 \x01(\tR\x03key"\x97\x03\n\x10\x43onsolidationRun\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\'\n\x0forganization_id\x18\x02 \x01(\tR\x0eorganizationId\x12I\n\x06status\x18\x03 \x01(\x0e\x32\x31.weaveapi.consolidation.v1.ConsolidationRunStatusR\x06status\x12!\n\x0cthread_count\x18\x04 \x01(\x05R\x0bthreadCount\x12#\n\rcluster_count\x18\x05 \x01(\x05R\x0c\x63lusterCount\x12\'\n\x0fhierarchy_depth\x18\x06 \x01(\x05R\x0ehierarchyDepth\x12\x14\n\x05\x65rror\x18\x07 \x01(\tR\x05\x65rror\x12\x39\n\nstarted_at\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tstartedAt\x12=\n\x0c\x63ompleted_at\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampR\x0b\x63ompletedAt"\xa7\x04\n\x0e\x43onceptCluster\x12\x0e\n\x02id\x18\x01 \x01(\tR\x02id\x12\'\n\x0forganization_id\x18\x02 \x01(\tR\x0eorganizationId\x12\x12\n\x04name\x18\x03 \x01(\tR\x04name\x12 \n\x0b\x64\x65scription\x18\x04 \x01(\tR\x0b\x64\x65scription\x12%\n\x0eknowledge_type\x18\x05 \x01(\tR\rknowledgeType\x12\x14\n\x05level\x18\x06 \x01(\x05R\x05level\x12\x1b\n\tparent_id\x18\x07 \x01(\tR\x08parentId\x12!\n\x0cthread_count\x18\x08 \x01(\x05R\x0bthreadCount\x12\x30\n\x14\x63onsolidation_run_id\x18\t \x01(\tR\x12\x63onsolidationRunId\x12\x39\n\ncreated_at\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tcreatedAt\x12\x39\n\nupdated_at\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampR\tupdatedAt\x12*\n\x11\x63hild_cluster_ids\x18\x0c \x03(\tR\x0f\x63hildClusterIds\x12\x1d\n\nthread_ids\x18\r \x03(\tR\tthreadIds\x12\x36\n\x05scope\x18\x0e \x01(\x0b\x32 .weaveapi.consolidation.v1.ScopeR\x05scope"]\n\x10\x43onceptHierarchy\x12I\n\x08\x63lusters\x18\x01 \x03(\x0b\x32).weaveapi.consolidation.v1.ConceptClusterB\x02(\x01R\x08\x63lusters"\xc0\x01\n\x1bTriggerConsolidationRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12!\n\x0c\x66ull_rebuild\x18\x02 \x01(\x08R\x0b\x66ullRebuild\x12(\n\x10top_level_target\x18\x03 \x01(\x05R\x0etopLevelTarget\x12+\n\x11neighborhood_size\x18\x04 \x01(\x05R\x10neighborhoodSize"w\n\x1aGetConsolidationRunRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x30\n\x14\x63onsolidation_run_id\x18\x02 \x01(\tR\x12\x63onsolidationRunId"\x86\x01\n\x1fListConsolidationHistoryRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12\x1b\n\tpage_size\x18\x02 \x01(\x05R\x08pageSize\x12\x1d\n\npage_token\x18\x03 \x01(\tR\tpageToken"\x8f\x01\n ListConsolidationHistoryResponse\x12\x43\n\x04runs\x18\x01 \x03(\x0b\x32+.weaveapi.consolidation.v1.ConsolidationRunB\x02(\x01R\x04runs\x12&\n\x0fnext_page_token\x18\x02 \x01(\tR\rnextPageToken"\xe7\x01\n\x1aGetConceptHierarchyRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12%\n\x0eknowledge_type\x18\x02 \x01(\tR\rknowledgeType\x12\x1b\n\tmax_depth\x18\x03 \x01(\x05R\x08maxDepth\x12$\n\x0e\x61\x63ting_user_id\x18\x04 \x01(\tR\x0c\x61\x63tingUserId\x12\x36\n\x05scope\x18\x05 \x01(\x0b\x32 .weaveapi.consolidation.v1.ScopeR\x05scope"\xcf\x01\n\x18GetConceptClusterRequest\x12\'\n\x0forganization_id\x18\x01 \x01(\tR\x0eorganizationId\x12,\n\x12\x63oncept_cluster_id\x18\x02 \x01(\tR\x10\x63onceptClusterId\x12$\n\x0e\x61\x63ting_user_id\x18\x03 \x01(\tR\x0c\x61\x63tingUserId\x12\x36\n\x05scope\x18\x04 \x01(\x0b\x32 .weaveapi.consolidation.v1.ScopeR\x05scope"|\n\x1cTriggerConsolidationResponse\x12\\\n\x11\x63onsolidation_run\x18\x01 \x01(\x0b\x32+.weaveapi.consolidation.v1.ConsolidationRunB\x02(\x01R\x10\x63onsolidationRun"{\n\x1bGetConsolidationRunResponse\x12\\\n\x11\x63onsolidation_run\x18\x01 \x01(\x0b\x32+.weaveapi.consolidation.v1.ConsolidationRunB\x02(\x01R\x10\x63onsolidationRun"l\n\x1bGetConceptHierarchyResponse\x12M\n\thierarchy\x18\x01 \x01(\x0b\x32+.weaveapi.consolidation.v1.ConceptHierarchyB\x02(\x01R\thierarchy"s\n\x19GetConceptClusterResponse\x12V\n\x0f\x63oncept_cluster\x18\x01 \x01(\x0b\x32).weaveapi.consolidation.v1.ConceptClusterB\x02(\x01R\x0e\x63onceptCluster*\xb0\x02\n\x16\x43onsolidationRunStatus\x12(\n$CONSOLIDATION_RUN_STATUS_UNSPECIFIED\x10\x00\x12$\n CONSOLIDATION_RUN_STATUS_STARTED\x10\x01\x12\'\n#CONSOLIDATION_RUN_STATUS_CLUSTERING\x10\x02\x12%\n!CONSOLIDATION_RUN_STATUS_LABELING\x10\x03\x12*\n&CONSOLIDATION_RUN_STATUS_HIERARCHIZING\x10\x04\x12%\n!CONSOLIDATION_RUN_STATUS_COMPLETE\x10\x05\x12#\n\x1f\x43ONSOLIDATION_RUN_STATUS_FAILED\x10\x06*q\n\tScopeKind\x12\x1a\n\x16SCOPE_KIND_UNSPECIFIED\x10\x00\x12\x12\n\x0eSCOPE_KIND_ORG\x10\x01\x12\x13\n\x0fSCOPE_KIND_USER\x10\x02\x12\x1f\n\x1bSCOPE_KIND_RESTRICTED_GROUP\x10\x03\x42\x81\x02\n\x1d\x63om.weaveapi.consolidation.v1B\x12\x43onsolidationProtoP\x01ZFgithub.com/weave-labs/weave-go/weaveapi/consolidation/v1;consolidation\xa2\x02\x03WCX\xaa\x02\x19Weaveapi.Consolidation.V1\xca\x02\x19Weaveapi\\Consolidation\\V1\xe2\x02%Weaveapi\\Consolidation\\V1\\GPBMetadata\xea\x02\x1bWeaveapi::Consolidation::V1b\x08\x65\x64itionsp\xe8\x07'
29
+ )
30
+
31
+ _globals = globals()
32
+ _builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
33
+ _builder.BuildTopDescriptorsAndMessages(
34
+ DESCRIPTOR, "weaveapi.consolidation.v1.consolidation_pb2", _globals
35
+ )
36
+ if not _descriptor._USE_C_DESCRIPTORS:
37
+ _globals["DESCRIPTOR"]._loaded_options = None
38
+ _globals[
39
+ "DESCRIPTOR"
40
+ ]._serialized_options = b"\n\035com.weaveapi.consolidation.v1B\022ConsolidationProtoP\001ZFgithub.com/weave-labs/weave-go/weaveapi/consolidation/v1;consolidation\242\002\003WCX\252\002\031Weaveapi.Consolidation.V1\312\002\031Weaveapi\\Consolidation\\V1\342\002%Weaveapi\\Consolidation\\V1\\GPBMetadata\352\002\033Weaveapi::Consolidation::V1"
41
+ _globals["_CONCEPTHIERARCHY"].fields_by_name["clusters"]._loaded_options = None
42
+ _globals["_CONCEPTHIERARCHY"].fields_by_name[
43
+ "clusters"
44
+ ]._serialized_options = b"(\001"
45
+ _globals["_LISTCONSOLIDATIONHISTORYRESPONSE"].fields_by_name[
46
+ "runs"
47
+ ]._loaded_options = None
48
+ _globals["_LISTCONSOLIDATIONHISTORYRESPONSE"].fields_by_name[
49
+ "runs"
50
+ ]._serialized_options = b"(\001"
51
+ _globals["_TRIGGERCONSOLIDATIONRESPONSE"].fields_by_name[
52
+ "consolidation_run"
53
+ ]._loaded_options = None
54
+ _globals["_TRIGGERCONSOLIDATIONRESPONSE"].fields_by_name[
55
+ "consolidation_run"
56
+ ]._serialized_options = b"(\001"
57
+ _globals["_GETCONSOLIDATIONRUNRESPONSE"].fields_by_name[
58
+ "consolidation_run"
59
+ ]._loaded_options = None
60
+ _globals["_GETCONSOLIDATIONRUNRESPONSE"].fields_by_name[
61
+ "consolidation_run"
62
+ ]._serialized_options = b"(\001"
63
+ _globals["_GETCONCEPTHIERARCHYRESPONSE"].fields_by_name[
64
+ "hierarchy"
65
+ ]._loaded_options = None
66
+ _globals["_GETCONCEPTHIERARCHYRESPONSE"].fields_by_name[
67
+ "hierarchy"
68
+ ]._serialized_options = b"(\001"
69
+ _globals["_GETCONCEPTCLUSTERRESPONSE"].fields_by_name[
70
+ "concept_cluster"
71
+ ]._loaded_options = None
72
+ _globals["_GETCONCEPTCLUSTERRESPONSE"].fields_by_name[
73
+ "concept_cluster"
74
+ ]._serialized_options = b"(\001"
75
+ _globals["_CONSOLIDATIONRUNSTATUS"]._serialized_start = 2775
76
+ _globals["_CONSOLIDATIONRUNSTATUS"]._serialized_end = 3079
77
+ _globals["_SCOPEKIND"]._serialized_start = 3081
78
+ _globals["_SCOPEKIND"]._serialized_end = 3194
79
+ _globals["_SCOPE"]._serialized_start = 109
80
+ _globals["_SCOPE"]._serialized_end = 192
81
+ _globals["_CONSOLIDATIONRUN"]._serialized_start = 195
82
+ _globals["_CONSOLIDATIONRUN"]._serialized_end = 602
83
+ _globals["_CONCEPTCLUSTER"]._serialized_start = 605
84
+ _globals["_CONCEPTCLUSTER"]._serialized_end = 1156
85
+ _globals["_CONCEPTHIERARCHY"]._serialized_start = 1158
86
+ _globals["_CONCEPTHIERARCHY"]._serialized_end = 1251
87
+ _globals["_TRIGGERCONSOLIDATIONREQUEST"]._serialized_start = 1254
88
+ _globals["_TRIGGERCONSOLIDATIONREQUEST"]._serialized_end = 1446
89
+ _globals["_GETCONSOLIDATIONRUNREQUEST"]._serialized_start = 1448
90
+ _globals["_GETCONSOLIDATIONRUNREQUEST"]._serialized_end = 1567
91
+ _globals["_LISTCONSOLIDATIONHISTORYREQUEST"]._serialized_start = 1570
92
+ _globals["_LISTCONSOLIDATIONHISTORYREQUEST"]._serialized_end = 1704
93
+ _globals["_LISTCONSOLIDATIONHISTORYRESPONSE"]._serialized_start = 1707
94
+ _globals["_LISTCONSOLIDATIONHISTORYRESPONSE"]._serialized_end = 1850
95
+ _globals["_GETCONCEPTHIERARCHYREQUEST"]._serialized_start = 1853
96
+ _globals["_GETCONCEPTHIERARCHYREQUEST"]._serialized_end = 2084
97
+ _globals["_GETCONCEPTCLUSTERREQUEST"]._serialized_start = 2087
98
+ _globals["_GETCONCEPTCLUSTERREQUEST"]._serialized_end = 2294
99
+ _globals["_TRIGGERCONSOLIDATIONRESPONSE"]._serialized_start = 2296
100
+ _globals["_TRIGGERCONSOLIDATIONRESPONSE"]._serialized_end = 2420
101
+ _globals["_GETCONSOLIDATIONRUNRESPONSE"]._serialized_start = 2422
102
+ _globals["_GETCONSOLIDATIONRUNRESPONSE"]._serialized_end = 2545
103
+ _globals["_GETCONCEPTHIERARCHYRESPONSE"]._serialized_start = 2547
104
+ _globals["_GETCONCEPTHIERARCHYRESPONSE"]._serialized_end = 2655
105
+ _globals["_GETCONCEPTCLUSTERRESPONSE"]._serialized_start = 2657
106
+ _globals["_GETCONCEPTCLUSTERRESPONSE"]._serialized_end = 2772
107
+ # @@protoc_insertion_point(module_scope)