feather-structured-output 0.1.1__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.
- feather_structured_output/__init__.py +26 -0
- feather_structured_output/fields.py +793 -0
- feather_structured_output/locales/__init__.py +3 -0
- feather_structured_output/locales/en.py +51 -0
- feather_structured_output/locales/ja.py +60 -0
- feather_structured_output/messages.py +187 -0
- feather_structured_output/models.py +48 -0
- feather_structured_output/schema.py +283 -0
- feather_structured_output-0.1.1.dist-info/METADATA +219 -0
- feather_structured_output-0.1.1.dist-info/RECORD +12 -0
- feather_structured_output-0.1.1.dist-info/WHEEL +4 -0
- feather_structured_output-0.1.1.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from feather_structured_output.fields import (
|
|
2
|
+
BooleanField,
|
|
3
|
+
Field,
|
|
4
|
+
FloatField,
|
|
5
|
+
IntField,
|
|
6
|
+
ObjectField,
|
|
7
|
+
StringField,
|
|
8
|
+
UnionField,
|
|
9
|
+
)
|
|
10
|
+
from feather_structured_output.models import ExtractResult, PresencePolicy, ValidationError, Validator
|
|
11
|
+
from feather_structured_output.schema import Schema
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
"BooleanField",
|
|
15
|
+
"ExtractResult",
|
|
16
|
+
"Field",
|
|
17
|
+
"FloatField",
|
|
18
|
+
"IntField",
|
|
19
|
+
"ObjectField",
|
|
20
|
+
"PresencePolicy",
|
|
21
|
+
"Schema",
|
|
22
|
+
"StringField",
|
|
23
|
+
"UnionField",
|
|
24
|
+
"ValidationError",
|
|
25
|
+
"Validator",
|
|
26
|
+
]
|