-
Notifications
You must be signed in to change notification settings - Fork 253
/
_pydantic_core.pyi
176 lines (151 loc) · 5.02 KB
/
_pydantic_core.pyi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
import decimal
import sys
from typing import Any
from pydantic_core import ErrorDetails
from pydantic_core.core_schema import CoreConfig, CoreSchema, ErrorType
if sys.version_info < (3, 9):
from typing_extensions import TypedDict
else:
from typing import TypedDict
if sys.version_info < (3, 11):
from typing_extensions import Literal, TypeAlias
else:
from typing import Literal, TypeAlias
__all__ = (
'__version__',
'build_profile',
'SchemaValidator',
'SchemaSerializer',
'Url',
'MultiHostUrl',
'SchemaError',
'ValidationError',
'PydanticCustomError',
'PydanticKnownError',
'PydanticOmit',
'PydanticSerializationError',
'list_all_errors',
)
__version__: str
build_profile: str
class SchemaValidator:
title: str
def __init__(self, schema: CoreSchema, config: 'CoreConfig | None' = None) -> None: ...
def validate_python(self, input: Any, strict: 'bool | None' = None, context: Any = None) -> Any: ...
def isinstance_python(self, input: Any, strict: 'bool | None' = None, context: Any = None) -> bool: ...
def validate_json(
self, input: 'str | bytes | bytearray', strict: 'bool | None' = None, context: Any = None
) -> Any: ...
def isinstance_json(
self, input: 'str | bytes | bytearray', strict: 'bool | None' = None, context: Any = None
) -> bool: ...
def validate_assignment(
self, field: str, input: Any, data: 'dict[str, Any]', strict: 'bool | None' = None, context: Any = None
) -> 'dict[str, Any]': ...
IncEx: TypeAlias = 'set[int] | set[str] | dict[int, IncEx] | dict[str, IncEx] | None'
class SchemaSerializer:
def __init__(self, schema: CoreSchema, config: 'CoreConfig | None' = None) -> None: ...
def to_python(
self,
value: Any,
*,
mode: str | None = None,
include: IncEx = None,
exclude: IncEx = None,
by_alias: bool = True,
exclude_unset: bool = False,
exclude_defaults: bool = False,
exclude_none: bool = False,
round_trip: bool = False,
warnings: bool = True,
) -> Any: ...
def to_json(
self,
value: Any,
*,
indent: int | None = None,
include: IncEx = None,
exclude: IncEx = None,
by_alias: bool = True,
exclude_unset: bool = False,
exclude_defaults: bool = False,
exclude_none: bool = False,
round_trip: bool = False,
warnings: bool = True,
) -> bytes: ...
def to_json(
value: Any,
indent: int | None = None,
include: IncEx = None,
exclude: IncEx = None,
exclude_none: bool = False,
round_trip: bool = False,
timedelta_mode: Literal['iso8601', 'float'] = 'iso8601',
bytes_mode: Literal['utf8', 'base64'] = 'utf8',
) -> bytes: ...
class Url:
scheme: str
username: 'str | None'
password: 'str | None'
host: 'str | None'
port: 'int | None'
path: 'str | None'
query: 'str | None'
fragment: 'str | None'
def __init__(self, url: str): ...
def unicode_host(self) -> 'str | None': ...
def query_params(self) -> 'list[tuple[str, str]]': ...
def unicode_string(self) -> str: ...
def __str__(self) -> str: ...
def __repr__(self) -> str: ...
class MultiHostHost(TypedDict):
username: 'str | None'
password: 'str | None'
host: str
port: 'int | None'
class MultiHostUrl:
scheme: str
path: 'str | None'
query: 'str | None'
fragment: 'str | None'
def __init__(self, url: str): ...
def hosts(self) -> 'list[MultiHostHost]': ...
def query_params(self) -> 'list[tuple[str, str]]': ...
def unicode_string(self) -> str: ...
def __str__(self) -> str: ...
def __repr__(self) -> str: ...
class SchemaError(Exception):
pass
class ValidationError(ValueError):
title: str
def error_count(self) -> int: ...
def errors(self, include_context: bool = True) -> 'list[ErrorDetails]': ...
class PydanticCustomError(ValueError):
type: str
message_template: str
context: 'dict[str, Any] | None'
def __init__(self, error_type: str, message_template: str, context: 'dict[str, Any] | None' = None) -> None: ...
def message(self) -> str: ...
class PydanticKnownError(ValueError):
type: ErrorType
message_template: str
context: 'dict[str, str | int | float] | None'
def __init__(
self, error_type: ErrorType, context: 'dict[str, str | int | float | decimal.Decimal] | None' = None
) -> None: ...
def message(self) -> str: ...
class PydanticOmit(Exception):
def __init__(self) -> None: ...
class PydanticSerializationError(ValueError):
def __init__(self, message: str) -> None: ...
class PydanticSerializationUnexpectedValue(ValueError):
def __init__(self, message: 'str | None' = None) -> None: ...
class ErrorTypeInfo(TypedDict):
type: ErrorType
message_template: str
example_message: str
example_context: 'dict[str, str | int | float] | None'
def list_all_errors() -> 'list[ErrorTypeInfo]':
"""
Get information about all built-in errors.
"""