Skip to content

Instantly share code, notes, and snippets.

@ejamesc
Created October 14, 2011 20:25
Show Gist options
  • Save ejamesc/1288232 to your computer and use it in GitHub Desktop.
Save ejamesc/1288232 to your computer and use it in GitHub Desktop.
Gravatar Retrieval
def gravatar_url(email, size=80):
"""Return the gravatar image for the given email address."""
return 'http://www.gravatar.com/avatar/%s?d=identicon&s=%d' % \
(md5(email.strip().lower().encode('utf-8')).hexdigest(), size)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment