json with spaces in the keys
{
"example with space": 1
}
becomes:
from __future__ import annotations
from dataclasses import dataclass
@dataclass
class UnnammedType53F4C8:
example with space: int
however this works fine with a TypedDict:
from typing import TypedDict
UnnammedType160988 = TypedDict("UnnammedType160988", {"example with space": int})