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.
- lsst_daf_butler-29.2025.4800/COPYRIGHT +4 -0
- lsst_daf_butler-29.2025.4800/LICENSE +3 -0
- lsst_daf_butler-29.2025.4800/MANIFEST.in +1 -0
- lsst_daf_butler-29.2025.4800/PKG-INFO +78 -0
- lsst_daf_butler-29.2025.4800/README.md +25 -0
- lsst_daf_butler-29.2025.4800/bsd_license.txt +27 -0
- lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/CHANGES.rst +985 -0
- lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/concreteStorageClasses.rst +45 -0
- lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/configuring.rst +56 -0
- lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/datastores.rst +131 -0
- lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/dimensions.rst +116 -0
- lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/formatters.rst +389 -0
- lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/index.rst +338 -0
- lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/organizing.rst +104 -0
- lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/queries.rst +533 -0
- lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/use-in-tests.rst +78 -0
- lsst_daf_butler-29.2025.4800/doc/lsst.daf.butler/writing-subcommands.rst +527 -0
- lsst_daf_butler-29.2025.4800/gpl-v3.0.txt +674 -0
- lsst_daf_butler-29.2025.4800/pyproject.toml +247 -0
- lsst_daf_butler-29.2025.4800/python/lsst/__init__.py +3 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/__init__.py +3 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/__init__.py +93 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_butler.py +2250 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_butler_collections.py +479 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_butler_config.py +213 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_butler_instance_options.py +49 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_butler_metrics.py +117 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_butler_repo_index.py +240 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_collection_type.py +129 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_config.py +1353 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_config_support.py +376 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_dataset_association.py +118 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_dataset_existence.py +104 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_dataset_provenance.py +521 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_dataset_ref.py +1129 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_dataset_type.py +823 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_deferredDatasetHandle.py +120 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_exceptions.py +262 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_exceptions_legacy.py +61 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_file_dataset.py +164 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_file_descriptor.py +101 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_formatter.py +2156 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_labeled_butler_factory.py +227 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_limited_butler.py +466 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_location.py +272 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_named.py +610 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_quantum.py +629 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_quantum_backed.py +843 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_query_all_datasets.py +197 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_registry_shim.py +380 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_rubin/__init__.py +34 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_rubin/file_datasets.py +88 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_standalone_datastore.py +129 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_storage_class.py +891 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_storage_class_delegate.py +465 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_timespan.py +603 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_topology.py +192 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_utilities/__init__.py +26 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_utilities/locked_object.py +53 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_utilities/named_locks.py +61 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_utilities/thread_safe_cache.py +91 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/_uuid.py +79 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/arrow_utils.py +561 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/__init__.py +0 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/butler.py +462 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/cliLog.py +447 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/cmd/__init__.py +76 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/cmd/_remove_collections.py +109 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/cmd/_remove_runs.py +150 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/cmd/commands.py +864 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/opt/__init__.py +30 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/opt/arguments.py +66 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/opt/optionGroups.py +116 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/opt/options.py +317 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/progress.py +101 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/cli/utils.py +1324 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/column_spec.py +488 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/datastore.yaml +3 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/datastores/composites.yaml +13 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/datastores/fileDatastore.yaml +40 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/datastores/formatters.yaml +101 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/datastores/writeRecipes.yaml +39 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/dimensions.yaml +462 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe0.yaml +440 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe1.yaml +444 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe2.yaml +499 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe3.yaml +499 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe4.yaml +502 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe5.yaml +452 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe6.yaml +455 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/old_dimensions/daf_butler_universe7.yaml +462 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/registry.yaml +13 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/repo_transfer_formats.yaml +4 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/configs/storageClasses.yaml +443 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/__init__.py +29 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/_datastore.py +1596 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/_transfer.py +102 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/cache_manager.py +1211 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/composites.py +163 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/constraints.py +168 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/file_templates.py +896 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/generic_base.py +146 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/record_data.py +262 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastore/stored_file_info.py +448 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/__init__.py +0 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/chainedDatastore.py +1377 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/fileDatastore.py +3226 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/file_datastore/__init__.py +26 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/file_datastore/get.py +443 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/file_datastore/retrieve_artifacts.py +487 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/file_datastore/transfer.py +104 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/datastores/inMemoryDatastore.py +774 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/ddl.py +666 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/delegates/__init__.py +0 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/delegates/arrowtable.py +282 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/__init__.py +50 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_config.py +702 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_coordinate.py +1116 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_data_coordinate_iterable.py +850 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_database.py +403 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_elements.py +609 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_governor.py +148 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_group.py +624 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_packer.py +179 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_record_set.py +1017 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_record_table.py +244 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_records.py +652 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_schema.py +442 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_skypix.py +192 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/_universe.py +570 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/construction.py +196 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/dimensions/record_cache.py +103 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_butler/__init__.py +28 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_butler/_direct_butler.py +2630 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_butler/_direct_butler_collections.py +202 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/__init__.py +30 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_driver.py +1592 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_postprocessing.py +227 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_query_analysis.py +249 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_query_builder.py +775 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_result_page_converter.py +451 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_sql_builders.py +702 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/direct_query_driver/_sql_column_visitor.py +343 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/__init__.py +0 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/astropyTable.py +63 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/file.py +348 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/json.py +108 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/logs.py +70 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/matplotlib.py +54 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/packages.py +87 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/parquet.py +1537 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/pickle.py +61 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/typeless.py +213 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/formatters/yaml.py +122 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/json.py +156 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/logging.py +772 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/mapping_factory.py +315 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/name_shrinker.py +117 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/nonempty_mapping.py +116 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/persistence_context.py +201 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/progress.py +491 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/py.typed +0 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/pydantic_utils.py +364 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/__init__.py +33 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_base.py +259 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_data_coordinate_query_results.py +103 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_dataset_query_results.py +134 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_dimension_record_query_results.py +123 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_expression_strings.py +458 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_general_query_results.py +237 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_identifiers.py +177 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/_query.py +841 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/convert_args.py +161 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/driver.py +374 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expression_factory.py +625 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/__init__.py +28 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/categorize.py +59 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/__init__.py +32 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/exprTree.py +712 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/parser.py +48 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/parserLex.py +236 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/parserYacc.py +513 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/ply/__init__.py +5 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/ply/lex.py +1156 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/ply/yacc.py +3581 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/expressions/parser/treeVisitor.py +346 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/overlaps.py +560 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/predicate_constraints_summary.py +223 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/result_specs.py +301 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/__init__.py +41 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_base.py +233 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_column_expression.py +339 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_column_literal.py +417 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_column_reference.py +191 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_column_set.py +435 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_predicate.py +756 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/tree/_query_tree.py +353 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/queries/visitors.py +564 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/__init__.py +54 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_caching_context.py +121 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_collection_record_cache.py +160 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_collection_summary.py +271 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_collection_summary_cache.py +86 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_config.py +142 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_defaults.py +262 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_exceptions.py +99 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_registry.py +1475 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_registry_base.py +272 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/_registry_factory.py +138 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/attributes.py +159 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/bridge/__init__.py +26 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/bridge/ephemeral.py +137 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/bridge/monolithic.py +442 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/collections/__init__.py +26 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/collections/_base.py +909 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/collections/nameKey.py +333 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/collections/synthIntKey.py +351 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/connectionString.py +131 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/databases/__init__.py +26 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/databases/postgresql.py +684 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/databases/sqlite.py +512 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/datasets/__init__.py +26 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/datasets/byDimensions/__init__.py +28 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/datasets/byDimensions/_dataset_type_cache.py +226 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/datasets/byDimensions/_manager.py +1507 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/datasets/byDimensions/summaries.py +457 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/datasets/byDimensions/tables.py +654 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/dimensions/__init__.py +26 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/dimensions/static.py +1002 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/__init__.py +36 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_attributes.py +207 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_bridge.py +437 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_collections.py +821 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_database.py +2119 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_database_explain.py +79 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_datasets.py +661 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_dimensions.py +380 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_obscore.py +306 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_opaque.py +281 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/interfaces/_versioning.py +318 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/managers.py +508 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/nameShrinker.py +32 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/__init__.py +32 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/_config.py +239 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/_manager.py +424 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/_records.py +497 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/_schema.py +237 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/_spatial.py +179 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/default_spatial.py +111 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/obscore/pgsphere.py +238 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/opaque.py +241 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/queries/__init__.py +31 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/queries/_query_common.py +179 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/queries/_query_data_coordinates.py +181 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/queries/_query_datasets.py +147 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/queries/_query_dimension_records.py +77 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/queries/_results.py +541 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/sql_registry.py +1791 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/tests/__init__.py +29 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/tests/_database.py +1359 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/tests/_registry.py +4151 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/versions.py +260 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/registry/wildcards.py +499 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/__init__.py +29 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_collection_args.py +132 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_config.py +48 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_defaults.py +60 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_errors.py +45 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_factory.py +158 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_get.py +98 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_http_connection.py +354 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_query_driver.py +294 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_query_results.py +91 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_ref_utils.py +131 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_registry.py +359 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_remote_butler.py +784 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_remote_butler_collections.py +136 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/_remote_file_transfer_source.py +117 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/authentication/__init__.py +0 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/authentication/cadc.py +106 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/authentication/interface.py +46 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/authentication/rubin.py +112 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/registry/__init__.py +0 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/__init__.py +29 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/_config.py +122 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/_dependencies.py +172 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/_factory.py +58 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/_gafaelfawr.py +127 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/_server.py +128 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/_telemetry.py +105 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_external.py +426 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_external_query.py +222 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_file_info.py +72 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_internal.py +51 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_query_limits.py +107 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_query_serialization.py +94 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_query_streaming.py +187 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server/handlers/_utils.py +53 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/remote_butler/server_models.py +477 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/repo_relocation.py +94 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/__init__.py +49 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/_associate.py +81 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/_pruneDatasets.py +275 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/butlerImport.py +78 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/certifyCalibrations.py +91 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/collectionChain.py +150 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/configDump.py +67 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/configValidate.py +65 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/createRepo.py +70 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/exportCalibs.py +183 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/ingest_files.py +246 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/ingest_zip.py +63 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/queryCollections.py +381 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/queryDataIds.py +227 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/queryDatasetTypes.py +88 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/queryDatasets.py +349 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/queryDimensionRecords.py +146 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/register_dataset_type.py +88 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/removeCollections.py +173 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/removeDatasetType.py +47 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/removeRuns.py +148 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/retrieveArtifacts.py +136 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/script/transferDatasets.py +122 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/__init__.py +33 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/_datasetsHelper.py +232 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/_dummyRegistry.py +239 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/_examplePythonTypes.py +403 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/_testRepo.py +593 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/butler_queries.py +2688 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/cliCmdTestBase.py +185 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/cliLogTestBase.py +452 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/deferredFormatter.py +48 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/dict_convertible_model.py +77 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/hybrid_butler.py +447 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/hybrid_butler_collections.py +114 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/hybrid_butler_registry.py +378 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/postgresql.py +116 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/__init__.py +0 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/base.yaml +81 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/ci_hsc-subset-skymap.yaml +45 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/ci_hsc-subset.yaml +732 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/datasets.yaml +138 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/hsc-rc2-subset-v0.yaml +159 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/spatial.py +662 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/registry_data/spatial.yaml +192 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/server.py +208 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/server_available.py +53 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/server_utils.py +76 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/testFormatters.py +289 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/tests/utils.py +439 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/time_utils.py +309 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/timespan_database_representation.py +665 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/transfers/__init__.py +30 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/transfers/_context.py +362 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/transfers/_interfaces.py +193 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/transfers/_yaml.py +711 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/utils.py +169 -0
- lsst_daf_butler-29.2025.4800/python/lsst/daf/butler/version.py +2 -0
- lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/PKG-INFO +78 -0
- lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/SOURCES.txt +435 -0
- lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/dependency_links.txt +1 -0
- lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/entry_points.txt +2 -0
- lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/requires.txt +37 -0
- lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/top_level.txt +1 -0
- lsst_daf_butler-29.2025.4800/python/lsst_daf_butler.egg-info/zip-safe +1 -0
- lsst_daf_butler-29.2025.4800/setup.cfg +12 -0
- lsst_daf_butler-29.2025.4800/tests/test_astropyTableFormatter.py +70 -0
- lsst_daf_butler-29.2025.4800/tests/test_authentication.py +58 -0
- lsst_daf_butler-29.2025.4800/tests/test_butler.py +3425 -0
- lsst_daf_butler-29.2025.4800/tests/test_butler_factory.py +76 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdAssociate.py +96 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdConfigDump.py +206 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdConfigValidate.py +90 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdCreate.py +84 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdImport.py +76 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdIngestFiles.py +121 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdPruneDatasets.py +524 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdQueryCollections.py +448 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdQueryDataIds.py +193 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdQueryDatasetTypes.py +257 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdQueryDatasets.py +725 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdQueryDimensionRecords.py +291 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdRemoveCollections.py +308 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdRemoveRuns.py +169 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliCmdRetrieveArtifacts.py +160 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliLog.py +68 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliPluginLoader.py +167 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliUtilSplitCommas.py +122 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliUtilSplitKv.py +327 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliUtilToUpper.py +76 -0
- lsst_daf_butler-29.2025.4800/tests/test_cliUtils.py +454 -0
- lsst_daf_butler-29.2025.4800/tests/test_column_spec.py +95 -0
- lsst_daf_butler-29.2025.4800/tests/test_composites.py +106 -0
- lsst_daf_butler-29.2025.4800/tests/test_config.py +719 -0
- lsst_daf_butler-29.2025.4800/tests/test_connectionString.py +89 -0
- lsst_daf_butler-29.2025.4800/tests/test_constraints.py +198 -0
- lsst_daf_butler-29.2025.4800/tests/test_datasets.py +1042 -0
- lsst_daf_butler-29.2025.4800/tests/test_datastore.py +2270 -0
- lsst_daf_butler-29.2025.4800/tests/test_ddl.py +90 -0
- lsst_daf_butler-29.2025.4800/tests/test_dimension_record_containers.py +506 -0
- lsst_daf_butler-29.2025.4800/tests/test_dimensions.py +997 -0
- lsst_daf_butler-29.2025.4800/tests/test_exprParserLex.py +336 -0
- lsst_daf_butler-29.2025.4800/tests/test_exprParserYacc.py +900 -0
- lsst_daf_butler-29.2025.4800/tests/test_formatter.py +341 -0
- lsst_daf_butler-29.2025.4800/tests/test_gafaelfawr.py +102 -0
- lsst_daf_butler-29.2025.4800/tests/test_location.py +159 -0
- lsst_daf_butler-29.2025.4800/tests/test_logFormatter.py +210 -0
- lsst_daf_butler-29.2025.4800/tests/test_logging.py +371 -0
- lsst_daf_butler-29.2025.4800/tests/test_matplotlibFormatter.py +94 -0
- lsst_daf_butler-29.2025.4800/tests/test_nonempty_mapping.py +52 -0
- lsst_daf_butler-29.2025.4800/tests/test_obscore.py +634 -0
- lsst_daf_butler-29.2025.4800/tests/test_packages.py +68 -0
- lsst_daf_butler-29.2025.4800/tests/test_parquet.py +2552 -0
- lsst_daf_butler-29.2025.4800/tests/test_postgresql.py +266 -0
- lsst_daf_butler-29.2025.4800/tests/test_progress.py +291 -0
- lsst_daf_butler-29.2025.4800/tests/test_pydantic_utils.py +164 -0
- lsst_daf_butler-29.2025.4800/tests/test_quantum.py +216 -0
- lsst_daf_butler-29.2025.4800/tests/test_quantumBackedButler.py +504 -0
- lsst_daf_butler-29.2025.4800/tests/test_query_direct_postgresql.py +71 -0
- lsst_daf_butler-29.2025.4800/tests/test_query_direct_sqlite.py +59 -0
- lsst_daf_butler-29.2025.4800/tests/test_query_interface.py +1915 -0
- lsst_daf_butler-29.2025.4800/tests/test_query_remote.py +62 -0
- lsst_daf_butler-29.2025.4800/tests/test_query_utilities.py +519 -0
- lsst_daf_butler-29.2025.4800/tests/test_remote_butler.py +215 -0
- lsst_daf_butler-29.2025.4800/tests/test_server.py +723 -0
- lsst_daf_butler-29.2025.4800/tests/test_simpleButler.py +1018 -0
- lsst_daf_butler-29.2025.4800/tests/test_sqlite.py +338 -0
- lsst_daf_butler-29.2025.4800/tests/test_storageClass.py +367 -0
- lsst_daf_butler-29.2025.4800/tests/test_templates.py +441 -0
- lsst_daf_butler-29.2025.4800/tests/test_testRepo.py +266 -0
- lsst_daf_butler-29.2025.4800/tests/test_thread_utils.py +83 -0
- lsst_daf_butler-29.2025.4800/tests/test_time_utils.py +156 -0
- lsst_daf_butler-29.2025.4800/tests/test_timespan.py +306 -0
- lsst_daf_butler-29.2025.4800/tests/test_utils.py +230 -0
- lsst_daf_butler-29.2025.4800/tests/test_uuid.py +53 -0
- 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 @@
|
|
|
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
|
+
[](https://pypi.org/project/lsst-daf-butler/)
|
|
57
|
+
[](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
|
+
[](https://pypi.org/project/lsst-daf-butler/)
|
|
4
|
+
[](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.
|