This project was entierly made thanks to an Udemy course created by Ian Annase 'Python & Cryptocurrency: Build 5 Real World Applications' https://www.udemy.com/share/101wh6A0QYcV1bQHg=/ and personal aim is to get familiar with Python and API(s).
Documentation for the CmC API - available endpoints linked to a plans -> https://coinmarketcap.com/api/documentation/v1/#tag/cryptocurrency
- register at https://pro.coinmarketcap.com/account for your free API key
- in same folder as the python files create
config.py
file with folowing structure where you list your API key and calculation currency you want to use in your results
API_KEY='<your_API_key_from_CMC_here>'
CCY='GBP'
To track all the crypto assets. You can total value of all your crypto assets combined along with detailed information about each one. Files required to run:
cmc_portfolio.py
config.py
portfolio.txt
Get notification when cryptocurrencies hit certain prices. Files required to run:
cmc_alerts.py
config.py
alerts.txt
Sort by rank, daily percentage change, or by newest cryptocurrencies. Files required to run:
cmc_top100.py
config.py
Learn to store cryptocurrency information inside of excel workbooks using Python. Files required to run:
cmc_crypto2excel.py
config.py
Shows how many daily/monthly credits use has left when using free CMC API key Files required to run:
cmc_APIkey_statistics.py
config.py