second commit

This commit is contained in:
2024-12-27 22:31:23 +09:00
parent 2353324570
commit 10a0f110ca
8819 changed files with 1307198 additions and 28 deletions

View File

@ -0,0 +1,65 @@
"""Abstract base classes.
These are necessary to avoid circular imports between schema.py and fields.py.
.. warning::
This module is treated as private API.
Users should not need to use this module directly.
"""
from __future__ import annotations
from abc import ABC, abstractmethod
class FieldABC(ABC):
"""Abstract base class from which all Field classes inherit."""
parent = None
name = None
root = None
@abstractmethod
def serialize(self, attr, obj, accessor=None):
pass
@abstractmethod
def deserialize(self, value):
pass
@abstractmethod
def _serialize(self, value, attr, obj, **kwargs):
pass
@abstractmethod
def _deserialize(self, value, attr, data, **kwargs):
pass
class SchemaABC(ABC):
"""Abstract base class from which all Schemas inherit."""
@abstractmethod
def dump(self, obj, *, many: bool | None = None):
pass
@abstractmethod
def dumps(self, obj, *, many: bool | None = None):
pass
@abstractmethod
def load(self, data, *, many: bool | None = None, partial=None, unknown=None):
pass
@abstractmethod
def loads(
self,
json_data,
*,
many: bool | None = None,
partial=None,
unknown=None,
**kwargs,
):
pass