lsst-daf-butler 29.2025.4800__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 (436) hide show
  1. lsst_daf_butler-29.2025.4800/COPYRIGHT +4 -0
  2. lsst_daf_butler-29.2025.4800/LICENSE +3 -0
  3. lsst_daf_butler-29.2025.4800/MANIFEST.in +1 -0
  4. lsst_daf_butler-29.2025.4800/PKG-INFO +78 -0
  5. lsst_daf_butler-29.2025.4800/README.md +25 -0
  6. lsst_daf_butler-29.2025.4800/bsd_license.txt +27 -0
  7. lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/CHANGES.rst +985 -0
  8. lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/concreteStorageClasses.rst +45 -0
  9. lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/configuring.rst +56 -0
  10. lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/datastores.rst +131 -0
  11. lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/dimensions.rst +116 -0
  12. lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/formatters.rst +389 -0
  13. lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/index.rst +338 -0
  14. lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/organizing.rst +104 -0
  15. lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/queries.rst +533 -0
  16. lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/use-in-tests.rst +78 -0
  17. lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/writing-subcommands.rst +527 -0
  18. lsst_daf_butler-29.2025.4800/gpl-v3.0.txt +674 -0
  19. lsst_daf_butler-29.2025.4800/pyproject.toml +247 -0
  20. lsst_daf_butler-29.2025.4800/python/lsst/__init__.py +3 -0
  21. lsst_daf_butler-29.2025.4800/python/lsst/daf/__init__.py +3 -0
  22. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/__init__.py +93 -0
  23. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_butler.py +2250 -0
  24. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_butler_collections.py +479 -0
  25. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_butler_config.py +213 -0
  26. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_butler_instance_options.py +49 -0
  27. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_butler_metrics.py +117 -0
  28. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_butler_repo_index.py +240 -0
  29. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_collection_type.py +129 -0
  30. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_config.py +1353 -0
  31. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_config_support.py +376 -0
  32. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_dataset_association.py +118 -0
  33. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_dataset_existence.py +104 -0
  34. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_dataset_provenance.py +521 -0
  35. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_dataset_ref.py +1129 -0
  36. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_dataset_type.py +823 -0
  37. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_deferredDatasetHandle.py +120 -0
  38. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_exceptions.py +262 -0
  39. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_exceptions_legacy.py +61 -0
  40. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_file_dataset.py +164 -0
  41. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_file_descriptor.py +101 -0
  42. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_formatter.py +2156 -0
  43. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_labeled_butler_factory.py +227 -0
  44. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_limited_butler.py +466 -0
  45. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_location.py +272 -0
  46. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_named.py +610 -0
  47. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_quantum.py +629 -0
  48. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_quantum_backed.py +843 -0
  49. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_query_all_datasets.py +197 -0
  50. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_registry_shim.py +380 -0
  51. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_rubin/__init__.py +34 -0
  52. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_rubin/file_datasets.py +88 -0
  53. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_standalone_datastore.py +129 -0
  54. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_storage_class.py +891 -0
  55. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_storage_class_delegate.py +465 -0
  56. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_timespan.py +603 -0
  57. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_topology.py +192 -0
  58. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_utilities/__init__.py +26 -0
  59. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_utilities/locked_object.py +53 -0
  60. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_utilities/named_locks.py +61 -0
  61. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_utilities/thread_safe_cache.py +91 -0
  62. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_uuid.py +79 -0
  63. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/arrow_utils.py +561 -0
  64. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/__init__.py +0 -0
  65. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/butler.py +462 -0
  66. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/cliLog.py +447 -0
  67. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/cmd/__init__.py +76 -0
  68. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/cmd/_remove_collections.py +109 -0
  69. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/cmd/_remove_runs.py +150 -0
  70. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/cmd/commands.py +864 -0
  71. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/opt/__init__.py +30 -0
  72. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/opt/arguments.py +66 -0
  73. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/opt/optionGroups.py +116 -0
  74. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/opt/options.py +317 -0
  75. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/progress.py +101 -0
  76. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/utils.py +1324 -0
  77. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/column_spec.py +488 -0
  78. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/datastore.yaml +3 -0
  79. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/datastores/composites.yaml +13 -0
  80. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/datastores/fileDatastore.yaml +40 -0
  81. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/datastores/formatters.yaml +101 -0
  82. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/datastores/writeRecipes.yaml +39 -0
  83. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/dimensions.yaml +462 -0
  84. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe0.yaml +440 -0
  85. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe1.yaml +444 -0
  86. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe2.yaml +499 -0
  87. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe3.yaml +499 -0
  88. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe4.yaml +502 -0
  89. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe5.yaml +452 -0
  90. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe6.yaml +455 -0
  91. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe7.yaml +462 -0
  92. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/registry.yaml +13 -0
  93. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/repo_transfer_formats.yaml +4 -0
  94. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/storageClasses.yaml +443 -0
  95. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/__init__.py +29 -0
  96. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/_datastore.py +1596 -0
  97. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/_transfer.py +102 -0
  98. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/cache_manager.py +1211 -0
  99. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/composites.py +163 -0
  100. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/constraints.py +168 -0
  101. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/file_templates.py +896 -0
  102. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/generic_base.py +146 -0
  103. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/record_data.py +262 -0
  104. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/stored_file_info.py +448 -0
  105. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/__init__.py +0 -0
  106. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/chainedDatastore.py +1377 -0
  107. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/fileDatastore.py +3226 -0
  108. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/file_datastore/__init__.py +26 -0
  109. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/file_datastore/get.py +443 -0
  110. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/file_datastore/retrieve_artifacts.py +487 -0
  111. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/file_datastore/transfer.py +104 -0
  112. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/inMemoryDatastore.py +774 -0
  113. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/ddl.py +666 -0
  114. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/delegates/__init__.py +0 -0
  115. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/delegates/arrowtable.py +282 -0
  116. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/__init__.py +50 -0
  117. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_config.py +702 -0
  118. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_coordinate.py +1116 -0
  119. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_data_coordinate_iterable.py +850 -0
  120. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_database.py +403 -0
  121. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_elements.py +609 -0
  122. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_governor.py +148 -0
  123. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_group.py +624 -0
  124. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_packer.py +179 -0
  125. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_record_set.py +1017 -0
  126. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_record_table.py +244 -0
  127. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_records.py +652 -0
  128. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_schema.py +442 -0
  129. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_skypix.py +192 -0
  130. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_universe.py +570 -0
  131. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/construction.py +196 -0
  132. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/record_cache.py +103 -0
  133. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_butler/__init__.py +28 -0
  134. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_butler/_direct_butler.py +2630 -0
  135. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_butler/_direct_butler_collections.py +202 -0
  136. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/__init__.py +30 -0
  137. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_driver.py +1592 -0
  138. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_postprocessing.py +227 -0
  139. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_query_analysis.py +249 -0
  140. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_query_builder.py +775 -0
  141. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_result_page_converter.py +451 -0
  142. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_sql_builders.py +702 -0
  143. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_sql_column_visitor.py +343 -0
  144. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/__init__.py +0 -0
  145. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/astropyTable.py +63 -0
  146. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/file.py +348 -0
  147. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/json.py +108 -0
  148. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/logs.py +70 -0
  149. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/matplotlib.py +54 -0
  150. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/packages.py +87 -0
  151. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/parquet.py +1537 -0
  152. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/pickle.py +61 -0
  153. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/typeless.py +213 -0
  154. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/yaml.py +122 -0
  155. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/json.py +156 -0
  156. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/logging.py +772 -0
  157. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/mapping_factory.py +315 -0
  158. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/name_shrinker.py +117 -0
  159. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/nonempty_mapping.py +116 -0
  160. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/persistence_context.py +201 -0
  161. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/progress.py +491 -0
  162. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/py.typed +0 -0
  163. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/pydantic_utils.py +364 -0
  164. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/__init__.py +33 -0
  165. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_base.py +259 -0
  166. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_data_coordinate_query_results.py +103 -0
  167. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_dataset_query_results.py +134 -0
  168. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_dimension_record_query_results.py +123 -0
  169. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_expression_strings.py +458 -0
  170. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_general_query_results.py +237 -0
  171. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_identifiers.py +177 -0
  172. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_query.py +841 -0
  173. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/convert_args.py +161 -0
  174. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/driver.py +374 -0
  175. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expression_factory.py +625 -0
  176. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/__init__.py +28 -0
  177. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/categorize.py +59 -0
  178. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/__init__.py +32 -0
  179. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/exprTree.py +712 -0
  180. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/parser.py +48 -0
  181. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/parserLex.py +236 -0
  182. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/parserYacc.py +513 -0
  183. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/ply/__init__.py +5 -0
  184. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/ply/lex.py +1156 -0
  185. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/ply/yacc.py +3581 -0
  186. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/treeVisitor.py +346 -0
  187. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/overlaps.py +560 -0
  188. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/predicate_constraints_summary.py +223 -0
  189. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/result_specs.py +301 -0
  190. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/__init__.py +41 -0
  191. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_base.py +233 -0
  192. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_column_expression.py +339 -0
  193. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_column_literal.py +417 -0
  194. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_column_reference.py +191 -0
  195. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_column_set.py +435 -0
  196. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_predicate.py +756 -0
  197. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_query_tree.py +353 -0
  198. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/visitors.py +564 -0
  199. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/__init__.py +54 -0
  200. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_caching_context.py +121 -0
  201. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_collection_record_cache.py +160 -0
  202. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_collection_summary.py +271 -0
  203. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_collection_summary_cache.py +86 -0
  204. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_config.py +142 -0
  205. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_defaults.py +262 -0
  206. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_exceptions.py +99 -0
  207. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_registry.py +1475 -0
  208. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_registry_base.py +272 -0
  209. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_registry_factory.py +138 -0
  210. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/attributes.py +159 -0
  211. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/bridge/__init__.py +26 -0
  212. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/bridge/ephemeral.py +137 -0
  213. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/bridge/monolithic.py +442 -0
  214. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/collections/__init__.py +26 -0
  215. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/collections/_base.py +909 -0
  216. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/collections/nameKey.py +333 -0
  217. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/collections/synthIntKey.py +351 -0
  218. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/connectionString.py +131 -0
  219. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/databases/__init__.py +26 -0
  220. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/databases/postgresql.py +684 -0
  221. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/databases/sqlite.py +512 -0
  222. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/datasets/__init__.py +26 -0
  223. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/datasets/byDimensions/__init__.py +28 -0
  224. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/datasets/byDimensions/_dataset_type_cache.py +226 -0
  225. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/datasets/byDimensions/_manager.py +1507 -0
  226. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/datasets/byDimensions/summaries.py +457 -0
  227. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/datasets/byDimensions/tables.py +654 -0
  228. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/dimensions/__init__.py +26 -0
  229. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/dimensions/static.py +1002 -0
  230. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/__init__.py +36 -0
  231. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_attributes.py +207 -0
  232. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_bridge.py +437 -0
  233. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_collections.py +821 -0
  234. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_database.py +2119 -0
  235. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_database_explain.py +79 -0
  236. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_datasets.py +661 -0
  237. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_dimensions.py +380 -0
  238. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_obscore.py +306 -0
  239. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_opaque.py +281 -0
  240. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_versioning.py +318 -0
  241. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/managers.py +508 -0
  242. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/nameShrinker.py +32 -0
  243. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/__init__.py +32 -0
  244. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/_config.py +239 -0
  245. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/_manager.py +424 -0
  246. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/_records.py +497 -0
  247. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/_schema.py +237 -0
  248. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/_spatial.py +179 -0
  249. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/default_spatial.py +111 -0
  250. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/pgsphere.py +238 -0
  251. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/opaque.py +241 -0
  252. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/queries/__init__.py +31 -0
  253. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/queries/_query_common.py +179 -0
  254. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/queries/_query_data_coordinates.py +181 -0
  255. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/queries/_query_datasets.py +147 -0
  256. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/queries/_query_dimension_records.py +77 -0
  257. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/queries/_results.py +541 -0
  258. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/sql_registry.py +1791 -0
  259. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/tests/__init__.py +29 -0
  260. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/tests/_database.py +1359 -0
  261. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/tests/_registry.py +4151 -0
  262. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/versions.py +260 -0
  263. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/wildcards.py +499 -0
  264. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/__init__.py +29 -0
  265. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_collection_args.py +132 -0
  266. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_config.py +48 -0
  267. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_defaults.py +60 -0
  268. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_errors.py +45 -0
  269. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_factory.py +158 -0
  270. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_get.py +98 -0
  271. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_http_connection.py +354 -0
  272. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_query_driver.py +294 -0
  273. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_query_results.py +91 -0
  274. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_ref_utils.py +131 -0
  275. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_registry.py +359 -0
  276. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_remote_butler.py +784 -0
  277. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_remote_butler_collections.py +136 -0
  278. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_remote_file_transfer_source.py +117 -0
  279. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/authentication/__init__.py +0 -0
  280. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/authentication/cadc.py +106 -0
  281. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/authentication/interface.py +46 -0
  282. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/authentication/rubin.py +112 -0
  283. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/registry/__init__.py +0 -0
  284. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/__init__.py +29 -0
  285. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/_config.py +122 -0
  286. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/_dependencies.py +172 -0
  287. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/_factory.py +58 -0
  288. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/_gafaelfawr.py +127 -0
  289. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/_server.py +128 -0
  290. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/_telemetry.py +105 -0
  291. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_external.py +426 -0
  292. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_external_query.py +222 -0
  293. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_file_info.py +72 -0
  294. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_internal.py +51 -0
  295. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_query_limits.py +107 -0
  296. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_query_serialization.py +94 -0
  297. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_query_streaming.py +187 -0
  298. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_utils.py +53 -0
  299. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server_models.py +477 -0
  300. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/repo_relocation.py +94 -0
  301. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/__init__.py +49 -0
  302. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/_associate.py +81 -0
  303. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/_pruneDatasets.py +275 -0
  304. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/butlerImport.py +78 -0
  305. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/certifyCalibrations.py +91 -0
  306. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/collectionChain.py +150 -0
  307. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/configDump.py +67 -0
  308. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/configValidate.py +65 -0
  309. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/createRepo.py +70 -0
  310. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/exportCalibs.py +183 -0
  311. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/ingest_files.py +246 -0
  312. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/ingest_zip.py +63 -0
  313. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/queryCollections.py +381 -0
  314. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/queryDataIds.py +227 -0
  315. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/queryDatasetTypes.py +88 -0
  316. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/queryDatasets.py +349 -0
  317. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/queryDimensionRecords.py +146 -0
  318. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/register_dataset_type.py +88 -0
  319. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/removeCollections.py +173 -0
  320. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/removeDatasetType.py +47 -0
  321. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/removeRuns.py +148 -0
  322. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/retrieveArtifacts.py +136 -0
  323. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/transferDatasets.py +122 -0
  324. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/__init__.py +33 -0
  325. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/_datasetsHelper.py +232 -0
  326. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/_dummyRegistry.py +239 -0
  327. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/_examplePythonTypes.py +403 -0
  328. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/_testRepo.py +593 -0
  329. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/butler_queries.py +2688 -0
  330. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/cliCmdTestBase.py +185 -0
  331. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/cliLogTestBase.py +452 -0
  332. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/deferredFormatter.py +48 -0
  333. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/dict_convertible_model.py +77 -0
  334. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/hybrid_butler.py +447 -0
  335. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/hybrid_butler_collections.py +114 -0
  336. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/hybrid_butler_registry.py +378 -0
  337. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/postgresql.py +116 -0
  338. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/__init__.py +0 -0
  339. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/base.yaml +81 -0
  340. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/ci_hsc-subset-skymap.yaml +45 -0
  341. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/ci_hsc-subset.yaml +732 -0
  342. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/datasets.yaml +138 -0
  343. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/hsc-rc2-subset-v0.yaml +159 -0
  344. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/spatial.py +662 -0
  345. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/spatial.yaml +192 -0
  346. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/server.py +208 -0
  347. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/server_available.py +53 -0
  348. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/server_utils.py +76 -0
  349. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/testFormatters.py +289 -0
  350. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/utils.py +439 -0
  351. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/time_utils.py +309 -0
  352. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/timespan_database_representation.py +665 -0
  353. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/transfers/__init__.py +30 -0
  354. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/transfers/_context.py +362 -0
  355. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/transfers/_interfaces.py +193 -0
  356. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/transfers/_yaml.py +711 -0
  357. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/utils.py +169 -0
  358. lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/version.py +2 -0
  359. lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/PKG-INFO +78 -0
  360. lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/SOURCES.txt +435 -0
  361. lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/dependency_links.txt +1 -0
  362. lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/entry_points.txt +2 -0
  363. lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/requires.txt +37 -0
  364. lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/top_level.txt +1 -0
  365. lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/zip-safe +1 -0
  366. lsst_daf_butler-29.2025.4800/setup.cfg +12 -0
  367. lsst_daf_butler-29.2025.4800/tests/test_astropyTableFormatter.py +70 -0
  368. lsst_daf_butler-29.2025.4800/tests/test_authentication.py +58 -0
  369. lsst_daf_butler-29.2025.4800/tests/test_butler.py +3425 -0
  370. lsst_daf_butler-29.2025.4800/tests/test_butler_factory.py +76 -0
  371. lsst_daf_butler-29.2025.4800/tests/test_cliCmdAssociate.py +96 -0
  372. lsst_daf_butler-29.2025.4800/tests/test_cliCmdConfigDump.py +206 -0
  373. lsst_daf_butler-29.2025.4800/tests/test_cliCmdConfigValidate.py +90 -0
  374. lsst_daf_butler-29.2025.4800/tests/test_cliCmdCreate.py +84 -0
  375. lsst_daf_butler-29.2025.4800/tests/test_cliCmdImport.py +76 -0
  376. lsst_daf_butler-29.2025.4800/tests/test_cliCmdIngestFiles.py +121 -0
  377. lsst_daf_butler-29.2025.4800/tests/test_cliCmdPruneDatasets.py +524 -0
  378. lsst_daf_butler-29.2025.4800/tests/test_cliCmdQueryCollections.py +448 -0
  379. lsst_daf_butler-29.2025.4800/tests/test_cliCmdQueryDataIds.py +193 -0
  380. lsst_daf_butler-29.2025.4800/tests/test_cliCmdQueryDatasetTypes.py +257 -0
  381. lsst_daf_butler-29.2025.4800/tests/test_cliCmdQueryDatasets.py +725 -0
  382. lsst_daf_butler-29.2025.4800/tests/test_cliCmdQueryDimensionRecords.py +291 -0
  383. lsst_daf_butler-29.2025.4800/tests/test_cliCmdRemoveCollections.py +308 -0
  384. lsst_daf_butler-29.2025.4800/tests/test_cliCmdRemoveRuns.py +169 -0
  385. lsst_daf_butler-29.2025.4800/tests/test_cliCmdRetrieveArtifacts.py +160 -0
  386. lsst_daf_butler-29.2025.4800/tests/test_cliLog.py +68 -0
  387. lsst_daf_butler-29.2025.4800/tests/test_cliPluginLoader.py +167 -0
  388. lsst_daf_butler-29.2025.4800/tests/test_cliUtilSplitCommas.py +122 -0
  389. lsst_daf_butler-29.2025.4800/tests/test_cliUtilSplitKv.py +327 -0
  390. lsst_daf_butler-29.2025.4800/tests/test_cliUtilToUpper.py +76 -0
  391. lsst_daf_butler-29.2025.4800/tests/test_cliUtils.py +454 -0
  392. lsst_daf_butler-29.2025.4800/tests/test_column_spec.py +95 -0
  393. lsst_daf_butler-29.2025.4800/tests/test_composites.py +106 -0
  394. lsst_daf_butler-29.2025.4800/tests/test_config.py +719 -0
  395. lsst_daf_butler-29.2025.4800/tests/test_connectionString.py +89 -0
  396. lsst_daf_butler-29.2025.4800/tests/test_constraints.py +198 -0
  397. lsst_daf_butler-29.2025.4800/tests/test_datasets.py +1042 -0
  398. lsst_daf_butler-29.2025.4800/tests/test_datastore.py +2270 -0
  399. lsst_daf_butler-29.2025.4800/tests/test_ddl.py +90 -0
  400. lsst_daf_butler-29.2025.4800/tests/test_dimension_record_containers.py +506 -0
  401. lsst_daf_butler-29.2025.4800/tests/test_dimensions.py +997 -0
  402. lsst_daf_butler-29.2025.4800/tests/test_exprParserLex.py +336 -0
  403. lsst_daf_butler-29.2025.4800/tests/test_exprParserYacc.py +900 -0
  404. lsst_daf_butler-29.2025.4800/tests/test_formatter.py +341 -0
  405. lsst_daf_butler-29.2025.4800/tests/test_gafaelfawr.py +102 -0
  406. lsst_daf_butler-29.2025.4800/tests/test_location.py +159 -0
  407. lsst_daf_butler-29.2025.4800/tests/test_logFormatter.py +210 -0
  408. lsst_daf_butler-29.2025.4800/tests/test_logging.py +371 -0
  409. lsst_daf_butler-29.2025.4800/tests/test_matplotlibFormatter.py +94 -0
  410. lsst_daf_butler-29.2025.4800/tests/test_nonempty_mapping.py +52 -0
  411. lsst_daf_butler-29.2025.4800/tests/test_obscore.py +634 -0
  412. lsst_daf_butler-29.2025.4800/tests/test_packages.py +68 -0
  413. lsst_daf_butler-29.2025.4800/tests/test_parquet.py +2552 -0
  414. lsst_daf_butler-29.2025.4800/tests/test_postgresql.py +266 -0
  415. lsst_daf_butler-29.2025.4800/tests/test_progress.py +291 -0
  416. lsst_daf_butler-29.2025.4800/tests/test_pydantic_utils.py +164 -0
  417. lsst_daf_butler-29.2025.4800/tests/test_quantum.py +216 -0
  418. lsst_daf_butler-29.2025.4800/tests/test_quantumBackedButler.py +504 -0
  419. lsst_daf_butler-29.2025.4800/tests/test_query_direct_postgresql.py +71 -0
  420. lsst_daf_butler-29.2025.4800/tests/test_query_direct_sqlite.py +59 -0
  421. lsst_daf_butler-29.2025.4800/tests/test_query_interface.py +1915 -0
  422. lsst_daf_butler-29.2025.4800/tests/test_query_remote.py +62 -0
  423. lsst_daf_butler-29.2025.4800/tests/test_query_utilities.py +519 -0
  424. lsst_daf_butler-29.2025.4800/tests/test_remote_butler.py +215 -0
  425. lsst_daf_butler-29.2025.4800/tests/test_server.py +723 -0
  426. lsst_daf_butler-29.2025.4800/tests/test_simpleButler.py +1018 -0
  427. lsst_daf_butler-29.2025.4800/tests/test_sqlite.py +338 -0
  428. lsst_daf_butler-29.2025.4800/tests/test_storageClass.py +367 -0
  429. lsst_daf_butler-29.2025.4800/tests/test_templates.py +441 -0
  430. lsst_daf_butler-29.2025.4800/tests/test_testRepo.py +266 -0
  431. lsst_daf_butler-29.2025.4800/tests/test_thread_utils.py +83 -0
  432. lsst_daf_butler-29.2025.4800/tests/test_time_utils.py +156 -0
  433. lsst_daf_butler-29.2025.4800/tests/test_timespan.py +306 -0
  434. lsst_daf_butler-29.2025.4800/tests/test_utils.py +230 -0
  435. lsst_daf_butler-29.2025.4800/tests/test_uuid.py +53 -0
  436. lsst_daf_butler-29.2025.4800/tests/test_versioning.py +241 -0
