Skip to content

Instantly share code, notes, and snippets.

View AMMullan's full-sized avatar

Allan Mullan AMMullan

View GitHub Profile
@AMMullan
AMMullan / snippets.py
Last active November 18, 2025 16:30
Useful Python Snippets
import re
import string
_TRANSLATION_TABLE_NO_PUNCTUATION = str.maketrans('', '', string.punctuation)
def equal_dicts(d1, d2, ignore_keys=None):
"""Dictionary Comparison
Takes 2 lists and does a comparison, excluding the keys from ignore_keys