transaction-metadata 0.1.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.
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.4
2
+ Name: transaction-metadata
3
+ Version: 0.1.0
4
+ Summary: A metadata package for transaction and user Avro schemas
5
+ Home-page: https://github.com/noob-coder-dev/transaction-metadata.git
6
+ Author: Manojit Roy
7
+ Author-email: Manojit Roy <roy.monojit982810@gmail.com>
8
+ License: MIT
9
+ Keywords: metadata,avro,schema,data-engineering
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.8
13
+ Description-Content-Type: text/markdown
14
+
15
+ # Transaction Metadata
16
+
17
+ This package provides versioned Avro schemas and configuration utilities
18
+ for simulated transaction and user data used in streaming pipelines
19
+ (Flink + Snowflake + Kafka).
20
+
21
+ ### Structure
22
+ ```
23
+ transaction_metadata/
24
+ ├── schemas/
25
+ │ ├── transaction/v1/transaction.avsc
26
+ │ └── user/v1/user.avsc
27
+ ├── loader.py
28
+ └── version.py
29
+ ```
30
+
31
+ ### Usage
32
+
33
+ ```python
34
+ from transaction_metadata.loader import get_schema
35
+ schema = get_schema(entity="transaction", version="v1")
36
+ print(schema)
37
+ ```
@@ -0,0 +1,4 @@
1
+ transaction_metadata-0.1.0.dist-info/METADATA,sha256=YJdOvBBkZbJv2aw7QBz907CeLmsOrRas4gcUH8XbFdw,1026
2
+ transaction_metadata-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
3
+ transaction_metadata-0.1.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
4
+ transaction_metadata-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+