From a59ccdf4064652c7a61cf728e5bf80d04800ba46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Portela=20Afonso?= Date: Fri, 10 Apr 2026 15:35:50 +0100 Subject: [PATCH 1/2] chore(readme): add package rename and migration guide --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/README.md b/README.md index 3c0d70051..ac4968969 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # ydata-profiling +> **`ydata-profiling` is now `data-profiling`.** This package has been renamed to `data-profiling`. Please follow the [Migration Guide](#migration-guide) as soon as possible — the old package will no longer receive updates or bug fixes. + [![Build Status](https://github.com/ydataai/pandas-profiling/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/ydataai/pandas-profiling/actions/workflows/tests.yml) [![PyPI download month](https://img.shields.io/pypi/dm/ydata-profiling.svg)](https://pypi.python.org/pypi/ydata-profiling/) [![](https://pepy.tech/badge/pandas-profiling)](https://pypi.org/project/ydata-profiling/) @@ -33,6 +35,40 @@ The package outputs a simple and digested analysis of a dataset, including **tim > **Looking for a scalable solution that can fully integrate with your database systems?**
> Leverage YData Fabric Data Catalog to connect to different databases and storages (Oracle, snowflake, PostGreSQL, GCS, S3, etc.) and leverage an interactive and guided profiling experience in Fabric. Check out the [Community Version](http://ydata.ai/register?utm_source=ydata-profiling&utm_medium=documentation&utm_campaign=YData%20Fabric%20Community). +## Migration Guide + +### 1. Uninstall the old package + +```bash +pip uninstall ydata-profiling +``` + +### 2. Install the new package + +```bash +pip install data-profiling +``` + +### 3. Update your imports + +Find and replace all occurrences of the old import in your codebase: + +```python +# Before +import ydata_profiling +from ydata_profiling import ProfileReport + +# After +import data_profiling +from data_profiling import ProfileReport +``` + +You can use this one-liner to find all affected files: + +```bash +grep -r "ydata_profiling" . --include="*.py" +``` + ## ▶️ Quickstart ### Install From fcfae28a7af7df9cb7d9020d25cc6233c188ac79 Mon Sep 17 00:00:00 2001 From: Azory YData Bot Date: Fri, 10 Apr 2026 14:39:34 +0000 Subject: [PATCH 2/2] fix(linting): code formatting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ac4968969..6bbf91769 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Find and replace all occurrences of the old import in your codebase: # Before import ydata_profiling from ydata_profiling import ProfileReport - + # After import data_profiling from data_profiling import ProfileReport