File: __init__.py

package info (click to toggle)
python-jsonlines 4.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 136 kB
  • sloc: python: 706; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 258 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""
Module for the jsonlines data format.
"""

# expose only public api
from .jsonlines import (
    Error,
    InvalidLineError,
    Reader,
    Writer,
    open,
)

__all__ = [
    "Error",
    "InvalidLineError",
    "Reader",
    "Writer",
    "open",
]