File: __init__.py

package info (click to toggle)
eccodes-python 2%3A2.44.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,048 kB
  • sloc: python: 7,750; ansic: 280; sh: 94; makefile: 81; cpp: 30
file content (15 lines) | stat: -rw-r--r-- 313 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
A High-level interface for en/decoding of BUFR files.
"""

from .common import change_behaviour, get_behaviour, set_behaviour
from .helpers import missing_of
from .message import BUFRMessage

__all__ = [
    "change_behaviour",
    "get_behaviour",
    "set_behaviour",
    "missing_of",
    "BUFRMessage",
]