/***
* ██████╗██████╗ ██╗ ██╗██████╗ ████████╗ ██████╗ ██████╗██╗ ██╗███████╗ ██████╗██╗ ██╗
* ██╔════╝██╔══██╗╚██╗ ██╔╝██╔══██╗╚══██╔══╝██╔═══██╗██╔════╝██║ ██║██╔════╝██╔════╝██║ ██╔╝
* ██║ ██████╔╝ ╚████╔╝ ██████╔╝ ██║ ██║ ██║██║ ███████║█████╗ ██║ █████╔╝
* ██║ ██╔══██╗ ╚██╔╝ ██╔═══╝ ██║ ██║ ██║██║ ██╔══██║██╔══╝ ██║ ██╔═██╗
* ╚██████╗██║ ██║ ██║ ██║ ██║ ╚██████╔╝╚██████╗██║ ██║███████╗╚██████╗██║ ██╗
* ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝╚═╝ ╚═╝╚══════╝ ╚═════╝╚═╝ ╚═╝
*
* v1.4
* @Author: prodseanb
* @GitHub: https://github.com/prodseanb
*/
Keep track of the latest cryptocurrency data with CryptoCheck.
Clone repo:
git clone https://github.com/prodseanb/cryptocheck.git
Install requirements:
cd cryptocheck
pip3 install -r requirements.txt
python3 run.py [coin-name] [*args]
argv[1]
must refer to the coin name, converts this argument into a part of the URL to be parsed by BeautifulSoup.
URL = f"https://coinmarketcap.com/currencies/{sys.argv[1]}"
Appends [coin-name] argument to URL. Make sure multiple-word coins are separated by a "-" hyphen.
CryptoCheck v1.4 (https://github.com/prodseanb/cryptocheck)
Keep track of the latest cryptocurrency data with CryptoCheck.
Usage: python3 run.py [coin-name] [*args]
Appends [coin-name] argument to URL. Make sure multiple-word coins are separated by a "-" hyphen.
Output:
python3 run.py [coin-name] [*args]
Parameters: currency name and display option(s)
-a: Display all the results (optional, defaults to None when not used)
-p / --price: Display the current price
-c / --price-change: Display the 24h price change
-T / --volume: Display the 24h trading volume
-K / --low-high: Display the 24h low/high
-d / --dominance: Display the market dominance
-s / --supply: Display the circulating supply
-M / --market-cap: Display the market cap
-n / --news: Display the latest news
Examples:
Try executing these examples.
python3 run.py dogecoin -a
python3 run.py bitcoin --news -p
python3 run.py cardano -M
- Coin price
- Rank
Planning to add more features. v1.1 commit:
- Market cap
- Latest news
- Documentation
- 24h low/high
- 24h trading volume
- Circulating supply
- 24h price change
- Market dominance
- Optional arguments
- Utilize multiple arguments e.g.
python3 run.py bitcoin -M -p -K
Output:
[*] Date and time: 02/07/2021 00:35:11
[*] Current price: $33,117.58
[24h] Low: $32,811.23 ------------------ [24h] High: $34,447.84
[*] Market cap: $620,824,927,907
Output all (default):
[*] Date and time: 02/07/2021 00:39:33
[*] Coin: Bitcoin
[*] Abbrv: (BTC)
[*] Current price: $33,027.32
[*] Rank: Rank #1
[24h] Low: $32,811.23 ------------------ [24h] High: $34,447.84
[24h] Trading volume: $35,025,072,352
[24h] Price change: $-1,120.07
[*] Market dominance: 45.63%
[*] Circulating supply: 18,746,081.00 BTC
[*] Market cap: $619,132,732,901
[*] Latest news: Fake Covid Certificates, Stolen Vaccines Sold on Darkweb for Bitcoin
[*] Source: https://www.coindesk.com/price/bitcoin
Make sure you have Docker installed. docker -v
to check.
sudo docker pull prodseanb/cryptocheck
sudo docker run -t -i prodseanb/cryptocheck [coin-name] [*args]
Copyright (c) 2021 Sean Bachiller
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.