We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3914e0f commit 5bf088aCopy full SHA for 5bf088a
doc/source/whatsnew/v0.17.1.txt
@@ -43,6 +43,8 @@ API changes
43
Deprecations
44
^^^^^^^^^^^^
45
46
+- The ``pandas.io.ga`` module which implements ``google-analytics`` support is deprecated and will be removed in a future version (:issue:`11308`)
47
+
48
.. _whatsnew_0171.performance:
49
50
Performance Improvements
pandas/io/ga.py
@@ -4,6 +4,13 @@
4
3. Goto APIs and register for OAuth2.0 for installed applications
5
4. Download JSON secret file and move into same directory as this file
6
"""
7
8
+# GH11038
9
+import warnings
10
+warnings.warn("The pandas.io.ga module is deprecated and will be "
11
+ "removed in a future version.",
12
+ FutureWarning, stacklevel=2)
13
14
from datetime import datetime
15
import re
16
from pandas import compat
0 commit comments