The modern way to call APIs in Python
Asynchronous and typing are new standards in Python, and they are especially useful for developing API clients to abstract and test external API response. (more…)
Read more »
Caching is an essential optimization technique. In this tutorial, you’ll learn how to use Python’s @lru_cache decorator to cache the results of your functions using the LRU cache strategy. This is a powerful technique you can use to leverage the power of … Read more