Generates default avatars from a given string (such as username). This is mainly for an usage in web apps, but you can olso use it to populate LDAP "jpegPhoto" field, for instance.
This is largely inspired by Richard O'Dwyer's randomavatar.
pip install avatar-generator
from avatar_generator import Avatar
from flask import make_response
@app.route("/photo.png")
def photo():
avatar = Avatar.generate(128, "[email protected]", "PNG")
headers = { 'Content-Type': 'image/png' }
return make_response(avatar, 200, headers)
This code is under WTFPL. Just do what the fuck you want with it.