Python Wrapper API to load cryptocurrencies prices from main exchanges
To access the CryptoCompare public API in Python, we can use the following Python wrapper available on GitHub: cryCompare. (more…)
Read more »I’ve found myself explaining Python 3’s str to people online more and more often lately. There’s this ridiculous claim about that Python 3’s string handling is broken or somehow worse than Python 2, and today I intend to put that myth to rest. Pyt…