Skip to content

Instantly share code, notes, and snippets.

View MtkN1's full-sized avatar

MtkN1 MtkN1

View GitHub Profile
@MtkN1
MtkN1 / pydantic_vs_cattrs.ipynb
Created February 26, 2025 06:18
Pydantic vs cattrs Deserialization Benchmark
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@MtkN1
MtkN1 / example_unstructure.py
Created October 3, 2025 16:22
Unstructuring the dataclass
from __future__ import annotations
from collections.abc import Mapping, Sequence
from dataclasses import dataclass, field, fields, is_dataclass
from typing import TYPE_CHECKING, Any, cast
import pytest
if TYPE_CHECKING:
from _typeshed import DataclassInstance