cadwyn 5.2.1__py3-none-any.whl → 5.3.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.
Potentially problematic release.
This version of cadwyn might be problematic. Click here for more details.
- cadwyn/applications.py +7 -1
- cadwyn/middleware.py +9 -2
- cadwyn/route_generation.py +59 -25
- cadwyn/schema_generation.py +1 -2
- cadwyn/structure/versions.py +16 -17
- {cadwyn-5.2.1.dist-info → cadwyn-5.3.0.dist-info}/METADATA +1 -1
- {cadwyn-5.2.1.dist-info → cadwyn-5.3.0.dist-info}/RECORD +10 -10
- {cadwyn-5.2.1.dist-info → cadwyn-5.3.0.dist-info}/WHEEL +0 -0
- {cadwyn-5.2.1.dist-info → cadwyn-5.3.0.dist-info}/entry_points.txt +0 -0
- {cadwyn-5.2.1.dist-info → cadwyn-5.3.0.dist-info}/licenses/LICENSE +0 -0
cadwyn/applications.py
CHANGED
|
@@ -4,7 +4,7 @@ from collections.abc import Awaitable, Callable, Coroutine, Sequence
|
|
|
4
4
|
from datetime import date
|
|
5
5
|
from logging import getLogger
|
|
6
6
|
from pathlib import Path
|
|
7
|
-
from typing import TYPE_CHECKING, Annotated, Any, Union, cast
|
|
7
|
+
from typing import TYPE_CHECKING, Annotated, Any, Optional, Union, cast
|
|
8
8
|
|
|
9
9
|
import fastapi
|
|
10
10
|
from fastapi import APIRouter, FastAPI, HTTPException, routing
|
|
@@ -71,6 +71,8 @@ class Cadwyn(FastAPI):
|
|
|
71
71
|
api_version_format: APIVersionFormat = "date",
|
|
72
72
|
api_version_parameter_name: str = "x-api-version",
|
|
73
73
|
api_version_default_value: Union[str, None, Callable[[Request], Awaitable[str]]] = None,
|
|
74
|
+
api_version_title: Optional[str] = None,
|
|
75
|
+
api_version_description: Optional[str] = None,
|
|
74
76
|
versioning_middleware_class: type[VersionPickingMiddleware] = VersionPickingMiddleware,
|
|
75
77
|
changelog_url: Union[str, None] = "/changelog",
|
|
76
78
|
include_changelog_url_in_schema: bool = True,
|
|
@@ -207,6 +209,8 @@ class Cadwyn(FastAPI):
|
|
|
207
209
|
self.api_version_format = api_version_format
|
|
208
210
|
self.api_version_parameter_name = api_version_parameter_name
|
|
209
211
|
self.api_version_pythonic_parameter_name = api_version_parameter_name.replace("-", "_")
|
|
212
|
+
self.api_version_title = api_version_title
|
|
213
|
+
self.api_version_description = api_version_description
|
|
210
214
|
if api_version_location == "custom_header":
|
|
211
215
|
self._api_version_manager = HeaderVersionManager(api_version_parameter_name=api_version_parameter_name)
|
|
212
216
|
self._api_version_fastapi_depends_class = fastapi.Header
|
|
@@ -465,6 +469,8 @@ class Cadwyn(FastAPI):
|
|
|
465
469
|
default_value=version,
|
|
466
470
|
fastapi_depends_class=self._api_version_fastapi_depends_class,
|
|
467
471
|
validation_data_type=self.api_version_validation_data_type,
|
|
472
|
+
title=self.api_version_title,
|
|
473
|
+
description=self.api_version_description,
|
|
468
474
|
)
|
|
469
475
|
)
|
|
470
476
|
],
|
cadwyn/middleware.py
CHANGED
|
@@ -5,7 +5,7 @@ import inspect
|
|
|
5
5
|
import re
|
|
6
6
|
from collections.abc import Awaitable, Callable
|
|
7
7
|
from contextvars import ContextVar
|
|
8
|
-
from typing import Annotated, Any, Literal, Protocol, Union
|
|
8
|
+
from typing import Annotated, Any, Literal, Optional, Protocol, Union
|
|
9
9
|
|
|
10
10
|
import fastapi
|
|
11
11
|
from fastapi import Request
|
|
@@ -58,6 +58,8 @@ def _generate_api_version_dependency(
|
|
|
58
58
|
default_value: str,
|
|
59
59
|
fastapi_depends_class: Callable[..., Any],
|
|
60
60
|
validation_data_type: Any,
|
|
61
|
+
title: Optional[str] = None,
|
|
62
|
+
description: Optional[str] = None,
|
|
61
63
|
):
|
|
62
64
|
def api_version_dependency(**kwargs: Any):
|
|
63
65
|
# TODO: What do I return?
|
|
@@ -69,7 +71,12 @@ def _generate_api_version_dependency(
|
|
|
69
71
|
api_version_pythonic_parameter_name,
|
|
70
72
|
inspect.Parameter.KEYWORD_ONLY,
|
|
71
73
|
annotation=Annotated[
|
|
72
|
-
validation_data_type,
|
|
74
|
+
validation_data_type,
|
|
75
|
+
fastapi_depends_class(
|
|
76
|
+
openapi_examples={"default": {"value": default_value}},
|
|
77
|
+
title=title,
|
|
78
|
+
description=description,
|
|
79
|
+
),
|
|
73
80
|
],
|
|
74
81
|
# Path-based parameters do not support a default value in FastAPI :(
|
|
75
82
|
default=default_value if fastapi_depends_class != fastapi.Path else inspect.Signature.empty,
|
cadwyn/route_generation.py
CHANGED
|
@@ -37,11 +37,13 @@ from cadwyn.schema_generation import (
|
|
|
37
37
|
)
|
|
38
38
|
from cadwyn.structure import Version, VersionBundle
|
|
39
39
|
from cadwyn.structure.common import Endpoint, VersionType
|
|
40
|
+
from cadwyn.structure.data import _AlterRequestByPathInstruction, _AlterResponseByPathInstruction
|
|
40
41
|
from cadwyn.structure.endpoints import (
|
|
41
42
|
EndpointDidntExistInstruction,
|
|
42
43
|
EndpointExistedInstruction,
|
|
43
44
|
EndpointHadInstruction,
|
|
44
45
|
)
|
|
46
|
+
from cadwyn.structure.versions import VersionChange
|
|
45
47
|
|
|
46
48
|
if TYPE_CHECKING:
|
|
47
49
|
from fastapi.dependencies.models import Dependant
|
|
@@ -52,6 +54,9 @@ _WR = TypeVar("_WR", bound=APIRouter, default=APIRouter)
|
|
|
52
54
|
_RouteT = TypeVar("_RouteT", bound=BaseRoute)
|
|
53
55
|
# This is a hack we do because we can't guarantee how the user will use the router.
|
|
54
56
|
_DELETED_ROUTE_TAG = "_CADWYN_DELETED_ROUTE"
|
|
57
|
+
_RoutePath = str
|
|
58
|
+
_RouteMethod = str
|
|
59
|
+
_RouteId = int
|
|
55
60
|
|
|
56
61
|
|
|
57
62
|
@dataclass(**DATACLASS_SLOTS, frozen=True, eq=True)
|
|
@@ -123,6 +128,7 @@ class _EndpointTransformer(Generic[_R, _WR]):
|
|
|
123
128
|
]
|
|
124
129
|
|
|
125
130
|
def transform(self) -> GeneratedRouters[_R, _WR]:
|
|
131
|
+
# Copy MUST keep the order and number of routes. Otherwise, a ton of code below will break.
|
|
126
132
|
router = copy_router(self.parent_router)
|
|
127
133
|
webhook_router = copy_router(self.parent_webhooks_router)
|
|
128
134
|
routers: dict[VersionType, _R] = {}
|
|
@@ -132,7 +138,7 @@ class _EndpointTransformer(Generic[_R, _WR]):
|
|
|
132
138
|
self.schema_generators[str(version.value)].annotation_transformer.migrate_router_to_version(router)
|
|
133
139
|
self.schema_generators[str(version.value)].annotation_transformer.migrate_router_to_version(webhook_router)
|
|
134
140
|
|
|
135
|
-
self.
|
|
141
|
+
self._attach_routes_to_data_converters(router, self.parent_router, version)
|
|
136
142
|
|
|
137
143
|
routers[version.value] = router
|
|
138
144
|
webhook_routers[version.value] = webhook_router
|
|
@@ -193,9 +199,11 @@ class _EndpointTransformer(Generic[_R, _WR]):
|
|
|
193
199
|
]
|
|
194
200
|
return GeneratedRouters(routers, webhook_routers)
|
|
195
201
|
|
|
196
|
-
def
|
|
197
|
-
|
|
198
|
-
|
|
202
|
+
def _attach_routes_to_data_converters(self, router: APIRouter, head_router: APIRouter, version: Version):
|
|
203
|
+
# This method is way out of its league in terms of complexity. We gotta refactor it.
|
|
204
|
+
|
|
205
|
+
path_to_route_methods_mapping, head_response_models, head_request_bodies = (
|
|
206
|
+
self._extract_all_routes_identifiers_for_route_to_converter_matching(router)
|
|
199
207
|
)
|
|
200
208
|
|
|
201
209
|
for version_change in version.changes:
|
|
@@ -204,21 +212,10 @@ class _EndpointTransformer(Generic[_R, _WR]):
|
|
|
204
212
|
*version_change.alter_request_by_path_instructions.values(),
|
|
205
213
|
]:
|
|
206
214
|
for by_path_converter in by_path_converters:
|
|
207
|
-
|
|
208
|
-
path_to_route_methods_mapping
|
|
215
|
+
self._attach_routes_by_path_converter(
|
|
216
|
+
head_router, path_to_route_methods_mapping, version_change, by_path_converter
|
|
209
217
|
)
|
|
210
218
|
|
|
211
|
-
if missing_methods:
|
|
212
|
-
raise RouteByPathConverterDoesNotApplyToAnythingError(
|
|
213
|
-
f"{by_path_converter.repr_name} "
|
|
214
|
-
f'"{version_change.__name__}.{by_path_converter.transformer.__name__}" '
|
|
215
|
-
f"failed to find routes with the following methods: {list(missing_methods)}. "
|
|
216
|
-
f"This means that you are trying to apply this converter to non-existing endpoint(s). "
|
|
217
|
-
"Please, check whether the path and methods are correct. (hint: path must include "
|
|
218
|
-
"all path variables and have a name that was used in the version that this "
|
|
219
|
-
"VersionChange resides in)"
|
|
220
|
-
)
|
|
221
|
-
|
|
222
219
|
for by_schema_converters in version_change.alter_request_by_schema_instructions.values():
|
|
223
220
|
for by_schema_converter in by_schema_converters:
|
|
224
221
|
if not by_schema_converter.check_usage: # pragma: no cover
|
|
@@ -249,14 +246,50 @@ class _EndpointTransformer(Generic[_R, _WR]):
|
|
|
249
246
|
f"{version_change.__name__}.{by_schema_converter.transformer.__name__}"
|
|
250
247
|
)
|
|
251
248
|
|
|
252
|
-
def
|
|
253
|
-
self,
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
249
|
+
def _attach_routes_by_path_converter(
|
|
250
|
+
self,
|
|
251
|
+
head_router: APIRouter,
|
|
252
|
+
path_to_route_methods_mapping: dict[_RoutePath, dict[_RouteMethod, set[_RouteId]]],
|
|
253
|
+
version_change: type[VersionChange],
|
|
254
|
+
by_path_converter: Union[_AlterResponseByPathInstruction, _AlterRequestByPathInstruction],
|
|
255
|
+
):
|
|
256
|
+
missing_methods = set()
|
|
257
|
+
for method in by_path_converter.methods:
|
|
258
|
+
if method in path_to_route_methods_mapping[by_path_converter.path]:
|
|
259
|
+
for route_index in path_to_route_methods_mapping[by_path_converter.path][method]:
|
|
260
|
+
route = head_router.routes[route_index]
|
|
261
|
+
if isinstance(by_path_converter, _AlterResponseByPathInstruction):
|
|
262
|
+
version_change._route_to_response_migration_mapping[id(route)].append(by_path_converter)
|
|
263
|
+
else:
|
|
264
|
+
version_change._route_to_request_migration_mapping[id(route)].append(by_path_converter)
|
|
265
|
+
else:
|
|
266
|
+
missing_methods.add(method)
|
|
267
|
+
|
|
268
|
+
if missing_methods:
|
|
269
|
+
raise RouteByPathConverterDoesNotApplyToAnythingError(
|
|
270
|
+
f"{by_path_converter.repr_name} "
|
|
271
|
+
f'"{version_change.__name__}.{by_path_converter.transformer.__name__}" '
|
|
272
|
+
f"failed to find routes with the following methods: {list(missing_methods)}. "
|
|
273
|
+
f"This means that you are trying to apply this converter to non-existing endpoint(s). "
|
|
274
|
+
"Please, check whether the path and methods are correct. (hint: path must include "
|
|
275
|
+
"all path variables and have a name that was used in the version that this "
|
|
276
|
+
"VersionChange resides in)"
|
|
277
|
+
)
|
|
258
278
|
|
|
259
|
-
|
|
279
|
+
def _extract_all_routes_identifiers_for_route_to_converter_matching(
|
|
280
|
+
self, router: APIRouter
|
|
281
|
+
) -> tuple[dict[_RoutePath, dict[_RouteMethod, set[_RouteId]]], set[Any], set[Any]]:
|
|
282
|
+
# int is the index of the route in the router.routes list.
|
|
283
|
+
# So we essentially keep track of which routes have which response models and request bodies.
|
|
284
|
+
# and their indices in the router.routes list. The indices will allow us to match them to the same
|
|
285
|
+
# routes in the head version. This gives us the ability to later apply changes to these routes
|
|
286
|
+
# without thinking about any renamings or response model changes.
|
|
287
|
+
|
|
288
|
+
response_models = set()
|
|
289
|
+
request_bodies = set()
|
|
290
|
+
path_to_route_methods_mapping: dict[str, dict[str, set[int]]] = defaultdict(lambda: defaultdict(set))
|
|
291
|
+
|
|
292
|
+
for index, route in enumerate(router.routes):
|
|
260
293
|
if isinstance(route, APIRoute):
|
|
261
294
|
if route.response_model is not None and lenient_issubclass(route.response_model, BaseModel):
|
|
262
295
|
response_models.add(route.response_model)
|
|
@@ -265,7 +298,8 @@ class _EndpointTransformer(Generic[_R, _WR]):
|
|
|
265
298
|
annotation = route.body_field.field_info.annotation
|
|
266
299
|
if annotation is not None and lenient_issubclass(annotation, BaseModel):
|
|
267
300
|
request_bodies.add(annotation)
|
|
268
|
-
|
|
301
|
+
for method in route.methods:
|
|
302
|
+
path_to_route_methods_mapping[route.path][method].add(index)
|
|
269
303
|
|
|
270
304
|
head_response_models = {model.__cadwyn_original_model__ for model in response_models}
|
|
271
305
|
head_request_bodies = {getattr(body, "__cadwyn_original_model__", body) for body in request_bodies}
|
cadwyn/schema_generation.py
CHANGED
|
@@ -196,8 +196,7 @@ def migrate_response_body(
|
|
|
196
196
|
response,
|
|
197
197
|
current_version=version,
|
|
198
198
|
head_response_model=latest_response_model,
|
|
199
|
-
|
|
200
|
-
method="GET",
|
|
199
|
+
head_route=None,
|
|
201
200
|
)
|
|
202
201
|
|
|
203
202
|
versioned_response_model: type[pydantic.BaseModel] = generate_versioned_models(versions)[str(version)][
|
cadwyn/structure/versions.py
CHANGED
|
@@ -53,6 +53,7 @@ _CADWYN_REQUEST_PARAM_NAME = "cadwyn_request_param"
|
|
|
53
53
|
_CADWYN_RESPONSE_PARAM_NAME = "cadwyn_response_param"
|
|
54
54
|
_P = ParamSpec("_P")
|
|
55
55
|
_R = TypeVar("_R")
|
|
56
|
+
_RouteId = int
|
|
56
57
|
|
|
57
58
|
PossibleInstructions: TypeAlias = Union[
|
|
58
59
|
AlterSchemaSubInstruction, AlterEndpointSubInstruction, AlterEnumSubInstruction, SchemaHadInstruction, staticmethod
|
|
@@ -85,6 +86,8 @@ class VersionChange:
|
|
|
85
86
|
alter_response_by_schema_instructions: ClassVar[dict[type, list[_AlterResponseBySchemaInstruction]]] = Sentinel
|
|
86
87
|
alter_response_by_path_instructions: ClassVar[dict[str, list[_AlterResponseByPathInstruction]]] = Sentinel
|
|
87
88
|
_bound_version_bundle: "Union[VersionBundle, None]"
|
|
89
|
+
_route_to_request_migration_mapping: ClassVar[dict[_RouteId, list[_AlterRequestByPathInstruction]]] = Sentinel
|
|
90
|
+
_route_to_response_migration_mapping: ClassVar[dict[_RouteId, list[_AlterResponseByPathInstruction]]] = Sentinel
|
|
88
91
|
|
|
89
92
|
def __init_subclass__(cls, _abstract: bool = False) -> None:
|
|
90
93
|
super().__init_subclass__()
|
|
@@ -96,6 +99,8 @@ class VersionChange:
|
|
|
96
99
|
cls._extract_body_instructions_into_correct_containers()
|
|
97
100
|
cls._check_no_subclassing()
|
|
98
101
|
cls._bound_version_bundle = None
|
|
102
|
+
cls._route_to_request_migration_mapping = defaultdict(list)
|
|
103
|
+
cls._route_to_response_migration_mapping = defaultdict(list)
|
|
99
104
|
|
|
100
105
|
@classmethod
|
|
101
106
|
def _extract_body_instructions_into_correct_containers(cls):
|
|
@@ -358,7 +363,6 @@ class VersionBundle:
|
|
|
358
363
|
self,
|
|
359
364
|
body_type: Union[type[BaseModel], None],
|
|
360
365
|
head_dependant: Dependant,
|
|
361
|
-
path: str,
|
|
362
366
|
request: FastapiRequest,
|
|
363
367
|
response: FastapiResponse,
|
|
364
368
|
request_info: RequestInfo,
|
|
@@ -369,18 +373,17 @@ class VersionBundle:
|
|
|
369
373
|
embed_body_fields: bool,
|
|
370
374
|
background_tasks: Union[BackgroundTasks, None],
|
|
371
375
|
) -> dict[str, Any]:
|
|
372
|
-
method = request.method
|
|
373
|
-
|
|
374
376
|
start = self.reversed_version_values.index(current_version)
|
|
377
|
+
head_route_id = id(head_route)
|
|
375
378
|
for v in self.reversed_versions[start + 1 :]:
|
|
376
379
|
for version_change in v.changes:
|
|
377
380
|
if body_type is not None and body_type in version_change.alter_request_by_schema_instructions:
|
|
378
381
|
for instruction in version_change.alter_request_by_schema_instructions[body_type]:
|
|
379
382
|
instruction(request_info)
|
|
380
|
-
if
|
|
381
|
-
for instruction in version_change.
|
|
382
|
-
|
|
383
|
-
|
|
383
|
+
if head_route_id in version_change._route_to_request_migration_mapping:
|
|
384
|
+
for instruction in version_change._route_to_request_migration_mapping[head_route_id]:
|
|
385
|
+
instruction(request_info)
|
|
386
|
+
|
|
384
387
|
request.scope["headers"] = tuple((key.encode(), value.encode()) for key, value in request_info.headers.items())
|
|
385
388
|
del request._headers
|
|
386
389
|
# This gives us the ability to tell the user whether cadwyn is running its dependencies or FastAPI
|
|
@@ -406,10 +409,10 @@ class VersionBundle:
|
|
|
406
409
|
self,
|
|
407
410
|
response_info: ResponseInfo,
|
|
408
411
|
current_version: VersionType,
|
|
409
|
-
head_response_model: type[BaseModel],
|
|
410
|
-
|
|
411
|
-
method: str,
|
|
412
|
+
head_response_model: Union[type[BaseModel], None],
|
|
413
|
+
head_route: Union[APIRoute, None],
|
|
412
414
|
) -> ResponseInfo:
|
|
415
|
+
head_route_id = id(head_route)
|
|
413
416
|
end = self.version_values.index(current_version)
|
|
414
417
|
for v in self.versions[:end]:
|
|
415
418
|
for version_change in v.changes:
|
|
@@ -420,10 +423,8 @@ class VersionBundle:
|
|
|
420
423
|
version_change.alter_response_by_schema_instructions[head_response_model]
|
|
421
424
|
)
|
|
422
425
|
|
|
423
|
-
if
|
|
424
|
-
|
|
425
|
-
if method in instruction.methods: # pragma: no branch # Safe branch to skip
|
|
426
|
-
migrations_to_apply.append(instruction) # noqa: PERF401
|
|
426
|
+
if head_route_id in version_change._route_to_response_migration_mapping:
|
|
427
|
+
migrations_to_apply.extend(version_change._route_to_response_migration_mapping[head_route_id])
|
|
427
428
|
|
|
428
429
|
for migration in migrations_to_apply:
|
|
429
430
|
if response_info.status_code < 300 or migration.migrate_http_errors:
|
|
@@ -576,8 +577,7 @@ class VersionBundle:
|
|
|
576
577
|
response_info,
|
|
577
578
|
api_version,
|
|
578
579
|
head_route.response_model,
|
|
579
|
-
|
|
580
|
-
method,
|
|
580
|
+
head_route,
|
|
581
581
|
)
|
|
582
582
|
if isinstance(response_or_response_body, FastapiResponse):
|
|
583
583
|
# a webserver (uvicorn for instance) calculates the body at the endpoint level.
|
|
@@ -671,7 +671,6 @@ class VersionBundle:
|
|
|
671
671
|
new_kwargs = await self._migrate_request(
|
|
672
672
|
head_body_field,
|
|
673
673
|
head_dependant,
|
|
674
|
-
route.path,
|
|
675
674
|
request,
|
|
676
675
|
response,
|
|
677
676
|
request_info,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cadwyn
|
|
3
|
-
Version: 5.
|
|
3
|
+
Version: 5.3.0
|
|
4
4
|
Summary: Production-ready community-driven modern Stripe-like API versioning in FastAPI
|
|
5
5
|
Project-URL: Source code, https://github.com/zmievsa/cadwyn
|
|
6
6
|
Project-URL: Documentation, https://docs.cadwyn.dev
|
|
@@ -4,15 +4,15 @@ cadwyn/_asts.py,sha256=QvqZmDdwH8U-Ocpj9vYR6MRrIANF8ugk9oZgAo76qLs,5223
|
|
|
4
4
|
cadwyn/_importer.py,sha256=QV6HqODCG9K2oL4Vc15fAqL2-plMvUWw_cgaj4Ln4C8,1075
|
|
5
5
|
cadwyn/_render.py,sha256=VAY2Twd_MfKaC8_X22AMIQd72_UHy87icdAbKL8hd90,5526
|
|
6
6
|
cadwyn/_utils.py,sha256=q_mTtMKTNTDzqCza67XST-jaPSfuTgnFLmOe0dlGeYY,2295
|
|
7
|
-
cadwyn/applications.py,sha256=
|
|
7
|
+
cadwyn/applications.py,sha256=sHfsgjy1ofotIPyLmL4FCAXyuzpjRtYLTQPR1ds471w,21133
|
|
8
8
|
cadwyn/changelogs.py,sha256=aBTlsZ8PQpw9t4sSyezNTYDs6CMPtzIGulgAHA1ELPs,19622
|
|
9
9
|
cadwyn/dependencies.py,sha256=phUJ4Fy3UTegpOfDfHMjxsvASWo-1NQgwqphNnPdoVQ,241
|
|
10
10
|
cadwyn/exceptions.py,sha256=8D1G7ewLrMF5jq7leald1g0ulcH9zQl8ufEK3b7HHAE,1749
|
|
11
|
-
cadwyn/middleware.py,sha256=
|
|
11
|
+
cadwyn/middleware.py,sha256=4Ziq1ysnc8j5KmeZpsr9VJKllEFC8uYwXnG01I2FPR4,4853
|
|
12
12
|
cadwyn/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
cadwyn/route_generation.py,sha256=
|
|
13
|
+
cadwyn/route_generation.py,sha256=RTZYfml03oKaNm_-SJX8N6PnafFXdsPpN0qEapHSzTw,27181
|
|
14
14
|
cadwyn/routing.py,sha256=Ii6Qbgm9lGks1IAk-kDuIu_dX3FXsA77KSfGOFmLbgc,7604
|
|
15
|
-
cadwyn/schema_generation.py,sha256=
|
|
15
|
+
cadwyn/schema_generation.py,sha256=76T5MgfJHoQNfr_GdN5VVIUbGgA-KCV666r94jGSp0I,46830
|
|
16
16
|
cadwyn/_internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
cadwyn/_internal/context_vars.py,sha256=VcM8eAoSlvrIMFQhjZmjflV5o1yrPSEZZGkwOK4OSf4,378
|
|
18
18
|
cadwyn/static/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -23,9 +23,9 @@ cadwyn/structure/data.py,sha256=NWURVnP_84VI2ugp9ppo0Ofyve3pVYjymF9K82Jh-SA,7791
|
|
|
23
23
|
cadwyn/structure/endpoints.py,sha256=zUgzglNhBPnmWdJ03A8pFT4zPs_lj8nQ7c7Uo2d-ejU,6246
|
|
24
24
|
cadwyn/structure/enums.py,sha256=4FCc9aniLE3VuWAVIacrNP_FWxTIUm9JkeeHA_zZdwQ,1254
|
|
25
25
|
cadwyn/structure/schemas.py,sha256=O9yNw1OB0Qz-PvNB0FYlQm34gQsjyG2l9gg9x-RnJIY,10781
|
|
26
|
-
cadwyn/structure/versions.py,sha256=
|
|
27
|
-
cadwyn-5.
|
|
28
|
-
cadwyn-5.
|
|
29
|
-
cadwyn-5.
|
|
30
|
-
cadwyn-5.
|
|
31
|
-
cadwyn-5.
|
|
26
|
+
cadwyn/structure/versions.py,sha256=FNHhgqCVe9Q5TO5ZMOSJgR846mli4ubGLvNDUERyPYs,34447
|
|
27
|
+
cadwyn-5.3.0.dist-info/METADATA,sha256=yiKkJUKdxCbsDG0c0TDFH8KgtK6OvTvoh9cnGcw6frw,4529
|
|
28
|
+
cadwyn-5.3.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
29
|
+
cadwyn-5.3.0.dist-info/entry_points.txt,sha256=mGX8wl-Xfhpr5M93SUmkykaqinUaYAvW9rtDSX54gx0,47
|
|
30
|
+
cadwyn-5.3.0.dist-info/licenses/LICENSE,sha256=KeCWewiDQYpmSnzF-p_0YpoWiyDcUPaCuG8OWQs4ig4,1072
|
|
31
|
+
cadwyn-5.3.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|