eth-logo

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


Keywords
ethereum-library, python
License
MIT
Install
pip install eth-logo==0.1.3

Documentation

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 [defaults: size=20 char='#']
print-eth
print-eth 30 %
sample 1 sample 2

Usage (in python)

from eth_logo import print_eth

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

Contribute

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