Update landing page to use gravatar.
This commit is contained in:
parent
bf926aceee
commit
730f4f2d66
5 changed files with 21 additions and 1 deletions
5
util/gravatar.py
Normal file
5
util/gravatar.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
import hashlib
|
||||
|
||||
|
||||
def compute_hash(email_address):
|
||||
return hashlib.md5(email_address.strip().lower()).hexdigest()
|
Reference in a new issue