File: __init__.py

package info (click to toggle)
python-asdf 4.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,032 kB
  • sloc: python: 24,068; makefile: 123
file content (32 lines) | stat: -rw-r--r-- 730 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
"""
asdf: Python library for reading and writing Advanced Scientific
Data Format (ASDF) files
"""

__all__ = [
    "AsdfFile",
    "ExternalArrayReference",
    "IntegerType",
    "Stream",
    "ValidationError",
    "__version__",
    "config_context",
    "dump",
    "dumps",
    "get_config",
    "info",
    "load",
    "loads",
    "open",
]


from ._asdf import AsdfFile
from ._asdf import open_asdf as open
from ._convenience import info
from ._dump import dump, dumps, load, loads
from ._version import version as __version__
from .config import config_context, get_config
from .exceptions import ValidationError
from .tags.core import IntegerType, Stream
from .tags.core.external_reference import ExternalArrayReference