Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/fastavro/write.py: 83%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1try:
2 from . import _write
3except ImportError:
4 from . import _write_py as _write # type: ignore
5from . import json_write
6from . import logical_writers
8# Private API
10# Public API
11writer = _write.writer
12Writer = _write.Writer
13json_writer = json_write.json_writer
14schemaless_writer = _write.schemaless_writer
15LOGICAL_WRITERS = logical_writers.LOGICAL_WRITERS
17__all__ = [
18 "writer",
19 "Writer",
20 "schemaless_writer",
21 "LOGICAL_WRITERS",
22]