avrotize 2.18.2__py3-none-any.whl → 2.20.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- avrotize/_version.py +2 -2
- avrotize/avrotocsharp/project.csproj.jinja +7 -7
- avrotize/avrotocsharp/testproject.csproj.jinja +3 -3
- avrotize/avrotocsharp.py +21 -2
- avrotize/avrotojava/testproject.pom.jinja +4 -3
- avrotize/avrotojava.py +16 -6
- avrotize/avrotots/class_core.ts.jinja +12 -0
- avrotize/avrotots/class_test.ts.jinja +77 -0
- avrotize/avrotots.py +96 -0
- avrotize/cddltostructure.py +1841 -0
- avrotize/commands.json +226 -0
- avrotize/constants.py +71 -4
- avrotize/dependencies/cpp/vcpkg/vcpkg.json +19 -0
- avrotize/dependencies/cs/net90/dependencies.csproj +27 -0
- avrotize/dependencies/go/go121/go.mod +6 -0
- avrotize/dependencies/java/jdk21/pom.xml +91 -0
- avrotize/dependencies/python/py312/requirements.txt +13 -0
- avrotize/dependencies/rust/stable/Cargo.toml +17 -0
- avrotize/dependencies/typescript/node22/package.json +16 -0
- avrotize/dependency_version.py +432 -0
- avrotize/structuretocddl.py +597 -0
- avrotize/structuretocsharp/dataclass_core.jinja +6 -1
- avrotize/structuretocsharp/json_structure_converters.cs.jinja +399 -0
- avrotize/structuretocsharp/program.cs.jinja +11 -6
- avrotize/structuretocsharp/project.csproj.jinja +4 -3
- avrotize/structuretocsharp/testproject.csproj.jinja +4 -3
- avrotize/structuretocsharp.py +311 -21
- avrotize/structuretojava/choice_core.jinja +34 -0
- avrotize/structuretojava/class_core.jinja +23 -0
- avrotize/structuretojava/enum_core.jinja +18 -0
- avrotize/structuretojava/equals_hashcode.jinja +30 -0
- avrotize/structuretojava/pom.xml.jinja +26 -0
- avrotize/structuretojava/tuple_core.jinja +49 -0
- avrotize/structuretojava.py +853 -0
- {avrotize-2.18.2.dist-info → avrotize-2.20.0.dist-info}/METADATA +29 -2
- {avrotize-2.18.2.dist-info → avrotize-2.20.0.dist-info}/RECORD +39 -20
- {avrotize-2.18.2.dist-info → avrotize-2.20.0.dist-info}/WHEEL +0 -0
- {avrotize-2.18.2.dist-info → avrotize-2.20.0.dist-info}/entry_points.txt +0 -0
- {avrotize-2.18.2.dist-info → avrotize-2.20.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: avrotize
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.20.0
|
|
4
4
|
Summary: Tools to convert from and to Avro Schema from various other schema languages.
|
|
5
5
|
Author-email: Clemens Vasters <clemensv@microsoft.com>
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -24,6 +24,8 @@ Requires-Dist: jinja2>=3.1.4
|
|
|
24
24
|
Requires-Dist: pyiceberg>=0.10.0
|
|
25
25
|
Requires-Dist: pandas>=2.2.2
|
|
26
26
|
Requires-Dist: docker>=7.1.0
|
|
27
|
+
Requires-Dist: cddlparser>=0.5.0
|
|
28
|
+
Requires-Dist: json-structure>=0.1.8
|
|
27
29
|
Requires-Dist: pytest>=8.3.2 ; extra == "dev"
|
|
28
30
|
Requires-Dist: fastavro>=1.9.5 ; extra == "dev"
|
|
29
31
|
Requires-Dist: xmlschema>=3.3.2 ; extra == "dev"
|
|
@@ -125,10 +127,11 @@ Generate code from JSON Structure:
|
|
|
125
127
|
|
|
126
128
|
- [`avrotize s2cpp`](#convert-json-structure-to-c-classes) - Generate C++ code from JSON Structure schema.
|
|
127
129
|
- [`avrotize s2cs`](#convert-json-structure-to-c-classes) - Generate C# code from JSON Structure schema.
|
|
130
|
+
- [`avrotize s2go`](#convert-json-structure-to-go-classes) - Generate Go code from JSON Structure schema.
|
|
131
|
+
- [`avrotize s2java`](#convert-json-structure-to-java-classes) - Generate Java code from JSON Structure schema.
|
|
128
132
|
- [`avrotize s2py`](#convert-json-structure-to-python-classes) - Generate Python code from JSON Structure schema.
|
|
129
133
|
- [`avrotize s2rust`](#convert-json-structure-to-rust-classes) - Generate Rust code from JSON Structure schema.
|
|
130
134
|
- [`avrotize s2ts`](#convert-json-structure-to-typescript-classes) - Generate TypeScript code from JSON Structure schema.
|
|
131
|
-
- [`avrotize s2go`](#convert-json-structure-to-go-classes) - Generate Go code from JSON Structure schema.
|
|
132
135
|
|
|
133
136
|
Direct JSON Structure conversions:
|
|
134
137
|
|
|
@@ -1040,6 +1043,30 @@ Conversion notes:
|
|
|
1040
1043
|
- The tool generates a complete Go module with go.mod file, struct definitions, helper functions, and unit tests.
|
|
1041
1044
|
- Generated code includes methods for JSON serialization/deserialization when annotations are enabled.
|
|
1042
1045
|
|
|
1046
|
+
### Convert JSON Structure to Java classes
|
|
1047
|
+
|
|
1048
|
+
```bash
|
|
1049
|
+
avrotize s2java <path_to_structure_schema_file> [--out <path_to_java_dir>] [--package <java_package>] [--jackson-annotation] [--pascal-properties]
|
|
1050
|
+
```
|
|
1051
|
+
|
|
1052
|
+
Parameters:
|
|
1053
|
+
|
|
1054
|
+
- `<path_to_structure_schema_file>`: The path to the JSON Structure schema file to be converted. If omitted, the file is read from stdin.
|
|
1055
|
+
- `--out`: The path to the directory to write the Java classes to. Required.
|
|
1056
|
+
- `--package`: (optional) The Java package name for the generated classes.
|
|
1057
|
+
- `--jackson-annotation`: (optional) Use Jackson annotations for JSON serialization (default: true).
|
|
1058
|
+
- `--pascal-properties`: (optional) Use PascalCase for property names.
|
|
1059
|
+
|
|
1060
|
+
Conversion notes:
|
|
1061
|
+
|
|
1062
|
+
- The tool generates Java classes from JSON Structure schemas. Each object type is converted to a Java class with getter/setter methods.
|
|
1063
|
+
- JSON Structure primitive types are mapped to Java types. Extended types like `date`, `time`, `datetime` are mapped to `LocalDate`, `LocalTime`, `Instant`.
|
|
1064
|
+
- Integer types (int8-int64, uint8-uint64) are mapped to corresponding Java types. `uint64` uses `BigInteger` for full range support.
|
|
1065
|
+
- Choice types (discriminated unions) use Jackson polymorphism with `@JsonTypeInfo` and `@JsonSubTypes` annotations.
|
|
1066
|
+
- Tuple types serialize as JSON arrays using `@JsonFormat(shape = Shape.ARRAY)`.
|
|
1067
|
+
- The tool generates a complete Maven project with pom.xml including Jackson dependencies.
|
|
1068
|
+
- Generated classes include `equals()` and `hashCode()` implementations.
|
|
1069
|
+
|
|
1043
1070
|
### Convert Avrotize Schema to Datapackage schema
|
|
1044
1071
|
|
|
1045
1072
|
```bash
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
avrotize/__init__.py,sha256=JjPSX7c686TV00J_x0Py9JwXS0aJl8vpLn81Y0ondkw,3606
|
|
2
2
|
avrotize/__main__.py,sha256=5pY8dYAURcOnFRvgb6fgaOIa_SOzPLIWbU8-ZTQ0jG4,88
|
|
3
|
-
avrotize/_version.py,sha256=
|
|
3
|
+
avrotize/_version.py,sha256=lINSLhOT4N0riU7Dl_hviY26AewaFD4umVigR9oN4aw,706
|
|
4
4
|
avrotize/asn1toavro.py,sha256=QDNwfBfXMxSH-k487CA3CaGCGDzOLs4PpVbbENm5uF0,8386
|
|
5
5
|
avrotize/avrotize.py,sha256=VHFpBltMVBpyt0ju3ZWW725BKjQ4Fk-nrAy8udW-X44,5713
|
|
6
6
|
avrotize/avrotocpp.py,sha256=hRZV247_TDD7Sm6_8sFx-UH5SueLLx2Wg6TvAVUX0iE,25693
|
|
7
|
-
avrotize/avrotocsharp.py,sha256=
|
|
7
|
+
avrotize/avrotocsharp.py,sha256=YpJRci_UoZ2tSpl3etsCZ_tSkn2YCwXUpnGbcxSck5M,65404
|
|
8
8
|
avrotize/avrotocsv.py,sha256=PaDEW2aGRFVNLwewWhJ3OwxbKFI3PBg_mTgtT4uLMko,3689
|
|
9
9
|
avrotize/avrotodatapackage.py,sha256=zSCphLvCYiBKRAUCdccsr-4JysH3PyAS6fSgwa65Tss,7259
|
|
10
10
|
avrotize/avrotodb.py,sha256=5fNJgz00VMimyOl7eI0lIxlcaN_JnN0mb2Q9lzCRecw,46989
|
|
11
11
|
avrotize/avrotogo.py,sha256=RnycgAuGejq00hDdsUGdMHiJX6nr0VAqNArbCkTzUMg,21880
|
|
12
12
|
avrotize/avrotographql.py,sha256=i6G7xWjH_Lsn_CLiM4BCPb8OyZuCCpsYjXwXNTRMwEE,7394
|
|
13
13
|
avrotize/avrotoiceberg.py,sha256=plVHGWkED1YDLcMDxL7NMdJl2f8G32hwlNWFrBLcsD8,9057
|
|
14
|
-
avrotize/avrotojava.py,sha256=
|
|
14
|
+
avrotize/avrotojava.py,sha256=_G_67xi1H0Ctj9KagiCnVNETvyPicOYO8ASvz6e1XYE,131861
|
|
15
15
|
avrotize/avrotojs.py,sha256=QjB6XjFnDrpZBZrrWqS0TN8fQfRXBfhHabfG73FOIo8,12249
|
|
16
16
|
avrotize/avrotojsons.py,sha256=WXWniQqwcl8eU35VibDv7qJJwbiLV_yoWZ4JxiZ8mHA,21588
|
|
17
17
|
avrotize/avrotojstruct.py,sha256=-Hs4Ta958bRKmOfSTzRFENABCZ6lQPSPbIBEXvOQD1M,14660
|
|
@@ -22,14 +22,16 @@ avrotize/avrotoparquet.py,sha256=qm5hfia5elW1Yn4KACG8bbudLAqQSwGk3fIkTvdT5Rg,908
|
|
|
22
22
|
avrotize/avrotoproto.py,sha256=STqbdGjVrgKrlKXt-6dZlekW_Oq0W0StRx80St1XqIc,22486
|
|
23
23
|
avrotize/avrotopython.py,sha256=sPsSLseSq-toKHnsFsYRRtGePGYospRz2mwGLep-POw,31147
|
|
24
24
|
avrotize/avrotorust.py,sha256=QMIBNkFpDlH44kuQo24k5D-f0lmdhoA5b7hEbhKsnMw,22214
|
|
25
|
-
avrotize/avrotots.py,sha256=
|
|
25
|
+
avrotize/avrotots.py,sha256=81k-6ZiIeRJENPXuUzPZchBGxr9Oper4Ra4GdFypWnA,33418
|
|
26
26
|
avrotize/avrotoxsd.py,sha256=iGQq_8kC0kfKsqvqS6s_mO-kJ8N5G8vXOwqRI_DZUxc,17744
|
|
27
|
-
avrotize/
|
|
27
|
+
avrotize/cddltostructure.py,sha256=MA2c-P3CIEAxEaBX-FF299gR55xcLEV3FrfTr2QfayM,74491
|
|
28
|
+
avrotize/commands.json,sha256=afZ36gTItJdtM8z-qOTOw0MazKz1WKZMztY86JUHcgU,88538
|
|
28
29
|
avrotize/common.py,sha256=enqNR1I9-SbW7fNJE3w7N2R87kiN6_9Oa7VB4b2AUBc,31913
|
|
29
|
-
avrotize/constants.py,sha256=
|
|
30
|
+
avrotize/constants.py,sha256=SvI_WLdiESe05snUfqD_jF6UWjE_2eAzGyLeRkK2WMg,2214
|
|
30
31
|
avrotize/csvtoavro.py,sha256=TuIYm_Xv8gioEHl1YgWQKOYkFGGHfuwmK5RuEAEXbt8,4293
|
|
31
32
|
avrotize/datapackagetoavro.py,sha256=lw1S3H6UpKtjJj9ywDTuRw-qcihFx0vFJNPK7SlgKvY,2607
|
|
32
33
|
avrotize/dependency_resolver.py,sha256=LGOTutpobJ4kMjAwvs-l0Mt2tEoZFaXCazs-u38qnYk,19374
|
|
34
|
+
avrotize/dependency_version.py,sha256=tvbpO2VstTSTmNA5jbzQl48u6jnIM7BHyASQrrgsRYU,16844
|
|
33
35
|
avrotize/jsonstoavro.py,sha256=ZzigsCjAxw_TflXCjTLKHTrPmkiZRZMpuaZICfT_r_I,120069
|
|
34
36
|
avrotize/jsonstostructure.py,sha256=WVoKcFoDvtA_QIScZJa8oXZbwpc7Au-bTV3_pUXzTik,135445
|
|
35
37
|
avrotize/jstructtoavro.py,sha256=sOq7Ru1b8_ZLCEsnBqx3gsMWd7dPAaYxoraAD0bz6rk,33891
|
|
@@ -39,14 +41,16 @@ avrotize/parquettoavro.py,sha256=iAPrSYNkiH3fBKNVDfIgeXkQbAiopa252ULJrGgmBDI,553
|
|
|
39
41
|
avrotize/proto2parser.py,sha256=__9R3cqiUJXc_efPCZZcF7rt18kA7mfhmX0qm2v0eSw,19742
|
|
40
42
|
avrotize/proto3parser.py,sha256=MfE84c-oAWWuzYmKlEZ5g5LUF7YzZaASFh2trX3UCaw,15604
|
|
41
43
|
avrotize/prototoavro.py,sha256=hqXBGRxYojaEbEgoHZxXwMG4R1nWC7UMl_XNLWfqH38,17346
|
|
44
|
+
avrotize/structuretocddl.py,sha256=RK_dTJf0oAo6BIBM48NHRcWC96OtUjlgUC6HzXs5Lkk,21234
|
|
42
45
|
avrotize/structuretocpp.py,sha256=tBWOvyZPYQ1CHN6RgDnWlmzJ1giOyQ9SlHBHWvhPyiw,35898
|
|
43
|
-
avrotize/structuretocsharp.py,sha256=
|
|
46
|
+
avrotize/structuretocsharp.py,sha256=Y5TLMxUA0yt9QlXb8L9mSKFhLGmJkanwsg0yo0QfugI,122209
|
|
44
47
|
avrotize/structuretocsv.py,sha256=w9cwXAnnakKaeTtXsLWWO8KwYnXUxyXvC7a-ZKs-E94,13851
|
|
45
48
|
avrotize/structuretodatapackage.py,sha256=NEHRt30KfVDWH1EQakvuMdRZTtfVXx8fsaYud0ofb2g,29768
|
|
46
49
|
avrotize/structuretodb.py,sha256=3QE_TCdNklGH5ymzGsEnX1sI4OhvX2AYKPH7xtR5tHk,43926
|
|
47
50
|
avrotize/structuretogo.py,sha256=VCEUz-5J8uRqX1hWaTimtfVzEsIB-gs4wxa308rYD0s,32470
|
|
48
51
|
avrotize/structuretographql.py,sha256=wcGXnrup5v5saRa1BhR6o-X8q8ujsQMVqrFHQTBPjww,20468
|
|
49
52
|
avrotize/structuretoiceberg.py,sha256=itKb33Kj-7-udk4eHTLmTEasIeh1ggpZ3e_bwCxLABM,15344
|
|
53
|
+
avrotize/structuretojava.py,sha256=jG2Vcf1KdezWrZo5lsecxLnmnMw1rA96uOxVWJQ4Rso,43372
|
|
50
54
|
avrotize/structuretojsons.py,sha256=PJrQBaf6yQHu5eFkePxbjPBEmL-fYfX2wj6OmH1jsWw,22495
|
|
51
55
|
avrotize/structuretokusto.py,sha256=rOKgYIcm7ZK8RS-VvMFPNzPzwtv7c4dIKU-fKjrJLyM,30618
|
|
52
56
|
avrotize/structuretomd.py,sha256=exfCldYbieVdduhotSoLrxsbphmyJQyeQso9qv4qyUw,13642
|
|
@@ -64,9 +68,9 @@ avrotize/avrotocpp/vcpkg.json.jinja,sha256=gEBg8px6sPwdyVTFf8RuLCaz4tkgbiantnLyT
|
|
|
64
68
|
avrotize/avrotocsharp/class_test.cs.jinja,sha256=EiRb2IZgiXh2L8fyeifjt-0ijsRrh_vwpw7dVDALIbI,5991
|
|
65
69
|
avrotize/avrotocsharp/dataclass_core.jinja,sha256=rdEoD388LzF3jf9Ypd4m9NrtWljXG2nCbHDxZWv0_P8,11037
|
|
66
70
|
avrotize/avrotocsharp/enum_test.cs.jinja,sha256=BUiBLe1yvnxs-4cgwEjYXqkWmR94iVJsRIhBd_quFYc,579
|
|
67
|
-
avrotize/avrotocsharp/project.csproj.jinja,sha256=
|
|
71
|
+
avrotize/avrotocsharp/project.csproj.jinja,sha256=KiEQ8f5iomue_HYN6917geUTeNv2BMxB3SR-olYFWsc,1142
|
|
68
72
|
avrotize/avrotocsharp/project.sln.jinja,sha256=a5DcTeRa63bf9mOQzczMrYgmjHCOhdHMB7wVFPagnWU,1480
|
|
69
|
-
avrotize/avrotocsharp/testproject.csproj.jinja,sha256=
|
|
73
|
+
avrotize/avrotocsharp/testproject.csproj.jinja,sha256=s2lk1exEMu5XgrY52n49ADz3A_cXTvbFDcni1gDzx9Y,652
|
|
70
74
|
avrotize/avrotogo/go_enum.jinja,sha256=aaVwQJxJDHFsWYyujooWjI6MbM65jTdJqytE4l7QRsk,226
|
|
71
75
|
avrotize/avrotogo/go_helpers.jinja,sha256=WSjLIqkrYLUKdQBejEpOnNiENCaU8HQvm4gshy1gEiA,506
|
|
72
76
|
avrotize/avrotogo/go_struct.jinja,sha256=vI-xGVC1O7uAFYoY0T0kbT2Be5gFDkgc_UdFUbbpHZk,4272
|
|
@@ -74,7 +78,7 @@ avrotize/avrotogo/go_test.jinja,sha256=r1tGQqHP5MiSRj3yQhPSQLNSx1ihfsl6MnUU7xbHA
|
|
|
74
78
|
avrotize/avrotogo/go_union.jinja,sha256=OcRVPWI-1OvYthh7cB-8RMT9nJEOStAQMfbW3b5hpUU,890
|
|
75
79
|
avrotize/avrotojava/class_test.java.jinja,sha256=LvSZLumEBDZWHlXCbaJNlSb-ALILS2s9byIdGc7WHDM,9443
|
|
76
80
|
avrotize/avrotojava/enum_test.java.jinja,sha256=INIKtiKrZwSFXVXgv8ouvzGv8vzjWouRq3DAPqxRs8k,545
|
|
77
|
-
avrotize/avrotojava/testproject.pom.jinja,sha256=
|
|
81
|
+
avrotize/avrotojava/testproject.pom.jinja,sha256=qRKGs9cCfex0hNgryyIJLae-pSpP4LMpPYcn8H8bBvk,2072
|
|
78
82
|
avrotize/avrotomd/README.md.jinja,sha256=efG9ly41AjNMuOOnq9U7LXEhGylfHhVTzqe_COM4cRM,999
|
|
79
83
|
avrotize/avrotopython/dataclass_core.jinja,sha256=5rmmblfkaxdEWcSyqUQj0zzCsnDo8I8vVZ77uw3u548,10280
|
|
80
84
|
avrotize/avrotopython/enum_core.jinja,sha256=QP5FDkMg5Si6xSHCr6L-nMe_94RH2mJdcAmFJH69BiY,2779
|
|
@@ -84,12 +88,20 @@ avrotize/avrotopython/test_enum.jinja,sha256=PeVxzC-gV5bizVnRs58RPoUDbXGI696B-VO
|
|
|
84
88
|
avrotize/avrotorust/dataclass_enum.rs.jinja,sha256=-1-73XnG1k1eONMq7_aENVpoHOsMnj55CyjU3PT8M7U,2232
|
|
85
89
|
avrotize/avrotorust/dataclass_struct.rs.jinja,sha256=AXFqCCW8fVdJXnSYTfpwKQeGG9JH8Goc3g1ILKEU-mE,7853
|
|
86
90
|
avrotize/avrotorust/dataclass_union.rs.jinja,sha256=HuDKlM03hOkVx9Lm5p93IzQfUCokHz8wOu9iyEkwkUk,3801
|
|
87
|
-
avrotize/avrotots/class_core.ts.jinja,sha256=
|
|
91
|
+
avrotize/avrotots/class_core.ts.jinja,sha256=YwhQLSnUqlmGUGk9zamEx758nKstXf_IKBNvOaPLrEk,5039
|
|
92
|
+
avrotize/avrotots/class_test.ts.jinja,sha256=zm3wXaSJ225y7knLj6I9zjrkPTEROLHYmBr8eDo7pCo,2752
|
|
88
93
|
avrotize/avrotots/enum_core.ts.jinja,sha256=6NN_nF2y9us2saM7Wag8IN73BdIF0vxhPxq83NQEnm8,1522
|
|
89
94
|
avrotize/avrotots/gitignore.jinja,sha256=iYEkEO7BDDeNPTG8RSGJruh0Ol7HdYG4otQHhYLvC1c,376
|
|
90
95
|
avrotize/avrotots/index.ts.jinja,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
96
|
avrotize/avrotots/package.json.jinja,sha256=3ZqMVLP1ALkyXcVVA5j8Kyi5obNLJBv7dlgwKzYZfa8,555
|
|
92
97
|
avrotize/avrotots/tsconfig.json.jinja,sha256=Job00bmIiHEWQjA-Ze2-OdoTzT-GjVbL36fYuqtXLNs,537
|
|
98
|
+
avrotize/dependencies/cpp/vcpkg/vcpkg.json,sha256=se5qnUVQ1Q6wN_DqgIioqKg_y7ouh9oly2iBAJJXkgw,414
|
|
99
|
+
avrotize/dependencies/cs/net90/dependencies.csproj,sha256=zkgAfzGfJ9v8SzdoYDkBXs0ZJoQ7k1qK8mCH2GOT1jw,1033
|
|
100
|
+
avrotize/dependencies/go/go121/go.mod,sha256=ZHjoQNugEIJdkfwwLupG5x6KpUyDp8HxyVnJfHG3wuE,203
|
|
101
|
+
avrotize/dependencies/java/jdk21/pom.xml,sha256=Hi4RjYJsRLqF0v-2YJOFYdzV0nqWaOmFEEgpOmWxO1k,3179
|
|
102
|
+
avrotize/dependencies/python/py312/requirements.txt,sha256=zMr7YjvCg75g66b-HURTr-n_vjxSv0J7A97aydoyYLA,336
|
|
103
|
+
avrotize/dependencies/rust/stable/Cargo.toml,sha256=p2s1Q-dzyV7QUkJUkUW3mr4yDAdnLQc3C9f6E_iZZB0,506
|
|
104
|
+
avrotize/dependencies/typescript/node22/package.json,sha256=oAW_2X-b715kV7aajwuONZEMkyQUJGviG3GwnoUa7hU,387
|
|
93
105
|
avrotize/generic/generic.avsc,sha256=GwLLCGBdu6H3fwInIfrvGdebDWrbXEFgnsnFJNrCT4E,1272
|
|
94
106
|
avrotize/prototypes/any.avsc,sha256=8bNmD-5j43YSoNTOQ4VIFjuH93a46-LOApf-L-ha1P8,3390
|
|
95
107
|
avrotize/prototypes/api.avsc,sha256=5sFP8jEqDAUbcfZup-YurhKAwR6U3dee09CeFPAhexM,6521
|
|
@@ -105,18 +117,25 @@ avrotize/structuretocpp/build.sh.jinja,sha256=EAzRK0jkoSUV9e9kVIB6tDYPEzf3vemrQz
|
|
|
105
117
|
avrotize/structuretocpp/dataclass_body.jinja,sha256=B978Gdi1btO_EUJH5j0DjbHanQdX7jHEkd-MuQU89dA,2472
|
|
106
118
|
avrotize/structuretocpp/vcpkg.json.jinja,sha256=Oo4SyS8X4CdCnZPqqit-D8TeoNQ-cG5JYQJJUoFLZf0,201
|
|
107
119
|
avrotize/structuretocsharp/class_test.cs.jinja,sha256=7vwHcu745wLsxVrx__QfWzztvlr29oN5bw2BDKMkZtI,8171
|
|
108
|
-
avrotize/structuretocsharp/dataclass_core.jinja,sha256=
|
|
120
|
+
avrotize/structuretocsharp/dataclass_core.jinja,sha256=R1bjLPi246cUfZ5sG2L_DUjveiV_RtHFJIuC8fiB11c,7321
|
|
109
121
|
avrotize/structuretocsharp/enum_test.cs.jinja,sha256=euS5w2I3NiHBY7PSNY7bPF0JBEVLagZ423cZiYPn-iY,1238
|
|
110
|
-
avrotize/structuretocsharp/
|
|
111
|
-
avrotize/structuretocsharp/
|
|
122
|
+
avrotize/structuretocsharp/json_structure_converters.cs.jinja,sha256=JqDu9_h97A4QFFk_j3IVLkcYjCh2_HxiAee7VVZrkWc,12810
|
|
123
|
+
avrotize/structuretocsharp/program.cs.jinja,sha256=E6KrgNAdKY_Xh3tRKL-IMMPcGrWshtteBPmXrcg-nYk,2405
|
|
124
|
+
avrotize/structuretocsharp/project.csproj.jinja,sha256=cbKLGG1mMAEmvq1RuR8JUu5AA2hH6iC_ag_IOKkgBhQ,702
|
|
112
125
|
avrotize/structuretocsharp/project.sln.jinja,sha256=QKNG10hUo3sPCajx213TEUfZIMftxjRWqEhDyrSlJtM,1481
|
|
113
|
-
avrotize/structuretocsharp/testproject.csproj.jinja,sha256=
|
|
126
|
+
avrotize/structuretocsharp/testproject.csproj.jinja,sha256=7SDzEM0wNV4a7JfCWG5AYiZT7KyJA-9gq_57tHqifRI,756
|
|
114
127
|
avrotize/structuretocsharp/tuple_converter.cs.jinja,sha256=b2dsU7-5HcYdUMb1xpDAogBnKvKp7H86euT6EDrwLdc,3975
|
|
115
128
|
avrotize/structuretogo/go_enum.jinja,sha256=2oXejDK4o5ALKhn9nb1YYYJJ1L696giwwT5xuosm51E,293
|
|
116
129
|
avrotize/structuretogo/go_helpers.jinja,sha256=CwxHH0uh2JsGoj6-OViH0qk223gVekfKLrYZP00Z1-o,597
|
|
117
130
|
avrotize/structuretogo/go_interface.jinja,sha256=5kQpjTXmQ-llzok75cjcRNaoJ32sIgDDXDYLeNdQqdY,514
|
|
118
131
|
avrotize/structuretogo/go_struct.jinja,sha256=jCsHTnwizX6MAS3c0iP5QZ-lxnsxKOCbXMRlIaZAgbo,5411
|
|
119
132
|
avrotize/structuretogo/go_test.jinja,sha256=h4GHxr6MhN04Ct9sjSyp-SJlx25wI_OUrgarKXi2wCo,1799
|
|
133
|
+
avrotize/structuretojava/choice_core.jinja,sha256=H-VhQzIIwgu9myuw3j9WxFx01maTOlm2YiHaHEWhsyw,1069
|
|
134
|
+
avrotize/structuretojava/class_core.jinja,sha256=mn3KVnvIxHIUB1Tep_YeISnM7k6ytQdOynQ4sUGrCAc,981
|
|
135
|
+
avrotize/structuretojava/enum_core.jinja,sha256=yXnXQbr3IEudUj5OOFqDUJT7TfGqAJMy6O6K5DQ1lUQ,487
|
|
136
|
+
avrotize/structuretojava/equals_hashcode.jinja,sha256=m_6EBJdRfQWnP8dmEJ2vkosyFaNkVyYDtyb9RKQCZtQ,946
|
|
137
|
+
avrotize/structuretojava/pom.xml.jinja,sha256=0Je9fnd0Gb1RSPoD_chu3fafIu8SnRPuCKCw0mPXOTc,1089
|
|
138
|
+
avrotize/structuretojava/tuple_core.jinja,sha256=IZl3s_olYhwasA21uFqSZCyq4tLZ_jtQVD6ZQgUKmkk,1731
|
|
120
139
|
avrotize/structuretomd/README.md.jinja,sha256=UBBkspRnVI9E3RLRWPbxKSvoU9y4tKi1iqzn2iGJbDQ,4824
|
|
121
140
|
avrotize/structuretopython/dataclass_core.jinja,sha256=fUTLjlRjkH0P-1lK91o4IKGFarjk1cnyhYhqA_9d5_s,15702
|
|
122
141
|
avrotize/structuretopython/enum_core.jinja,sha256=DDE7Mw9M2hjb0x1ErY9IvwASgAkI1hzFWjKbHsTfDRs,1253
|
|
@@ -134,8 +153,8 @@ avrotize/structuretots/index.ts.jinja,sha256=-R4R_En1N4W_BEN3z3bLts9Xi4KnBTDLrYM
|
|
|
134
153
|
avrotize/structuretots/package.json.jinja,sha256=fYC2mguywpYf1-poALreCK4kH_OGWMUF6-7KWBzTprk,751
|
|
135
154
|
avrotize/structuretots/test_class.ts.jinja,sha256=GHNzFdv3V-gYnk-rAnGS74JZD_3hSdiWzp3i_pPyGsQ,1059
|
|
136
155
|
avrotize/structuretots/tsconfig.json.jinja,sha256=8Pl65JW8uOMEexxkteobo0ZEqsJBO31HegNRUrf8XGQ,515
|
|
137
|
-
avrotize-2.
|
|
138
|
-
avrotize-2.
|
|
139
|
-
avrotize-2.
|
|
140
|
-
avrotize-2.
|
|
141
|
-
avrotize-2.
|
|
156
|
+
avrotize-2.20.0.dist-info/entry_points.txt,sha256=m8J2TWiqbZh7SBQezc1CNrM_GVPWf01zOFcAKhzCC0U,51
|
|
157
|
+
avrotize-2.20.0.dist-info/licenses/LICENSE,sha256=xGtQGygTETTtDQJafZCUbpsed3GxO6grmqig-jGEuSk,11348
|
|
158
|
+
avrotize-2.20.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
159
|
+
avrotize-2.20.0.dist-info/METADATA,sha256=p2hLPJ-w2DtlBn2MEQ3zUsG4MKOLVWaMPqRGm1hPVY0,76788
|
|
160
|
+
avrotize-2.20.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|