sayou-wrapper 0.0.3__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.

Potentially problematic release.


This version of sayou-wrapper might be problematic. Click here for more details.

@@ -0,0 +1,14 @@
1
+ # src/sayou/wrapper/core/exceptions.py
2
+ from sayou.core.exceptions import SayouCoreError
3
+
4
+ class WrapperError(SayouCoreError):
5
+ """'sayou-wrapper' 툴킷의 모든 오류가 상속받는 베이스 예외"""
6
+ pass
7
+
8
+ class MappingError(WrapperError):
9
+ """'Mapper' (Tier 1/2/3) 실행 중 발생하는 오류"""
10
+ pass
11
+
12
+ class ValidationError(WrapperError):
13
+ """'Validator' (Tier 1/2/3) 실행 중 발생하는 오류 (e.g., 스키마 위반)"""
14
+ pass
@@ -0,0 +1,44 @@
1
+ # src/sayou/wrapper/interfaces/base_mapper.py
2
+ from abc import abstractmethod
3
+ from typing import List, Any, Dict
4
+ from sayou.core.base_component import BaseComponent
5
+ from sayou.wrapper.core.exceptions import MappingError
6
+
7
+ class BaseMapper(BaseComponent):
8
+ """
9
+ (Tier 1) 'Raw Data' 리스트를 '구조화된 dict' 리스트로 '매핑'하는
10
+ 모든 Mapper의 인터페이스. (Template Method)
11
+ """
12
+ component_name = "BaseMapper"
13
+
14
+ def map_list(self, raw_data_list: List[Any]) -> List[Dict[str, Any]]:
15
+ """
16
+ [공통 골격] Raw Data 리스트를 순회하며 매핑을 실행합니다.
17
+ Tier 2/3는 이 메서드를 오버라이드하지 않습니다.
18
+ """
19
+ self._log(f"Mapping {len(raw_data_list)} raw items...")
20
+ mapped_dicts = []
21
+ for raw_data in raw_data_list:
22
+ try:
23
+ # Tier 2/3가 '알맹이'를 구현
24
+ mapped_dict = self._do_map_item(raw_data)
25
+ if mapped_dict:
26
+ mapped_dicts.append(mapped_dict)
27
+ except Exception as e:
28
+ self._log(f"Mapping failed for item {raw_data}: {e}")
29
+ # (정책에 따라 실패 시 중단하거나, None을 반환)
30
+
31
+ self._log(f"Mapping complete. {len(mapped_dicts)} items mapped.")
32
+ return mapped_dicts
33
+
34
+ @abstractmethod
35
+ def _do_map_item(self, raw_data_item: Any) -> Dict[str, Any]:
36
+ """
37
+ [구현 필수] 단일 원본 데이터 조각을 받아
38
+ 'DataAtom'의 기반이 될 딕셔너리로 매핑합니다.
39
+
40
+ :param raw_data_item: e.g., CSV의 1행 (list)
41
+ :return: DataAtom 구조를 가진 딕셔너리
42
+ (e.g., {"source": "...", "type": "...", "payload": {...}})
43
+ """
44
+ raise NotImplementedError
@@ -0,0 +1,42 @@
1
+ # src/sayou/wrapper/interfaces/base_validator.py
2
+ from abc import abstractmethod
3
+ from typing import List, Dict, Any
4
+ from sayou.core.base_component import BaseComponent
5
+
6
+ class BaseValidator(BaseComponent):
7
+ """
8
+ (Tier 1) '매핑된 dict' 리스트가 스키마에 부합하는지 '검증'하는
9
+ 모든 Validator의 인터페이스. (Template Method)
10
+ """
11
+ component_name = "BaseValidator"
12
+
13
+ def validate_list(self, mapped_dicts: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
14
+ """
15
+ [공통 골격] 매핑된 dict 리스트를 순회하며 검증합니다.
16
+ Tier 2/3는 이 메서드를 오버라이드하지 않습니다.
17
+ """
18
+ self._log(f"Validating {len(mapped_dicts)} mapped items...")
19
+ validated_dicts = []
20
+ for mapped_dict in mapped_dicts:
21
+ try:
22
+ # Tier 2/3가 '알맹이'를 구현
23
+ if self._do_validate_item(mapped_dict):
24
+ validated_dicts.append(mapped_dict)
25
+ else:
26
+ # (실패 시 로그만 남기고 필터링)
27
+ self._log(f"Validation failed, item dropped: {mapped_dict.get('payload', {}).get('entity_id', 'N/A')}")
28
+ except Exception as e:
29
+ self._log(f"Validation error: {e}")
30
+
31
+ self._log(f"Validation complete. {len(validated_dicts)} items passed.")
32
+ return validated_dicts
33
+
34
+ @abstractmethod
35
+ def _do_validate_item(self, mapped_dict: Dict[str, Any]) -> bool:
36
+ """
37
+ [구현 필수] 단일 매핑 딕셔너리를 검증합니다.
38
+
39
+ :param mapped_dict: Mapper가 생성한 딕셔너리
40
+ :return: (True/False) 검증 통과 여부
41
+ """
42
+ raise NotImplementedError
File without changes
File without changes
@@ -0,0 +1,69 @@
1
+ # src/sayou/wrapper/templates/mapper/list_mapper.py
2
+ from typing import Dict, Any, List
3
+ from sayou.wrapper.interfaces.base_mapper import BaseMapper
4
+ from sayou.wrapper.core.exceptions import MappingError
5
+
6
+ class ListMapper(BaseMapper):
7
+ """
8
+ (Tier 2) 'List' (e.g., CSV row)를 'Dict'로 매핑하는 일반 엔진.
9
+ 사용자가 'main.py'에서 이 클래스에 '매핑 규칙'을 주입합니다.
10
+ """
11
+ component_name = "ListMapper"
12
+
13
+ def initialize(self, **kwargs):
14
+ """
15
+ 'main.py'에서 '매핑 규칙'을 주입받습니다.
16
+ e.g.,
17
+ field_mappings = {
18
+ 0: "payload.entity_id", # 0번 인덱스 -> entity_id
19
+ 1: "payload.attributes.schema:name" # 1번 인덱스 -> name
20
+ }
21
+ static_fields = {
22
+ "source": "csv_connector",
23
+ "type": "entity"
24
+ }
25
+ headers = ["id", "name"] (CSV 헤더가 있을 경우)
26
+ """
27
+ self.mappings = kwargs.get("field_mappings", {})
28
+ self.static_fields = kwargs.get("static_fields", {})
29
+ self.headers = kwargs.get("headers") # (선택적) 헤더 사용 시
30
+
31
+ if not self.mappings:
32
+ raise MappingError("ListMapper requires 'field_mappings'.")
33
+
34
+ def _do_map_item(self, raw_data_item: List[Any]) -> Dict[str, Any]:
35
+ """
36
+ [Tier 1 구현] '매핑 규칙'에 따라 List를 Dict로 변환합니다.
37
+ (e.g., ["222", "강남"] -> {"source": ..., "type": ..., "payload": {...}})
38
+ """
39
+ # 1. 고정 값(e.g., source, type)으로 뼈대 생성
40
+ mapped_dict = self.static_fields.copy()
41
+
42
+ # DataAtom의 'payload' 뼈대(attributes, relationships)를 '먼저' 생성합니다.
43
+ # 이렇게 하면 매핑 규칙에 'relationships'가 없더라도
44
+ # 'payload.relationships: {}'가 항상 존재하게 됩니다.
45
+ mapped_dict.setdefault("payload", {})
46
+ mapped_dict["payload"].setdefault("attributes", {})
47
+ mapped_dict["payload"].setdefault("relationships", {})
48
+
49
+ # 2. 매핑 규칙에 따라 값 삽입
50
+ for index, value in enumerate(raw_data_item):
51
+ key_path = None
52
+ if self.headers:
53
+ header_name = self.headers[index]
54
+ key_path = self.mappings.get(header_name) # 헤더명 기준
55
+ else:
56
+ key_path = self.mappings.get(index) # 인덱스 기준
57
+
58
+ if key_path:
59
+ # e.g., "payload.attributes.schema:name" 같은 중첩 키 설정
60
+ self._set_nested_value(mapped_dict, key_path.split('.'), value)
61
+
62
+ return mapped_dict
63
+
64
+ def _set_nested_value(self, d: Dict, keys: List[str], value: Any):
65
+ """d[keys[0]][keys[1]]... = value를 안전하게 설정"""
66
+ current = d
67
+ for key in keys[:-1]:
68
+ current = current.setdefault(key, {})
69
+ current[keys[-1]] = value
@@ -0,0 +1,83 @@
1
+ import json
2
+ from typing import Dict, List, Any
3
+
4
+ from sayou.core.base_component import BaseComponent
5
+ from sayou.core.atom import DataAtom
6
+ from .interfaces.base_mapper import BaseMapper
7
+ from .interfaces.base_validator import BaseValidator
8
+
9
+ class WrapperPipeline(BaseComponent):
10
+ """
11
+ (Orchestrator) 'Mapper'와 'Validator'를
12
+ '조립'하여 'Wrapping' 파이프라인을 실행합니다.
13
+ """
14
+ component_name = "WrapperPipeline"
15
+
16
+ def __init__(self,
17
+ mapper: BaseMapper,
18
+ validator: BaseValidator
19
+ ):
20
+
21
+ self.mapper = mapper
22
+ self.validator = validator
23
+ self._log("Pipeline initialized with Mapper and Validator.")
24
+
25
+ def initialize(self, **kwargs):
26
+ """
27
+ 내부 컴포넌트(Mapper, Validator)에 설정을 주입합니다.
28
+
29
+ e.g., kwargs = {
30
+ "field_mappings": {0: "payload.entity_id"},
31
+ "static_fields": {"source": "csv_source"},
32
+ "ontology_path": "path/to/schema.json"
33
+ }
34
+ """
35
+ self.mapper.initialize(**kwargs)
36
+ self.validator.initialize(**kwargs)
37
+
38
+ def run(self, raw_data: Any, **kwargs) -> Dict[str, Any]: # 👈 'raw_data'를 받음
39
+ """
40
+ 1. Connector가 전달한 *단일* 'raw_data'(JSON 문자열)를 받습니다.
41
+ 2. 'paths' 리스트를 *직접* 파싱합니다.
42
+ 3. 'BaseMapper.map_list' (뼈대)에 *진짜 리스트*를 전달합니다.
43
+ """
44
+ self._log(f"Wrapper pipeline run started with single raw_data item.")
45
+
46
+ real_raw_data_list = []
47
+ try:
48
+ parsed_data = json.loads(raw_data)
49
+ current_data = parsed_data.get("body", {}).get("paths")
50
+
51
+ if current_data is None:
52
+ self._log("'paths' field not found in JSON body.")
53
+
54
+ if isinstance(current_data, list) and current_data and isinstance(current_data[0], str):
55
+ current_data = "".join(current_data)
56
+ while isinstance(current_data, str):
57
+ current_data = json.loads(current_data)
58
+
59
+ if isinstance(current_data, list):
60
+ real_raw_data_list = current_data
61
+ else:
62
+ self._log(f"Expected 'paths' to resolve to a list, but got {type(current_data)}")
63
+
64
+ except Exception as e:
65
+ self._log(f"Failed to parse and extract 'paths' from raw_data: {e}")
66
+
67
+ mapped_dicts = self.mapper.map_list(real_raw_data_list)
68
+ validated_dicts = self.validator.validate_list(mapped_dicts)
69
+ final_atoms: List[DataAtom] = []
70
+ for v_dict in validated_dicts:
71
+ try:
72
+ atom = DataAtom(
73
+ source=v_dict.get("source"),
74
+ type=v_dict.get("type"),
75
+ payload=v_dict.get("payload", {})
76
+ )
77
+ final_atoms.append(atom)
78
+ except Exception as e:
79
+ self._log(f"DataAtom creation failed: {e}")
80
+
81
+ self._log(f"Wrapper run finished. {len(final_atoms)} atoms created.")
82
+
83
+ return {"atoms": final_atoms}
@@ -0,0 +1,34 @@
1
+ # src/sayou/wrapper/templates/validator/default_validator.py
2
+ from sayou.wrapper.interfaces.base_validator import BaseValidator
3
+ from sayou.wrapper.core.exceptions import ValidationError
4
+ from typing import Dict, Any
5
+
6
+ # (v.0.0.1 에서는 가벼운 '필수 키' 검증기)
7
+ # (v.0.1.0 에서는 'pip install jsonschema' 의존성을 추가하고
8
+ # '사유존 온톨로지'를 JSON Schema로 변환하여 실제 검증 수행)
9
+
10
+ class DefaultValidator(BaseValidator):
11
+ """
12
+ (Tier 2) '매핑된 dict'를 검증하는 일반 엔진.
13
+ v.0.0.1 에서는 'source', 'type', 'payload.entity_id' 존재만 검사.
14
+ """
15
+ component_name = "DefaultValidator"
16
+
17
+ def initialize(self, **kwargs):
18
+ self.ontology_path = kwargs.get("ontology_path")
19
+ # (v.0.1.0: 여기서 온톨로지를 로드하고 JSON Schema로 컴파일)
20
+ self._log(f"Initialized (v.0.0.1 - Basic Key Check mode).")
21
+
22
+ def _do_validate_item(self, mapped_dict: Dict[str, Any]) -> bool:
23
+ """[Tier 1 구현] 필수 키 존재 여부 검사"""
24
+
25
+ if not mapped_dict.get("source") or not mapped_dict.get("type"):
26
+ self._log(f"Validation failed: Missing 'source' or 'type'.")
27
+ return False
28
+
29
+ if not mapped_dict.get("payload", {}).get("entity_id"):
30
+ self._log(f"Validation failed: Missing 'payload.entity_id'.")
31
+ return False
32
+
33
+ # (v.0.1.0: jsonschema.validate(mapped_dict, self.compiled_schema))
34
+ return True
@@ -0,0 +1,254 @@
1
+ Metadata-Version: 2.4
2
+ Name: sayou-wrapper
3
+ Version: 0.0.3
4
+ Summary: Wrapper components for the Sayou Data Platform
5
+ Project-URL: Homepage, https://www.sayouzone.com/
6
+ Project-URL: Documentation, https://sayouzone.github.io/sayou-fabric/
7
+ Project-URL: Repository, https://github.com/sayouzone/sayou-fabric
8
+ Author-email: Sayouzone <contact@sayouzone.com>
9
+ License: Apache License
10
+ Version 2.0, January 2004
11
+ http://www.apache.org/licenses/
12
+
13
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
14
+
15
+ 1. Definitions.
16
+
17
+ "License" shall mean the terms and conditions for use, reproduction,
18
+ and distribution as defined by Sections 1 through 9 of this document.
19
+
20
+ "Licensor" shall mean the copyright owner or entity authorized by
21
+ the copyright owner that is granting the License.
22
+
23
+ "Legal Entity" shall mean the union of the acting entity and all
24
+ other entities that control, are controlled by, or are under common
25
+ control with that entity. For the purposes of this definition,
26
+ "control" means (i) the power, direct or indirect, to cause the
27
+ direction or management of such entity, whether by contract or
28
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
29
+ outstanding shares, or (iii) beneficial ownership of such entity.
30
+
31
+ "You" (or "Your") shall mean an individual or Legal Entity
32
+ exercising permissions granted by this License.
33
+
34
+ "Source" form shall mean the preferred form for making modifications,
35
+ including but not limited to software source code, documentation
36
+ source, and configuration files.
37
+
38
+ "Object" form shall mean any form resulting from mechanical
39
+ transformation or translation of a Source form, including but
40
+ not limited to compiled object code, generated documentation,
41
+ and conversions to other media types.
42
+
43
+ "Work" shall mean the work of authorship, whether in Source or
44
+ Object form, made available under the License, as indicated by a
45
+ copyright notice that is included in or attached to the work
46
+ (an example is provided in the Appendix below).
47
+
48
+ "Derivative Works" shall mean any work, whether in Source or Object
49
+ form, that is based on (or derived from) the Work and for which the
50
+ editorial revisions, annotations, elaborations, or other modifications
51
+ represent, as a whole, an original work of authorship. For the purposes
52
+ of this License, Derivative Works shall not include works that remain
53
+ separable from, or merely link (or bind by name) to the interfaces of,
54
+ the Work and Derivative Works thereof.
55
+
56
+ "Contribution" shall mean any work of authorship, including
57
+ the original version of the Work and any modifications or additions
58
+ to that Work or Derivative Works thereof, that is intentionally
59
+ submitted to Licensor for inclusion in the Work by the copyright owner
60
+ or by an individual or Legal Entity authorized to submit on behalf of
61
+ the copyright owner. For the purposes of this definition, "submitted"
62
+ means any form of electronic, verbal, or written communication sent
63
+ to the Licensor or its representatives, including but not limited to
64
+ communication on electronic mailing lists, source code control systems,
65
+ and issue tracking systems that are managed by, or on behalf of, the
66
+ Licensor for the purpose of discussing and improving the Work, but
67
+ excluding communication that is conspicuously marked or otherwise
68
+ designated in writing by the copyright owner as "Not a Contribution."
69
+
70
+ "Contributor" shall mean Licensor and any individual or Legal Entity
71
+ on behalf of whom a Contribution has been received by Licensor and
72
+ subsequently incorporated within the Work.
73
+
74
+ 2. Grant of Copyright License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ copyright license to reproduce, prepare Derivative Works of,
78
+ publicly display, publicly perform, sublicense, and distribute the
79
+ Work and such Derivative Works in Source or Object form.
80
+
81
+ 3. Grant of Patent License. Subject to the terms and conditions of
82
+ this License, each Contributor hereby grants to You a perpetual,
83
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
84
+ (except as stated in this section) patent license to make, have made,
85
+ use, offer to sell, sell, import, and otherwise transfer the Work,
86
+ where such license applies only to those patent claims licensable
87
+ by such Contributor that are necessarily infringed by their
88
+ Contribution(s) alone or by combination of their Contribution(s)
89
+ with the Work to which such Contribution(s) was submitted. If You
90
+ institute patent litigation against any entity (including a
91
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
92
+ or a Contribution incorporated within the Work constitutes direct
93
+ or contributory patent infringement, then any patent licenses
94
+ granted to You under this License for that Work shall terminate
95
+ as of the date such litigation is filed.
96
+
97
+ 4. Redistribution. You may reproduce and distribute copies of the
98
+ Work or Derivative Works thereof in any medium, with or without
99
+ modifications, and in Source or Object form, provided that You
100
+ meet the following conditions:
101
+
102
+ (a) You must give any other recipients of the Work or
103
+ Derivative Works a copy of this License; and
104
+
105
+ (b) You must cause any modified files to carry prominent notices
106
+ stating that You changed the files; and
107
+
108
+ (c) You must retain, in the Source form of any Derivative Works
109
+ that You distribute, all copyright, patent, trademark, and
110
+ attribution notices from the Source form of the Work,
111
+ excluding those notices that do not pertain to any part of
112
+ the Derivative Works; and
113
+
114
+ (d) If the Work includes a "NOTICE" text file as part of its
115
+ distribution, then any Derivative Works that You distribute must
116
+ include a readable copy of the attribution notices contained
117
+ within such NOTICE file, excluding those notices that do not
118
+ pertain to any part of the Derivative Works, in at least one
119
+ of the following places: within a NOTICE text file distributed
120
+ as part of the Derivative Works; within the Source form or
121
+ documentation, if provided along with the Derivative Works; or,
122
+ within a display generated by the Derivative Works, if and
123
+ wherever such third-party notices normally appear. The contents
124
+ of the NOTICE file are for informational purposes only and
125
+ do not modify the License. You may add Your own attribution
126
+ notices within Derivative Works that You distribute, alongside
127
+ or as an addendum to the NOTICE text from the Work, provided
128
+ that such additional attribution notices cannot be construed
129
+ as modifying the License.
130
+
131
+ You may add Your own copyright statement to Your modifications and
132
+ may provide additional or different license terms and conditions
133
+ for use, reproduction, or distribution of Your modifications, or
134
+ for any such Derivative Works as a whole, provided Your use,
135
+ reproduction, and distribution of the Work otherwise complies with
136
+ the conditions stated in this License.
137
+
138
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
139
+ any Contribution intentionally submitted for inclusion in the Work
140
+ by You to the Licensor shall be under the terms and conditions of
141
+ this License, without any additional terms or conditions.
142
+ Notwithstanding the above, nothing herein shall supersede or modify
143
+ the terms of any separate license agreement you may have executed
144
+ with Licensor regarding such Contributions.
145
+
146
+ 6. Trademarks. This License does not grant permission to use the trade
147
+ names, trademarks, service marks, or product names of the Licensor,
148
+ except as required for reasonable and customary use in describing the
149
+ origin of the Work and reproducing the content of the NOTICE file.
150
+
151
+ 7. Disclaimer of Warranty. Unless required by applicable law or
152
+ agreed to in writing, Licensor provides the Work (and each
153
+ Contributor provides its Contributions) on an "AS IS" BASIS,
154
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
155
+ implied, including, without limitation, any warranties or conditions
156
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
157
+ PARTICULAR PURPOSE. You are solely responsible for determining the
158
+ appropriateness of using or redistributing the Work and assume any
159
+ risks associated with Your exercise of permissions under this License.
160
+
161
+ 8. Limitation of Liability. In no event and under no legal theory,
162
+ whether in tort (including negligence), contract, or otherwise,
163
+ unless required by applicable law (such as deliberate and grossly
164
+ negligent acts) or agreed to in writing, shall any Contributor be
165
+ liable to You for damages, including any direct, indirect, special,
166
+ incidental, or consequential damages of any character arising as a
167
+ result of this License or out of the use or inability to use the
168
+ Work (including but not limited to damages for loss of goodwill,
169
+ work stoppage, computer failure or malfunction, or any and all
170
+ other commercial damages or losses), even if such Contributor
171
+ has been advised of the possibility of such damages.
172
+
173
+ 9. Accepting Warranty or Additional Liability. While redistributing
174
+ the Work or Derivative Works thereof, You may choose to offer,
175
+ and charge a fee for, acceptance of support, warranty, indemnity,
176
+ or other liability obligations and/or rights consistent with this
177
+ License. However, in accepting such obligations, You may act only
178
+ on Your own behalf and on Your sole responsibility, not on behalf
179
+ of any other Contributor, and only if You agree to indemnify,
180
+ defend, and hold each Contributor harmless for any liability
181
+ incurred by, or claims asserted against, such Contributor by reason
182
+ of your accepting any such warranty or additional liability.
183
+
184
+ END OF TERMS AND CONDITIONS
185
+
186
+ APPENDIX: How to apply the Apache License to your work.
187
+
188
+ To apply the Apache License to your work, attach the following
189
+ boilerplate notice, with the fields enclosed by brackets "[]"
190
+ replaced with your own identifying information. (Don't include
191
+ the brackets!) The text should be enclosed in the appropriate
192
+ comment syntax for the file format. We also recommend that a
193
+ file or class name and description of purpose be included on the
194
+ same "printed page" as the copyright notice for easier
195
+ identification within third-party archives.
196
+
197
+ Copyright [yyyy] [name of copyright owner]
198
+
199
+ Licensed under the Apache License, Version 2.0 (the "License");
200
+ you may not use this file except in compliance with the License.
201
+ You may obtain a copy of the License at
202
+
203
+ http://www.apache.org/licenses/LICENSE-2.0
204
+
205
+ Unless required by applicable law or agreed to in writing, software
206
+ distributed under the License is distributed on an "AS IS" BASIS,
207
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
208
+ See the License for the specific language governing permissions and
209
+ limitations under the License.
210
+ Classifier: License :: OSI Approved :: Apache Software License
211
+ Classifier: Operating System :: OS Independent
212
+ Classifier: Programming Language :: Python :: 3.9
213
+ Classifier: Programming Language :: Python :: 3.10
214
+ Classifier: Programming Language :: Python :: 3.11
215
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
216
+ Requires-Python: >=3.9
217
+ Requires-Dist: sayou-core~=0.0.3
218
+ Description-Content-Type: text/markdown
219
+
220
+ # Sayou Wrapper
221
+
222
+ **Schema mapping and validation utilities for structuring your data into Sayou-compatible formats.**
223
+
224
+ ---
225
+
226
+ ## 💡 Why Sayou Wrapper?
227
+
228
+ `sayou_wrapper` is the bridge between raw inputs and your formal data schema.
229
+ It maps unstructured data fields into a standardized KG or vector schema.
230
+
231
+ - **JSONPath & Dict Mapping:** Simple, declarative mapping rules.
232
+ - **Validation Layer:** Ensures compliance with your ontology.
233
+ - **Composable:** Works with Sayou Assembler or Refinery out of the box.
234
+
235
+ ---
236
+
237
+ ## 🚀 Quick Start
238
+
239
+ ```bash
240
+ pip install sayou-wrapper
241
+ ```
242
+
243
+ ```python
244
+ ```
245
+
246
+ ## 🏗️ Core Concepts
247
+
248
+ - Mapper: Transforms data fields.
249
+ - Validator: Checks schema conformance.
250
+ - Plugins: Extend mapping logic for domain-specific data.
251
+
252
+ ## 📜 License
253
+
254
+ Apache 2.0 License © 2025 Sayouzone
@@ -0,0 +1,11 @@
1
+ sayou/wrapper/pipeline.py,sha256=GMDC_dFNID1FoGBwta0Yat813uVeKdbz_v33dsM7ol4,3066
2
+ sayou/wrapper/core/exceptions.py,sha256=dsvt7am1rM8t77YNBIkghvbfOcH7rL5Ytq_xiGqvPi0,461
3
+ sayou/wrapper/interfaces/base_mapper.py,sha256=TCn2FmdmCZX5zSEnx-oN2kCL6KVjqdfZYWefHAmlMAc,1816
4
+ sayou/wrapper/interfaces/base_validator.py,sha256=FQQQmDD-Jw6qHLCpCj_X42GsB1qe43uXhBChnWTah8g,1746
5
+ sayou/wrapper/mapper/dict_mapper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ sayou/wrapper/mapper/jsonpath_mapper.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ sayou/wrapper/mapper/list_mapper.py,sha256=z1wuWaKv0CqCwCQwCIQZQmr8kF7tEOuDPVVutG3dQR8,2916
8
+ sayou/wrapper/validator/default_validator.py,sha256=tY4TsrPpZzhB0dfaLO4_MGxfhK7M73vLfmm9zdcLwpg,1506
9
+ sayou_wrapper-0.0.3.dist-info/METADATA,sha256=O4FJ6lXnBbDen81F4upiOo0_WqSUfeGqPpuRs2zVYHY,14560
10
+ sayou_wrapper-0.0.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
11
+ sayou_wrapper-0.0.3.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.27.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any