avrotize 2.22.2__py3-none-any.whl → 3.0.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 CHANGED
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '2.22.2'
32
- __version_tuple__ = version_tuple = (2, 22, 2)
31
+ __version__ = version = '3.0.0'
32
+ __version_tuple__ = version_tuple = (3, 0, 0)
33
33
 
34
34
  __commit_id__ = commit_id = None
avrotize/avrotocsv.py CHANGED
@@ -39,7 +39,23 @@ class AvroToCSVSchemaConverter:
39
39
 
40
40
  :param avro_schema: Avro schema as a dictionary.
41
41
  :return: CSV schema as a dictionary.
42
+ :raises ValueError: If the schema is not a single record type.
42
43
  """
44
+ # Handle schema arrays (unions of records) - not supported
45
+ if isinstance(avro_schema, list):
46
+ raise ValueError(
47
+ "CSV schema conversion only supports single record schemas. "
48
+ "The provided schema is an array/union of multiple types. "
49
+ "Use --record-type to specify a single record type if available."
50
+ )
51
+
52
+ # Ensure it's a record type with fields
53
+ if not isinstance(avro_schema, dict) or 'fields' not in avro_schema:
54
+ raise ValueError(
55
+ "CSV schema conversion only supports Avro record types with 'fields'. "
56
+ f"The provided schema has type: {avro_schema.get('type', 'unknown') if isinstance(avro_schema, dict) else type(avro_schema).__name__}"
57
+ )
58
+
43
59
  csv_schema = {
44
60
  "fields": []
45
61
  }
avrotize/commands.json CHANGED
@@ -649,6 +649,108 @@
649
649
  }
650
650
  ]
651
651
  },
652
+ {
653
+ "command": "s2k",
654
+ "description": "Convert JSON Structure schema to Kusto table schemas",
655
+ "group": "4_RTDB",
656
+ "function": {
657
+ "name": "avrotize.structuretokusto.convert_structure_to_kusto",
658
+ "args": {
659
+ "structure_schema_path": "input_file_path",
660
+ "kusto_file_path": "output_file_path",
661
+ "kusto_uri": "args.kusto_uri",
662
+ "kusto_database": "args.kusto_database",
663
+ "structure_record_type": "args.record_type",
664
+ "emit_cloudevents_columns": "args.emit_cloudevents_columns",
665
+ "emit_cloudevents_dispatch_table": "args.emit_cloudevents_dispatch"
666
+ }
667
+ },
668
+ "extensions": [
669
+ ".struct.json",
670
+ ".json"
671
+ ],
672
+ "args": [
673
+ {
674
+ "name": "input",
675
+ "type": "str",
676
+ "nargs": "?",
677
+ "help": "Path to the JSON Structure schema file (or read from stdin if omitted)",
678
+ "required": false
679
+ },
680
+ {
681
+ "name": "--out",
682
+ "type": "str",
683
+ "help": "Path to the Kusto table schema file",
684
+ "required": false
685
+ },
686
+ {
687
+ "name": "--struct",
688
+ "type": "str",
689
+ "help": "Deprecated: Path to the JSON Structure schema file (for backcompat)",
690
+ "required": false
691
+ },
692
+ {
693
+ "name": "--kusto-uri",
694
+ "type": "str",
695
+ "help": "Kusto Cluster URI to apply the generated schema to.",
696
+ "required": false
697
+ },
698
+ {
699
+ "name": "--kusto-database",
700
+ "type": "str",
701
+ "help": "Kusto database name to apply the generated schema to",
702
+ "required": false
703
+ },
704
+ {
705
+ "name": "--record-type",
706
+ "type": "str",
707
+ "help": "Record type in the JSON Structure schema",
708
+ "required": false
709
+ },
710
+ {
711
+ "name": "--emit-cloudevents-columns",
712
+ "type": "bool",
713
+ "help": "Add CloudEvents columns to the Kusto table",
714
+ "default": false,
715
+ "required": false
716
+ },
717
+ {
718
+ "name": "--emit-cloudevents-dispatch",
719
+ "type": "bool",
720
+ "help": "Emit a _cloudevents_dispatch ingestion table and update policies for each generated table",
721
+ "required": false
722
+ }
723
+ ],
724
+ "suggested_output_file_path": "{input_file_name}.kql",
725
+ "prompts": [
726
+ {
727
+ "name": "--kusto-uri",
728
+ "message": "Enter the Kusto Cluster URI (optional)",
729
+ "type": "str",
730
+ "required": false
731
+ },
732
+ {
733
+ "name": "--kusto-database",
734
+ "message": "Enter the Kusto database name (optional)",
735
+ "type": "str",
736
+ "required": false
737
+ },
738
+ {
739
+ "name": "--emit-cloudevents-columns",
740
+ "message": "Add CloudEvents columns to the Kusto table?",
741
+ "type": "bool",
742
+ "default": false,
743
+ "required": false
744
+ },
745
+ {
746
+ "name": "--emit-cloudevents-dispatch",
747
+ "message": "Emit a _cloudevents_dispatch ingestion table and update policies?",
748
+ "type": "bool",
749
+ "default": false,
750
+ "required": false
751
+ }
752
+ ]
753
+ },
652
754
  {
653
755
  "command": "k2a",
654
756
  "description": "Convert Kusto schema to Avrotize schema",
@@ -836,7 +938,7 @@
836
938
  ]
837
939
  },
838
940
  {
839
- "command": "struct2sql",
941
+ "command": "s2sql",
840
942
  "description": "Convert JSON Structure schema to SQL schema",
841
943
  "group": "5_SQL",
842
944
  "function": {
@@ -1821,6 +1923,44 @@
1821
1923
  "suggested_output_file_path": "{input_file_name}.csv.json",
1822
1924
  "prompts": []
1823
1925
  },
1926
+ {
1927
+ "command": "a2csv",
1928
+ "description": "Convert Avrotize schema to CSV schema",
1929
+ "group": "1_Schemas",
1930
+ "function": {
1931
+ "name": "avrotize.avrotocsv.convert_avro_to_csv_schema",
1932
+ "args": {
1933
+ "avro_schema_path": "input_file_path",
1934
+ "csv_schema_path": "output_file_path"
1935
+ }
1936
+ },
1937
+ "extensions": [
1938
+ ".avsc"
1939
+ ],
1940
+ "args": [
1941
+ {
1942
+ "name": "input",
1943
+ "type": "str",
1944
+ "nargs": "?",
1945
+ "help": "Path to the Avrotize schema file (or read from stdin if omitted)",
1946
+ "required": false
1947
+ },
1948
+ {
1949
+ "name": "--out",
1950
+ "type": "str",
1951
+ "help": "Output path for the CSV schema file",
1952
+ "required": false
1953
+ },
1954
+ {
1955
+ "name": "--avsc",
1956
+ "type": "str",
1957
+ "help": "Deprecated: Path to the Avrotize schema file (for backcompat)",
1958
+ "required": false
1959
+ }
1960
+ ],
1961
+ "suggested_output_file_path": "{input_file_name}.csv.json",
1962
+ "prompts": []
1963
+ },
1824
1964
  {
1825
1965
  "command": "s2rust",
1826
1966
  "description": "Convert JSON Structure to Rust classes",
@@ -2147,7 +2287,7 @@
2147
2287
  ]
2148
2288
  },
2149
2289
  {
2150
- "command": "struct2gql",
2290
+ "command": "s2graphql",
2151
2291
  "description": "Convert JSON Structure schema to GraphQL schema",
2152
2292
  "group": "1_Schemas",
2153
2293
  "function": {
@@ -2179,6 +2319,44 @@
2179
2319
  "suggested_output_file_path": "{input_file_name}.graphql",
2180
2320
  "prompts": []
2181
2321
  },
2322
+ {
2323
+ "command": "a2graphql",
2324
+ "description": "Convert Avrotize schema to GraphQL schema",
2325
+ "group": "1_Schemas",
2326
+ "function": {
2327
+ "name": "avrotize.avrotographql.convert_avro_to_graphql",
2328
+ "args": {
2329
+ "avro_schema_path": "input_file_path",
2330
+ "graphql_schema_path": "output_file_path"
2331
+ }
2332
+ },
2333
+ "extensions": [
2334
+ ".avsc"
2335
+ ],
2336
+ "args": [
2337
+ {
2338
+ "name": "input",
2339
+ "type": "str",
2340
+ "nargs": "?",
2341
+ "help": "Path to the Avrotize schema file (or read from stdin if omitted)",
2342
+ "required": false
2343
+ },
2344
+ {
2345
+ "name": "--out",
2346
+ "type": "str",
2347
+ "help": "Path to the GraphQL schema file",
2348
+ "required": false
2349
+ },
2350
+ {
2351
+ "name": "--avsc",
2352
+ "type": "str",
2353
+ "help": "Deprecated: Path to the Avrotize schema file (for backcompat)",
2354
+ "required": false
2355
+ }
2356
+ ],
2357
+ "suggested_output_file_path": "{input_file_name}.graphql",
2358
+ "prompts": []
2359
+ },
2182
2360
  {
2183
2361
  "command": "a2ts",
2184
2362
  "description": "Convert Avrotize schema to TypeScript classes",
@@ -2824,7 +3002,7 @@
2824
3002
  ]
2825
3003
  },
2826
3004
  {
2827
- "command": "struct2cassandra",
3005
+ "command": "s2cassandra",
2828
3006
  "description": "Convert JSON Structure schema to Cassandra schema",
2829
3007
  "group": "5_SQL",
2830
3008
  "function": {
@@ -3368,7 +3546,7 @@
3368
3546
  "prompts": []
3369
3547
  },
3370
3548
  {
3371
- "command": "struct2md",
3549
+ "command": "s2md",
3372
3550
  "description": "Convert JSON Structure schema to Markdown documentation",
3373
3551
  "group": "7_Utility",
3374
3552
  "function": {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: avrotize
3
- Version: 2.22.2
3
+ Version: 3.0.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
@@ -90,13 +90,13 @@ Converting from Avrotize Schema:
90
90
  - [`avrotize a2k`](#convert-avrotize-schema-to-kusto-table-declaration) - Convert Avrotize Schema to Kusto table definition.
91
91
  - [`avrotize s2k`](#convert-json-structure-schema-to-kusto-table-declaration) - Convert JSON Structure Schema to Kusto table definition.
92
92
  - [`avrotize a2sql`](#convert-avrotize-schema-to-sql-table-definition) - Convert Avrotize Schema to SQL table definition.
93
- - [`avrotize struct2sql`](#convert-json-structure-schema-to-sql-schema) - Convert JSON Structure Schema to SQL table definition.
93
+ - [`avrotize s2sql`](#convert-json-structure-schema-to-sql-schema) - Convert JSON Structure Schema to SQL table definition.
94
94
  - [`avrotize a2pq`](#convert-avrotize-schema-to-empty-parquet-file) - Convert Avrotize Schema to Parquet or Iceberg schema.
95
95
  - [`avrotize a2ib`](#convert-avrotize-schema-to-iceberg-schema) - Convert Avrotize Schema to Iceberg schema.
96
96
  - [`avrotize s2ib`](#convert-json-structure-to-iceberg-schema) - Convert JSON Structure to Iceberg schema.
97
97
  - [`avrotize a2mongo`](#convert-avrotize-schema-to-mongodb-schema) - Convert Avrotize Schema to MongoDB schema.
98
98
  - [`avrotize a2cassandra`](#convert-avrotize-schema-to-cassandra-schema) - Convert Avrotize Schema to Cassandra schema.
99
- - [`avrotize struct2cassandra`](#convert-json-structure-schema-to-cassandra-schema) - Convert JSON Structure Schema to Cassandra schema.
99
+ - [`avrotize s2cassandra`](#convert-json-structure-schema-to-cassandra-schema) - Convert JSON Structure Schema to Cassandra schema.
100
100
  - [`avrotize a2es`](#convert-avrotize-schema-to-elasticsearch-schema) - Convert Avrotize Schema to Elasticsearch schema.
101
101
  - [`avrotize a2dynamodb`](#convert-avrotize-schema-to-dynamodb-schema) - Convert Avrotize Schema to DynamoDB schema.
102
102
  - [`avrotize a2cosmos`](#convert-avrotize-schema-to-cosmosdb-schema) - Convert Avrotize Schema to CosmosDB schema.
@@ -106,7 +106,7 @@ Converting from Avrotize Schema:
106
106
  - [`avrotize a2neo4j`](#convert-avrotize-schema-to-neo4j-schema) - Convert Avrotize Schema to Neo4j schema.
107
107
  - [`avrotize a2dp`](#convert-avrotize-schema-to-datapackage-schema) - Convert Avrotize Schema to Datapackage schema.
108
108
  - [`avrotize a2md`](#convert-avrotize-schema-to-markdown-documentation) - Convert Avrotize Schema to Markdown documentation.
109
- - [`avrotize struct2md`](#convert-json-structure-schema-to-markdown-documentation) - Convert JSON Structure schema to Markdown documentation.
109
+ - [`avrotize s2md`](#convert-json-structure-schema-to-markdown-documentation) - Convert JSON Structure schema to Markdown documentation.
110
110
 
111
111
  Direct conversions (JSON Structure):
112
112
 
@@ -137,7 +137,10 @@ Generate code from JSON Structure:
137
137
  Direct JSON Structure conversions:
138
138
 
139
139
  - [`avrotize s2csv`](#convert-json-structure-to-csv-schema) - Convert JSON Structure schema to CSV schema.
140
+ - [`avrotize a2csv`](#convert-avrotize-schema-to-csv-schema) - Convert Avrotize schema to CSV schema.
140
141
  - [`avrotize s2x`](#convert-json-structure-to-xml-schema-xsd) - Convert JSON Structure to XML Schema (XSD).
142
+ - [`avrotize s2graphql`](#convert-json-structure-schema-to-graphql-schema) - Convert JSON Structure schema to GraphQL schema.
143
+ - [`avrotize a2graphql`](#convert-avrotize-schema-to-graphql-schema) - Convert Avrotize schema to GraphQL schema.
141
144
 
142
145
  Other commands:
143
146
 
@@ -147,10 +150,6 @@ JSON Structure conversions:
147
150
 
148
151
  - [`avrotize s2dp`](#convert-json-structure-schema-to-datapackage-schema) - Convert JSON Structure schema to Datapackage schema.
149
152
 
150
- Direct conversions (not via Avrotize Schema):
151
-
152
- - [`avrotize struct2gql`](#convert-json-structure-schema-to-graphql-schema) - Convert JSON Structure schema to GraphQL schema.
153
-
154
153
  ## Overview
155
154
 
156
155
  You can use Avrotize to convert between Avro/Avrotize Schema and other schema formats like JSON Schema, XML Schema (XSD), Protocol Buffers (Protobuf), ASN.1, and database schema formats like Kusto Data Table Definition (KQL) and SQL Table Definition. That means you can also convert from JSON Schema to Protobuf going via Avrotize Schema.
@@ -489,7 +488,7 @@ For detailed conversion rules and type mappings for each SQL dialect, refer to t
489
488
  ### Convert JSON Structure Schema to SQL Schema
490
489
 
491
490
  ```bash
492
- avrotize struct2sql [input] --out <path_to_sql_script> --dialect <dialect> [--emit-cloudevents-columns]
491
+ avrotize s2sql [input] --out <path_to_sql_script> --dialect <dialect> [--emit-cloudevents-columns]
493
492
  ```
494
493
 
495
494
  Parameters:
@@ -545,7 +544,7 @@ Refer to the detailed conversion notes for Cassandra in the [NoSQL Conversion No
545
544
  ### Convert JSON Structure Schema to Cassandra Schema
546
545
 
547
546
  ```bash
548
- avrotize struct2cassandra [input] --out <output_file> [--emit-cloudevents-columns]
547
+ avrotize s2cassandra [input] --out <output_file> [--emit-cloudevents-columns]
549
548
  ```
550
549
 
551
550
  Parameters:
@@ -1153,7 +1152,7 @@ Conversion notes:
1153
1152
  ### Convert JSON Structure schema to Markdown documentation
1154
1153
 
1155
1154
  ```bash
1156
- avrotize struct2md <path_to_structure_schema_file> [--out <path_to_markdown_file>]
1155
+ avrotize s2md <path_to_structure_schema_file> [--out <path_to_markdown_file>]
1157
1156
  ```
1158
1157
 
1159
1158
  Parameters:
@@ -1201,6 +1200,25 @@ Conversion notes:
1201
1200
  - Enum and const keywords are supported and preserved in the output.
1202
1201
  - JSON Structure-specific features like `$ref`, `$extends`, definitions, and namespaces are resolved during conversion.
1203
1202
 
1203
+ ### Convert Avrotize Schema to CSV Schema
1204
+
1205
+ ```bash
1206
+ avrotize a2csv <path_to_avro_schema_file> [--out <path_to_csv_schema_file>]
1207
+ ```
1208
+
1209
+ Parameters:
1210
+
1211
+ - `<path_to_avro_schema_file>`: The path to the Avrotize schema file to be converted. If omitted, the file is read from stdin.
1212
+ - `--out`: The path to the CSV schema file to write the conversion result to. If omitted, the output is directed to stdout.
1213
+
1214
+ Conversion notes:
1215
+
1216
+ - The tool converts Avrotize schemas to CSV Schema format.
1217
+ - Avro primitive types (string, int, long, float, double, boolean, bytes) are mapped to appropriate CSV schema types.
1218
+ - Avro logical types (date, timestamp-millis, decimal, uuid) are preserved in the output.
1219
+ - Complex types (records, arrays, maps) are represented as strings in CSV schema, as CSV format doesn't have native support for nested structures.
1220
+ - Only single record types can be converted to CSV schema.
1221
+
1204
1222
  ### Convert JSON Structure to Protocol Buffers
1205
1223
 
1206
1224
  ```bash
@@ -1283,7 +1301,7 @@ Conversion notes:
1283
1301
  ### Convert JSON Structure schema to GraphQL schema
1284
1302
 
1285
1303
  ```bash
1286
- avrotize struct2gql [input] --out <path_to_graphql_schema_file>
1304
+ avrotize s2graphql [input] --out <path_to_graphql_schema_file>
1287
1305
  ```
1288
1306
 
1289
1307
  Parameters:
@@ -1308,12 +1326,43 @@ Example:
1308
1326
 
1309
1327
  ```bash
1310
1328
  # Convert a JSON Structure schema to GraphQL
1311
- avrotize struct2gql myschema.struct.json --out myschema.graphql
1329
+ avrotize s2graphql myschema.struct.json --out myschema.graphql
1312
1330
 
1313
1331
  # Read from stdin and write to stdout
1314
- cat myschema.struct.json | avrotize struct2gql > myschema.graphql
1332
+ cat myschema.struct.json | avrotize s2graphql > myschema.graphql
1333
+ ```
1334
+
1335
+ ### Convert Avrotize schema to GraphQL schema
1336
+
1337
+ ```bash
1338
+ avrotize a2graphql [input] --out <path_to_graphql_schema_file>
1315
1339
  ```
1316
1340
 
1341
+ Parameters:
1342
+
1343
+ - `[input]`: The path to the Avrotize schema file. If omitted, the file is read from stdin.
1344
+ - `--out <path_to_graphql_schema_file>`: The path to the output GraphQL schema file.
1345
+
1346
+ Conversion notes:
1347
+
1348
+ - Converts Avrotize schema to GraphQL schema language (SDL)
1349
+ - Avro primitive types (string, int, long, float, double, boolean, bytes) are mapped to GraphQL scalar types
1350
+ - Avro logical types (date, timestamp-millis, decimal, uuid) are mapped to custom GraphQL scalars
1351
+ - Avro record types become GraphQL object types
1352
+ - Avro arrays become GraphQL lists `[Type]`
1353
+ - Avro maps are represented using the JSON scalar type
1354
+ - Avro unions are converted to GraphQL union types
1355
+ - Avro enums become GraphQL enum types
1356
+
1357
+ Example:
1358
+
1359
+ ```bash
1360
+ # Convert an Avrotize schema to GraphQL
1361
+ avrotize a2graphql myschema.avsc --out myschema.graphql
1362
+
1363
+ # Read from stdin and write to stdout
1364
+ cat myschema.avsc | avrotize a2graphql > myschema.graphql
1365
+ ```
1317
1366
 
1318
1367
  This document provides an overview of the usage and functionality of Avrotize. For more detailed information, please refer to the [Avrotize Schema documentation](specs/avrotize-schema.md) and the individual command help messages.
1319
1368
 
@@ -1,11 +1,11 @@
1
1
  avrotize/__init__.py,sha256=t5h5wkHXr6M0mmHAB5rhjZ3Gxy9xutGTGIfojfao9rI,3820
2
2
  avrotize/__main__.py,sha256=5pY8dYAURcOnFRvgb6fgaOIa_SOzPLIWbU8-ZTQ0jG4,88
3
- avrotize/_version.py,sha256=v1H0R98-rFcU_zocnPjvFocVgN_KV_qdLvPN7LwKIHM,706
3
+ avrotize/_version.py,sha256=9fL11DDeXfhKmxyz_HrYU3Yy7BjMWrJklCddPlmAj6A,704
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
7
  avrotize/avrotocsharp.py,sha256=jOx9ctuUSsdpNDEXnNNfFHOb8zWWHclUvYTF5rInOaM,72339
8
- avrotize/avrotocsv.py,sha256=PaDEW2aGRFVNLwewWhJ3OwxbKFI3PBg_mTgtT4uLMko,3689
8
+ avrotize/avrotocsv.py,sha256=yqVbP4Ar8bZyEgOAmHuHAsQKfCVjIO5_pa5dtaKLZKE,4575
9
9
  avrotize/avrotodatapackage.py,sha256=zSCphLvCYiBKRAUCdccsr-4JysH3PyAS6fSgwa65Tss,7259
10
10
  avrotize/avrotodb.py,sha256=5fNJgz00VMimyOl7eI0lIxlcaN_JnN0mb2Q9lzCRecw,46989
11
11
  avrotize/avrotogo.py,sha256=H4jxdO7laRWKJuU6mytz2sgUa_20hZUlsBrUGrCe_UU,22405
@@ -25,7 +25,7 @@ avrotize/avrotorust.py,sha256=HEcDirRBCbXQNNs_FmkT-sp1dWQgZ8A23qkQYUxVuXE,24255
25
25
  avrotize/avrotots.py,sha256=u_XLjlHN0Gof5QYlpqK4X9WoX9rL30TjQMPg4TiyYnI,33241
26
26
  avrotize/avrotoxsd.py,sha256=iGQq_8kC0kfKsqvqS6s_mO-kJ8N5G8vXOwqRI_DZUxc,17744
27
27
  avrotize/cddltostructure.py,sha256=MA2c-P3CIEAxEaBX-FF299gR55xcLEV3FrfTr2QfayM,74491
28
- avrotize/commands.json,sha256=I36P5rEoL8cqcx4P8a_VhXyGsg6NHRPiByQbofYYWj8,93350
28
+ avrotize/commands.json,sha256=3N1Jblh-_o2GRbhcrMXLUEf0pijsYu6ff-nAbT5nhTE,98316
29
29
  avrotize/common.py,sha256=enqNR1I9-SbW7fNJE3w7N2R87kiN6_9Oa7VB4b2AUBc,31913
30
30
  avrotize/constants.py,sha256=LlgHrvT6RsRPrhFGRNHmFuIj3b1bSd45yC4rBCIGGVA,2753
31
31
  avrotize/csvtoavro.py,sha256=TuIYm_Xv8gioEHl1YgWQKOYkFGGHfuwmK5RuEAEXbt8,4293
@@ -164,8 +164,8 @@ avrotize/structuretots/index.ts.jinja,sha256=-R4R_En1N4W_BEN3z3bLts9Xi4KnBTDLrYM
164
164
  avrotize/structuretots/package.json.jinja,sha256=OfJn4g68VhBP-yvJCdsWm_1RHx1kphsmdWpxu_Fst1E,819
165
165
  avrotize/structuretots/test_class.ts.jinja,sha256=7tJ6hPo3A9zToTkwolVyXYhmZ_E4uI_OnnYsUUzUEdQ,1180
166
166
  avrotize/structuretots/tsconfig.json.jinja,sha256=8Pl65JW8uOMEexxkteobo0ZEqsJBO31HegNRUrf8XGQ,515
167
- avrotize-2.22.2.dist-info/entry_points.txt,sha256=m8J2TWiqbZh7SBQezc1CNrM_GVPWf01zOFcAKhzCC0U,51
168
- avrotize-2.22.2.dist-info/licenses/LICENSE,sha256=xGtQGygTETTtDQJafZCUbpsed3GxO6grmqig-jGEuSk,11348
169
- avrotize-2.22.2.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
170
- avrotize-2.22.2.dist-info/METADATA,sha256=0jsbD4l1SqZx4NZsh1lKartOUGfdm06mj9o_C-YaFqQ,80208
171
- avrotize-2.22.2.dist-info/RECORD,,
167
+ avrotize-3.0.0.dist-info/entry_points.txt,sha256=m8J2TWiqbZh7SBQezc1CNrM_GVPWf01zOFcAKhzCC0U,51
168
+ avrotize-3.0.0.dist-info/licenses/LICENSE,sha256=xGtQGygTETTtDQJafZCUbpsed3GxO6grmqig-jGEuSk,11348
169
+ avrotize-3.0.0.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
170
+ avrotize-3.0.0.dist-info/METADATA,sha256=08ps9dsDdgQiglCf7idjcYMovejdlViYENVZf0Xtqc8,82284
171
+ avrotize-3.0.0.dist-info/RECORD,,