Python lib to print Ethereum logo of any size and style on your terminal or standard output.
pip install eth-logo
# Optionals: print-eth SIZE CHAR BACKGROUND PADDING
# [defaults: size=20 char='#', back=' ', pad='']
print-eth
print-eth 30 %
print-eth 30 % .
from eth_logo import print_eth
# Optionals: Size, Character, Background, Padding
print_eth(size=20, char='#', back=' ', pad=' ')
# Next examples will output the 'print-eth' code implementation
print-eth --code
print-eth -c
You can set up your dev environment with:
git clone git@github.com:0xMarto/eth-logo.git
cd eth-logo
virtualenv -p python3 venv
. venv/bin/activate