Skip to content

Instantly share code, notes, and snippets.

View jeromegit's full-sized avatar

jerome provensal jeromegit

View GitHub Profile
@jeromegit
jeromegit / dataclass_example.py
Last active May 12, 2024 04:17
@dataclass_cheatsheet
# Since I keep on forgetting how to create Python @dataclass with static field and how to reference the class within the class....
# Example:
from dataclasses import dataclass
from typing import Dict, ClassVar
@dataclass
class NotionPage:
page_id: str
last_edited_time: str