A port of GitHub's identicon algorithm to Python.
This repository is not sponsored by or affiliated with GitHub Inc. or its affiliates. "GitHub" is a registered trademark of GitHub Inc.
python3 -m pip install --upgrade git+https://github.com/ShineyDev/github.identicon.git
from github.identicon import Identicon
identicon = Identicon.from_identifier(480938)
image = identicon.generate_image() # requires PIL
image.show()