In this tutorial, you'll learn about embedded development, an exciting area of programming that allows you to bring your code into the physical world. You'll learn about your options for writing embedded Python code and build a basic game using the BBC mi... (more…)
Read more »
The Python HTTP library requests
is probably my favourite HTTP utility in all the languages I program
in. It's simple, intuitive and ubiquitous in the Python community. Most of the
programs that interface with HTTP use either requests or urllib3 from
the ... (more…)
Read more »
Let's pretend we need to build a recommendation engine for an eCommerce web site. There are basically two approaches you can take: content-based and collaborative-filtering. We'll look at some ... (more…)
Read more »
In this tutorial, you'll learn all about the k-Nearest Neighbors (kNN) algorithm in Python, including how to implement kNN from scratch, kNN hyperparameter tuning, and improving kNN performance using bagging. (more…)
Read more »
A Python script that anonymizes an Excel file and synthesizes new data in its place. - Welding-Torch/Excel-Anonymizer... (more…)
Read more »