@@ -0,0 +1,4 @@
1
+ Copyright 2016-2024 The Board of Trustees of the Leland Stanford Junior University, through SLAC National Accelerator Laboratory
2
+ Copyright 2018-2024 Association of Universities for Research in Astronomy
3
+ Copyright 2015, 2018-2024 The Trustees of Princeton University
4
+ Copyright 2020, 2024 University of Washington
@@ -0,0 +1,3 @@
1
+ This software is dual licensed under the GNU General Public License and also
2
+ under a 3-clause BSD license. Recipients may choose which of these licenses
3
+ to use; please see the files gpl-3.0.txt and/or bsd_license.txt, respectively.
@@ -0,0 +1 @@
1
+ include doc/lsst.daf.butler/*.rst
@@ -0,0 +1,78 @@
1
+ Metadata-Version: 2.4
2
+ Name: lsst-daf-butler
3
+ Version: 29.2025.4800
4
+ Summary: An abstraction layer for reading and writing astronomical data to datastores.
5
+ Author-email: Rubin Observatory Data Management <dm-admin@lists.lsst.org>
6
+ License-Expression: BSD-3-Clause OR GPL-3.0-or-later
7
+ Project-URL: Homepage, https://github.com/lsst/daf_butler
8
+ Keywords: lsst
9
+ Classifier: Intended Audience :: Science/Research
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.13
15
+ Classifier: Topic :: Scientific/Engineering :: Astronomy
16
+ Requires-Python: >=3.11.0
17
+ Description-Content-Type: text/markdown
18
+ License-File: COPYRIGHT
19
+ License-File: LICENSE
20
+ License-File: bsd_license.txt
21
+ License-File: gpl-v3.0.txt
22
+ Requires-Dist: astropy>=7.0
23
+ Requires-Dist: pyyaml>=5.1
24
+ Requires-Dist: sqlalchemy>=1.4
25
+ Requires-Dist: click>=7.0
26
+ Requires-Dist: lsst-sphgeom
27
+ Requires-Dist: lsst-utils
28
+ Requires-Dist: lsst-resources
29
+ Requires-Dist: deprecated>=1.2
30
+ Requires-Dist: pydantic<3.0,>=2
31
+ Requires-Dist: pyarrow>=0.16
32
+ Requires-Dist: numpy
33
+ Provides-Extra: postgres
34
+ Requires-Dist: psycopg2; extra == "postgres"
35
+ Provides-Extra: remote
36
+ Requires-Dist: httpx; extra == "remote"
37
+ Requires-Dist: lsst-resources[https]; extra == "remote"
38
+ Provides-Extra: server
39
+ Requires-Dist: fastapi; extra == "server"
40
+ Requires-Dist: safir>=3.4.0; extra == "server"
41
+ Provides-Extra: test
42
+ Requires-Dist: pytest>=3.2; extra == "test"
43
+ Requires-Dist: numpy>=1.17; extra == "test"
44
+ Requires-Dist: matplotlib>=3.0.3; extra == "test"
45
+ Requires-Dist: pandas>=1.0; extra == "test"
46
+ Provides-Extra: s3
47
+ Requires-Dist: lsst-resources[s3]; extra == "s3"
48
+ Provides-Extra: https
49
+ Requires-Dist: lsst-resources[https]; extra == "https"
50
+ Provides-Extra: gs
51
+ Requires-Dist: lsst-resources[gs]; extra == "gs"
52
+ Dynamic: license-file
53
+
54
+ # lsst-daf-butler
55
+
56
+ [![pypi](https://img.shields.io/pypi/v/lsst-daf-butler.svg)](https://pypi.org/project/lsst-daf-butler/)
57
+ [![codecov](https://codecov.io/gh/lsst/daf_butler/branch/main/graph/badge.svg?token=2BUBL8R9RH)](https://codecov.io/gh/lsst/daf_butler)
58
+
59
+ LSST Data Access framework described in [arXiv:2206.14941](https://arxiv.org/abs/2206.14941).
60
+ Please cite [the SPIE paper](https://doi.org/10.1117/12.2629569) when using this software.
61
+
62
+ This is a **Python 3 only** package (we assume Python 3.11 or higher).
63
+
64
+ * SPIE paper from 2024: [Converting Rubin Observatory's data butler to a client/server architecture](https://doi.org/10.1117/12.3019130) ([Tech note](https://dmtn-288.lsst.io))
65
+ * SPIE Paper from 2022: [The Vera C. Rubin Observatory Data Butler and Pipeline Execution System](https://doi.org/10.1117/12.2629569) ([arXiv](https://arxiv.org/abs/2206.14941)) \[Primary reference]
66
+ * ADASS paper from 2019: [Abstracting the Storage and Retrieval of Image Data at the LSST](https://ui.adsabs.harvard.edu/abs/2019ASPC..523..653J/abstract).
67
+ * Early design note: [DMTN-056](https://dmtn-056.lsst.io)
68
+
69
+ PyPI: [lsst-daf-butler](https://pypi.org/project/lsst-daf-butler/)
70
+
71
+ This software is dual licensed under the GNU General Public License (version 3 of the License, or (at your option) any later version, and also under a 3-clause BSD license).
72
+ Recipients may choose which of these licenses to use; please see the files gpl-3.0.txt and/or bsd_license.txt, respectively.
73
+
74
+ ## Arrow Memory Leaks
75
+
76
+ From version 18 of arrow we have seen significant memory leaks when accessing parquet files using the default memory allocator.
77
+ If you see such leaks the workaround is to set the `ARROW_DEFAULT_MEMORY_POOL` environment variable to `jemalloc` following the advice from [apache/arrow#45882](https://github.com/apache/arrow/issues/45882).
78
+ For EUPS users this variable is automatically set.
@@ -0,0 +1,25 @@
1
+ # lsst-daf-butler
2
+
3
+ [![pypi](https://img.shields.io/pypi/v/lsst-daf-butler.svg)](https://pypi.org/project/lsst-daf-butler/)
4
+ [![codecov](https://codecov.io/gh/lsst/daf_butler/branch/main/graph/badge.svg?token=2BUBL8R9RH)](https://codecov.io/gh/lsst/daf_butler)
5
+
6
+ LSST Data Access framework described in [arXiv:2206.14941](https://arxiv.org/abs/2206.14941).
7
+ Please cite [the SPIE paper](https://doi.org/10.1117/12.2629569) when using this software.
8
+
9
+ This is a **Python 3 only** package (we assume Python 3.11 or higher).
10
+
11
+ * SPIE paper from 2024: [Converting Rubin Observatory's data butler to a client/server architecture](https://doi.org/10.1117/12.3019130) ([Tech note](https://dmtn-288.lsst.io))
12
+ * SPIE Paper from 2022: [The Vera C. Rubin Observatory Data Butler and Pipeline Execution System](https://doi.org/10.1117/12.2629569) ([arXiv](https://arxiv.org/abs/2206.14941)) \[Primary reference]
13
+ * ADASS paper from 2019: [Abstracting the Storage and Retrieval of Image Data at the LSST](https://ui.adsabs.harvard.edu/abs/2019ASPC..523..653J/abstract).
14
+ * Early design note: [DMTN-056](https://dmtn-056.lsst.io)
15
+
16
+ PyPI: [lsst-daf-butler](https://pypi.org/project/lsst-daf-butler/)
17
+
18
+ This software is dual licensed under the GNU General Public License (version 3 of the License, or (at your option) any later version, and also under a 3-clause BSD license).
19
+ Recipients may choose which of these licenses to use; please see the files gpl-3.0.txt and/or bsd_license.txt, respectively.
20
+
21
+ ## Arrow Memory Leaks
22
+
23
+ From version 18 of arrow we have seen significant memory leaks when accessing parquet files using the default memory allocator.
24
+ If you see such leaks the workaround is to set the `ARROW_DEFAULT_MEMORY_POOL` environment variable to `jemalloc` following the advice from [apache/arrow#45882](https://github.com/apache/arrow/issues/45882).
25
+ For EUPS users this variable is automatically set.
@@ -0,0 +1,27 @@
1
+ For copyright information see the COPYRIGHT file included in the top-level
2
+ directory of this distribution.
3
+
4
+ Redistribution and use in source and binary forms, with or without modification,
5
+ are permitted provided that the following conditions are met:
6
+
7
+ 1. Redistributions of source code must retain the above copyright notice,
8
+ this list of conditions and the following disclaimer.
9
+
10
+ 2. Redistributions in binary form must reproduce the above copyright
11
+ notice, this list of conditions and the following disclaimer in the
12
+ documentation and/or other materials provided with the distribution.
13
+
14
+ 3. Neither the names of the copyright holders nor the names of their
15
+ contributors may be used to endorse or promote products derived from
16
+ this software without specific prior written permission.
17
+
18
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
22
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.