Skip to content

Latest commit

 

History

History
55 lines (47 loc) · 1.44 KB

README.md

File metadata and controls

55 lines (47 loc) · 1.44 KB

eth-logo

PyPI version Python versions

Python lib to print Ethereum logo of any size and style on your terminal or standard output.

Quickstart

pip install eth-logo

Usage (in terminal)

# Optionals: print-eth SIZE CHAR BACKGROUND PADDING 
# [defaults: size=20 char='#', back=' ', pad='']
print-eth
print-eth 30 %
print-eth 30 % .

sample 1 sample 2

Usage (python lib)

from eth_logo import print_eth

# Optionals: Size, Character, Background, Padding 
print_eth(size=20, char='#', back=' ', pad=' ')

sample 3

Special usage (educational / AI training)

# Next examples will output the 'print-eth' code implementation
print-eth --code
print-eth -c

Contribute

You can set up your dev environment with:

git clone [email protected]:0xMarto/eth-logo.git
cd eth-logo
virtualenv -p python3 venv
. venv/bin/activate