Exploratory Data Analysis (EDA) with Pandas
23 May 2025 - 3 months ago

Exploratory Data Analysis (EDA) with Pandas

Learn how to explore and understand your dataset using Pandas, identifying trends, patterns, and potential issues in your data.

Handling Missing Data in Pandas
20 May 2025 - 3 months ago

Handling Missing Data in Pandas

Learn how to detect, analyze, and clean missing data using Pandas.

Grouping and Aggregating Data in Pandas
17 May 2025 - 3 months ago

Grouping and Aggregating Data in Pandas

Learn how to use groupby and aggregation in Pandas to analyze product sales data efficiently.

Grouping and Summarizing Data with Pandas (Without Pain)
14 May 2025 - 3 months ago

Grouping and Summarizing Data with Pandas (Without Pain)

Learn how to group, aggregate, and pivot your data using Pandas. Master `groupby`, `agg`, and `pivot_table` with real examples.

Filtering, Selecting and Slicing Your Data Like a Ninja
13 May 2025 - 3 months ago

Filtering, Selecting and Slicing Your Data Like a Ninja

Master the art of selecting rows and columns using Pandas. Learn `loc`, `iloc`, conditions, and slicing techniques.

Cleaning Data Without Losing Your Mind (Pandas Edition)
12 May 2025 - 3 months ago

Cleaning Data Without Losing Your Mind (Pandas Edition)

Learn how to clean messy data using Pandas. We'll fix missing values, rename columns, convert data types, and prepare our dataset for analysis.

What is Pandas and Why Every Data Analyst Loves It
11 May 2025 - 4 months ago

Exploring Your Data Like a Pro with Pandas

Learn how to explore and understand your dataset using Pandas. From `.head()` to `.describe()` and `.value_counts()`, this post walks you through the essential tools.

What is Pandas and Why Every Data Analyst Loves It
10 May 2025 - 4 months ago

What is Pandas and Why Every Data Analyst Loves It

Learn what Pandas is, why it's essential in data science, and how to load your first dataset with it.

Loguru + Sentry — Powerful Error Monitoring in Python
05 May 2025 - 4 months ago

Loguru + Sentry — Powerful Error Monitoring in Python

In this post, you'll learn how to connect Loguru with Sentry for full visibility over your app's issues.

Sending Logs Over the Network with Loguru
04 May 2025 - 4 months ago

Sending Logs Over the Network with Loguru

Local log files are great, but what happens when you scale?

In async apps (FastAPI, asyncio workers, etc.), logging can get tricky.
03 May 2025 - 4 months ago

Async Logging with Loguru: How to Handle Concurrency Without Losing Logs

In async apps (FastAPI, asyncio workers, etc.), logging can get tricky.

Structured Logging with Loguru: JSON for Observability Tools.
03 May 2025 - 4 months ago

Structured Logging with Loguru: JSON for Observability Tools

When you're sending logs to ELK, Datadog, or any log aggregator, plain text isn't enough.

Getting Serious with Loguru: Real-World Configuration
02 May 2025 - 4 months ago

Getting Serious with Loguru: Real-World Configuration

Now it's time to take logging seriously

Python logging made (stupidly) simple
01 May 2025 - 4 months ago

Getting started with Loguru

In this post, I'll walk you through the basics of Loguru and how to use it to level up your logging game.