Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 278 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 278 Bytes

email-to-soup

Convert Email to HTML-Soup & Soup-Text

Usage

from email_to_soup import soupify_email

email = """ your email here
"""
soup_object = soupify_email(email)
print(soup_object.soup_text)
print(soup_object.html_body)
print(soup_object.html_soup)