Press ESC to close

Neeraj

https://t.me/pump_upp

Compile Python Scripts to Executable Files

Writing scripts that are based on Python libraries and are meant to be executed more than once is a good practice. It is a good way to ensure that your code is not executing on a system that may not have all the required Python modules installed. Compiling a python script to an executable file is also a good practice. This will ensure that script runs independently of the Python installed on the system. This tutorial will discuss different ways to compile Python scripts to executable files. This includes compiling the script on Linux and windows. Prerequisite: For compiling the…

Create APIs using gRPC in Python

In this article we’ll discuss how to build a simple, one endpoint gRPC API service with Protocol Buffers, and prepare its client-side and server-side code with gRPC tools. This will be an attempt to start from scratch, take a simple function and expose it via a gRPC interface on our own machine. We won’t be using gRPC in advanced modes (request-streaming, response-streaming, bidirectional-streaming) with additional features such as error handling and authentication. This tutorial will help you to create APIs using gRPC in Python. What is gRPC? gRPC or Google Remote Procedure Call is an open-source RPC framework that is…

Instagram bot – posting images, auto like, and bulk follow

Instagram has become a platform that people use to connect and share their pictures, videos, and stories. People use Instagram for gaining popularity and for promoting their businesses as well as for marketing purposes. In today’s article, we will learn about the Instagram bot. We will be doing some tasks like posting pictures, auto liking, and bulk following using an Instagram bot. You can build this as a small project so that it will help you build big projects in the future. What is an Instagram bot? The Instagram bot is essentially a computer program that allows you to automate…

Detect the Age and Gender of a Face using OpenCV

In this tutorial, we are going to quickly go over how you can detect the age and gender of a face using OpenCV. In computer vision, detecting a face is a very important task. In the past, detecting a face required a lot of time and effort, but today we have pre-trained models that can do it in a few seconds. We will be using a pre-trained model in the OpenCV library to detect a face and return a ground truth label. It’s quite a simple model, but it’s a good starting point for beginners. Required Modules: OpenCV: It is…