Skip to content

Instantly share code, notes, and snippets.

@5uru
5uru / md_eda.py
Created April 25, 2026 08:25
EDA Markdown Generator is a production-ready Python library that automatically converts pandas DataFrames into comprehensive, publication-quality Exploratory Data Analysis (EDA) reports in Markdown format. It integrates seamlessly with the pandas-profiling library to extract statistical insights and formats them into structured, visually-enhance…
import json
from functools import lru_cache
from typing import Any, Callable, Dict, List, Optional, Tuple
import pandas as pd
from data_profiling import ProfileReport
# ============================================================================
# CONSTANTS & CONFIGURATION
# ============================================================================