Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 635 Bytes

README.md

File metadata and controls

31 lines (19 loc) · 635 Bytes

Blockies Identicons for ANSI Terminal

python port of https://github.com/ethereum/blockies

Demo

asciicast

Dependencies

  • python3

Installation

pip install git+https://github.com/konradkonrad/blockies-py.git

Usage

Commandline

blockies 0xfb6916095ca1df60bb79ce92ce3ea74c37c5d359

From python

from blockies import create_blockie
rows = create_blockie('0xfb6916095ca1df60bb79ce92ce3ea74c37c5d359')
# `rows` contains ansi escaped strings
for row in rows:
    print(row)