We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23c7eaf commit 3309dd7Copy full SHA for 3309dd7
src/ydata_profiling/__init__.py
@@ -6,6 +6,7 @@
6
import warnings # isort:skip # noqa
7
8
import importlib.util # isort:skip # noqa
9
+from warnings import warn
10
11
from ydata_profiling.compare_reports import compare # isort:skip # noqa
12
from ydata_profiling.controller import pandas_decorator # isort:skip # noqa
@@ -25,6 +26,15 @@
25
26
27
warnings.simplefilter("ignore", category=NumbaDeprecationWarning)
28
29
+warn(
30
+ """
31
+ `import ydata_profiling` is deprecated and will not receive more updates.
32
+ Please install data-profiling via `pip install data-profiling` and use `import data_profiling` instead.
33
+ """,
34
+ DeprecationWarning,
35
+ stacklevel=2,
36
+)
37
+
38
__all__ = [
39
"pandas_decorator",
40
"ProfileReport",
0 commit comments