A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
import curses | |
import time | |
import sys | |
import requests | |
# Constants | |
CURRENCY='USD' | |
REQUESTS_PER_MINUTE=10 | |
REQUEST_URI='https://api.coinmarketcap.com/v1/ticker/' |