Skip to content

Instantly share code, notes, and snippets.

@duodecanol
duodecanol / single_dispatch_example.py
Created November 3, 2020 10:33 — forked from bradmontgomery/single_dispatch_example.py
Example of single dispatch in python. This is seriously cool stuff.
"""
Playing with python's single dispatch.
See: https://hynek.me/articles/serialization/
See also PEP 443: https://www.python.org/dev/peps/pep-0443/
"""
from datetime import datetime
from functools import singledispatch