Decorators in Python are a powerful tool that allows you to modify the behavior of functions and classes. In this
Continue readingTag: Python
What are Static Variables and Static Methods in Python?
Static Variables and Static Methods in Python are really useful and commonly asked about during interviews. It is helpful in
Continue readingHow to Add Rate Limiting to your Flask API in 2 lines of Code
In this tutorial, you will learn how to rate limit requests to your Flask API to avoid users from hogging
Continue readingHow to Send and Receive Data in Flask
I’ll be using Repl.it for writing all the code. Repl.it lets you quickly deploy your API and is really convenient.
Continue readingHow to Use Python to Post on Popular Blogging Websites
Create once, publish multiple times. Automate the manual work with Python 💯 In this article, we will use Python to automate
Continue readingHow to Make an AI-Assisted Phone Service with Twilio
If you’ve ever called a business to book an appointment or tried to chat on a website to get your
Continue readingHow to Build an Anime Recommender System with Embeddinghub
A common problem in applied machine learning is how to recommend items in a database to users based on their
Continue readingGentle Introduction to Linear Programming
First, let’s talk about a Linear Equation. A linear equation consists of variables, the only restriction is that each variable
Continue readingIntro to Webhooks and How to Receive them with Python
This tutorial will be an introduction to the concept of webhooks. We will also build a simple Flask server that
Continue readingLeetcode 922 – Sort Array By Parity II – Python Code with Explanation
Summary of question We are given an unsorted array of integers. Half of the integers are even while the other
Continue readingHow to Automate Formatting and Linting in Python
We will be looking at some packages to format, lint, test our code and later create a pre-commit hook to
Continue readingYou Need To Know Compiled/Interpreted, Static/Dynamic, and Strong/Weak Typing
In this article, I’ll try to demystify the terms static/dynamic typing, strong/weak typing, and define some terms like run-time, compilation,
Continue reading