Coverage for python / lsst / images / json / __init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-30 09:06 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-04-30 09:06 +0000
1# This file is part of lsst-images.
2#
3# Developed for the LSST Data Management System.
4# This product includes software developed by the LSST Project
5# (https://www.lsst.org).
6# See the COPYRIGHT file at the top-level directory of this distribution
7# for details of code ownership.
8#
9# Use of this source code is governed by a 3-clause BSD-style
10# license that can be found in the LICENSE file.
13"""Archive implementations for simple JSON files.
15The archives in this package write to and read from JSON by embedding all
16array and table data into the JSON tree as inline arrays. While this
17technically allows them to support arbitrary archive-serializable object, it
18can be extremely inefficient for large arrays and tables.
20The outermost object in the stored form is just the
21`.serialization.ArchiveTree` that corresponds to the top-level in-memory
22object being saved.
23"""
25from ._input_archive import *
26from ._output_archive import *