Skip to content

A Python library for generating Github-like identicons 👾

License

Notifications You must be signed in to change notification settings

AdaptiveThinking/identicon

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Identicon

https://camo.githubusercontent.com/3c4eee845db4fa6af1d93b1c33b30074a9b0333f/68747470733a2f2f662e636c6f75642e6769746875622e636f6d2f6173736574732f363130342f3936313733302f61336334653261302d303464662d313165332d383234632d3733373865363535303730372e706e67

A Python library for generating GitHub-like symmetrical 5x5 identicons.

https://travis-ci.org/flavono123/identicon.svg?branch=master

Installation

pip install Identicon

Usage

Pass a string to Identicon.render(). It will return the PNG formatted byte stream:

identicon = Identicon.render('Python')
# b'\x89PNG\r\n\x1a\n\x00\x00\x00\rIHDR\x00\x00\x00\xfa\x00\x00\x00...'

You can write to file:

with open('identicon.png', 'wb') as f:
    f.write(identicon)

or get as PIL.Image:

import io
from PIL import Image

image = Image.open(io.BytesIO(identicon))

About

A Python library for generating Github-like identicons 👾

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%