Thanks Rama.
I will try this out too and I will see which one fits best. I didn't
know it was this simple :-)
Cheers.
On May 14, 11:08 pm, Rama Vadakattu wrote:
> Integrating with Gravatar is very easy
>
> 1) Get MD5 hash of user's email id
> import hashlib
>
> def getMD5(self):
>
Thanks for the redirection Erreon.
I will try it out. :-)
Best regards,
On May 15, 5:00 am, Erreon wrote:
> If you don't want to implement your own solution you could
> use.http://code.google.com/p/django-gravatar/
>
> On May 14, 6:30 am, Joshua Partogi wrote:
>
> > Dear all
>
> > Does anybo
If you don't want to implement your own solution you could use.
http://code.google.com/p/django-gravatar/
On May 14, 6:30 am, Joshua Partogi wrote:
> Dear all
>
> Does anybody know a good django application for gravatar
> (http://gravatar.com) ?
>
> Thank you very much for the redirection.
>
>
Integrating with Gravatar is very easy
1) Get MD5 hash of user's email id
import hashlib
def getMD5(self):
m = hashlib.md5()
m.update(self.user.email)
return m.hexdigest()
2) and prepare image url as below
http://www.gravatar.com/avatar/{{user-email-MD5-
ha
Dear all
Does anybody know a good django application for gravatar (
http://gravatar.com ) ?
Thank you very much for the redirection.
:-)
--
If you can't believe in God the chances are your God is too small.
Read my blog: http://joshuajava.wordpress.com/
Follow us on twitter: http://twitter.co
5 matches
Mail list logo