If you are building an API, it is more than likely that it is going to be consumed by another
Continue readingTag: Python
Dunder/Magic Methods in Python
Dunder methods are names that are preceded and succeeded by double underscores, hence the name dunder. They are also called
Continue readingHow to parallelize for loops in Python and Work with Shared Dictionaries
This article will cover the implementation of a for loop with multiprocessing and a for loop with multithreading. We will
Continue readingHow to Build a UI for Your Model in 2021 Using Streamlit
Streamlit is an open-source Python library that can build a UI for various purposes, it is not limited to data
Continue readingHow to use Seaborn for Data Visualization
Data Visualization is the art of representing data in the form of graphs. It is a useful tool for professionals
Continue readingUnderstanding Accuracy, Recall, Precision, F1 Scores, and Confusion Matrices
This article also includes ways to display your confusion matrix AbstractAPI-Test_Link Introduction Accuracy, Recall, Precision, and F1 Scores are metrics
Continue readingHow to use 2020 Google Keyword and Twitter Hashtag trends to build word clouds
We will be building a Streamlit Web App to showcase a word cloud of Trending Google Keywords and Twitter Hashtags
Continue readingHow to Start Freelancing as a programmer on Upwork
Saying 2020 is a bad year would be an understatement but hey there are still a few days remaining! Start
Continue readingHow to build a web app to download Youtube videos in 30 lines of code
We will be using Streamlit and pytube to build our youtube downloader web app. I will also give a brief
Continue readingHow To Solve A Sudoku Puzzle Using Python And Linear Programming
Stuck on a Sudoku Puzzle? Python can solve it for you! Sudoku is a logic-based number-placement game. Below is an
Continue readingBasic Linear Programming in Python with PuLP
PuLP is a python library which can be used to solve linear programming problems. Linear Programming is used to solve
Continue readingHow to Create a Wheel file for your Python package and import it in another project
If you have worked with Python you must be familiar with the pip command used to install packages. This article
Continue reading