Skip to content

Instantly share code, notes, and snippets.

@sdkn104
sdkn104 / RPA.md
Last active February 24, 2019 08:46
RPA links and memos
@sdkn104
sdkn104 / decode_email.py
Last active February 24, 2024 17:44
Python script to decode email
import imaplib, email, email.parser, email.policy
import html2text
import pprint, sys
#
# Utilities for Debug
#
pp = pprint.PrettyPrinter(indent=4, width=80)
def myprint(str):