Skip to content

Instantly share code, notes, and snippets.

@redspider
Created February 24, 2011 20:54
Show Gist options
  • Save redspider/842862 to your computer and use it in GitHub Desktop.
Save redspider/842862 to your computer and use it in GitHub Desktop.
def normalise(s):
s = s.replace(r'RT @[^ ]+','')
s = s.lower()
s = s.strip()
return md5(s).hexdigest()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment