Sachin

Sachin @sachingeek

About: A Python developer obsessed with Machine Learning and Data Science.

Location:
Delhi
Joined:
Oct 15, 2020

Sachin
articles - 57 total

BrightData's MCP: Fetching Real-time Web Data For LLMs

In the world of artificial intelligence, especially large language models (LLMs), there's a quiet...

Learn More 2 2Jun 5

Install Redis Locally in Windows

Redis is an in-memory database that actually makes it the fastest among all the databases. What does...

Learn More 2 0Jan 6

💰Save Money on API Testing: Try EchoAPI Instead of Thunder Client!

You might have heard of Thunder Client, a REST API client extension for Visual Studio Code that...

Learn More 7 2Dec 1 '24

How to disable GIL (Global Interpreter Lock) in Python 3.13

The Python organization has released the official version of Python 3.13, which includes many major...

Learn More 5 0Nov 20 '24

2 Ways to Stream Videos on the Frontend in FastAPI

FastAPI is a fast and modern web framework known for its support for asynchronous REST API and ease...

Learn More 0 0Nov 16 '24

10 Useful but Rarely Used OS Functions in Python

You must have used functions provided by the os module in Python several times in your projects....

Learn More 5 0Nov 14 '24

Different Ways to Fix Circular Imports in Python

Have you ever come across circular imports in Python? Well, it’s a very common code smell that...

Learn More 2 0Nov 4 '24

Making a Webapp is so EASY with Streamlit

Streamlit is kind of popular among data scientists because you don't require frontend knowledge in...

Learn More 3 0Oct 23 '24

7 SQL Concepts You Should Know as a Data Scientist?

If you are applying for data science roles, it is essential to have a solid understanding of key SQL...

Learn More 4 0Sep 20 '24

NumPy's Argmax? How it Finds Max Elements from Arrays

NumPy is most often used to handle or work with arrays (multidimensional, masked) and matrices. It...

Learn More 1 0Jun 14 '24

OOPs Concept: getitem, setitem & delitem in Python

Python has numerous collections of dunder methods(which start with double underscores and end with...

Learn More 2 0Jun 12 '24

Handling Images on the Frontend Using FastAPI

In this tutorial, we'll look at how to use FastAPI to display static and dynamic images on the...

Learn More 3 0Jun 10 '24

Setting Up MySQL Database in Python

Databases are crucial for storing and managing data. In this article, you'll learn to create and...

Learn More 3 0May 19 '24

Python Type Hints: Callable Objects, Iterables and More

Python is a dynamically typed language, meaning you do not need to specify the type of variables,...

Learn More 5 2Apr 22 '24

Creating CLI Commands using Argparse in Python

Python has a rich and versatile collection of standard libraries, making it one of the better...

Learn More 1 0Mar 31 '24

What Asterisk (*) Can Do In Python

You must have seen the asterisk or star symbol inside the parameterized function or used it to...

Learn More 5 2Mar 15 '24

Python: Guide to Context Manager & How do they work?

In this article, we'll look at context managers and how they can be used with Python's "with"...

Learn More 2 0Feb 27 '24

map() in Python

What would you do if you wanted to apply a function to each item in an iterable? Your first step...

Learn More 1 0Feb 17 '24

How to run the Flask app from CLI

Introduction Flask is a micro web framework purely written in Python that allows us to...

Learn More 2 0Feb 4 '24

Serializing Python Object Using the pickle Module

Sometimes you need to send complex data over the network, save the state of the data into a file to...

Learn More 1 0Jan 27 '24

What is Inheritance in OOP in Python? What are the Different Types of Inheritance

We all have ever encountered the term OOPs (Object-Oriented Programming) in programming. OOP is an...

Learn More 2 0Jan 11 '24

Test your Code Efficiently using pytest Module

You may have done unit testing or heard the term unit test, which involves breaking down your code...

Learn More 8 3Jan 1 '24

shutil Module: High-level File Operations in Python Made Easy

Copying or moving files or folders manually from one directory to another directory could be a real...

Learn More 4 2Dec 17 '23

venv: Create Virtual Environments Easily in Python

Have you ever needed an isolated environment apart from your primary Python environment to manage the...

Learn More 5 0Dec 10 '23

Using Blueprint to Organize Flask Apps

Introduction Large applications can become complex and difficult to manage due to the...

Learn More 3 0Nov 26 '23

Multi-Threaded Programs in Python Using threading Module

You may have heard the terms "parallelization" or "concurrency", which refer to scheduling tasks to...

Learn More 2 0Nov 13 '23

Standardizing the Data Using StandardScaler in ML

Ensuring consistency in the numerical input data is crucial to enhancing the performance of machine...

Learn More 3 0Nov 9 '23

Hashing User Passwords Using bcrypt in Python

Web-based services and websites store hashed versions of your passwords, which means your actual...

Learn More 3 0Nov 5 '23

Build WebSocket Server and Client in Python

You must have seen real-time applications where data is changed frequently or updated in real-time,...

Learn More 5 2Oct 29 '23

MySQL x Flask: Add MySQL database with Flask App

MySQL is a widely used open-source relational database known for its performance, reliability, and...

Learn More 3 0Oct 22 '23