Python pathlib-style classes for cloud storage services such as Amazon S3, Azure Blob Storage, and Google Cloud Storage. - drivendataorg/cloudpathlib... (more…)
Read more »
Stupid Pipx Tricks
Pip has a lot of problems (that I'll be discussing in future posts in this series), but the good news is that you don't have to resort to heavyweight third-party tools to improve yo... (more…)
Read more »
Google Analytics is a powerful analytics tool found in an astonishing number of websites. In this tutorial, we will take a look at how to access the Google Analytics API (v4) with Python and Pandas. Additionally, we will take a look at the various ways to... (more…)
Read more »
Let’s say you want to store a list of integers in Python: list_of_numbers = [] for i in range(1000000): list_of_numbers.append(i) Those numbers can easily fit in a 64-bit integer, so one would hope Python would store those million integers in no more than... (more…)
Read more »