File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11#!/usr/bin/env python3
22"""
3- Rewritten version of the un-marshalling process of javaobj (v3)
3+ Rewritten version of the un-marshalling and marshalling process of javaobj (v3)
44
5- This package targets Python 3.12+ and provides fully typed parsing of the
6- Java Object Serialization stream format, in read-only mode .
5+ This package targets Python 3.12+ and provides fully typed parsing and
6+ serializing of the Java Object Serialization stream format.
77
88:authors: Thomas Calmant
99:license: Apache License 2.0
6666 NumpyArrayTransformer ,
6767 ObjectTransformer ,
6868)
69+ from .writer import JavaStreamWriter , dump , dumps
6970
7071__all__ = [
71- # Entry points
72+ # Entry points (reading)
7273 "load" ,
7374 "loads" ,
75+ # Entry points (writing)
76+ "dump" ,
77+ "dumps" ,
78+ "JavaStreamWriter" ,
7479 # Transformer API
7580 "ObjectTransformer" ,
7681 "DefaultObjectTransformer" ,
You can’t perform that action at this time.
0 commit comments