Skip to content

Instantly share code, notes, and snippets.

View mattWoolly's full-sized avatar

Matt Woolly mattWoolly

  • Woolly Mammoth Limited
  • Denver, CO
View GitHub Profile
@mattWoolly
mattWoolly / spell_check.py
Last active July 12, 2022 19:51
Outside Spell Check
import re
import requests
import hashlib
# GET document from Outside server
r = requests.get('https://outside-interview.herokuapp.com/document')
# Split document into list, using whitespace or - for seperator
list = re.split(r"\s+|-", r.text)