Skip to content
This repository has been archived by the owner on Jul 19, 2023. It is now read-only.

apinanyogaratnam/crypto-wealth-rank

Repository files navigation

Crypto Wealth Rank

Downloads

A simple python package to get crypto wealth rank.

ranks are as follows:

Shrimp: less than 1 BTC
Crab: 1 to 10 BTC
Octopus: 10 to 50 BTC
Fish: 50 to 100 BTC
Dolphin: 100 to 500 BTC
Shark: 500 to 1000 BTC
Whale: >1000 BTC
Humpback: >5000 BTC

Table of Contents

Installation

Install the package using pip:

pip install crypto-wealth-rank

Usage

from crypto_wealth_rank import rank_wealth

eth_balance = 100
rank = rank_wealth(eth_balance)
print(rank)  # Fish

Support

Please open an issue for support.

Contributing

Please contribute using Github Flow. Create a branch, add commits, and open a pull request.