Skip to content

DEPR: deprecate pandas.io.ga, #11308 #11318

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 14, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/source/whatsnew/v0.17.1.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ API changes
Deprecations
^^^^^^^^^^^^

- The ``pandas.io.ga`` module which implements ``google-analytics`` support is deprecated and will be removed in a future version (:issue:`11308`)

.. _whatsnew_0171.performance:

Performance Improvements
Expand Down
7 changes: 7 additions & 0 deletions pandas/io/ga.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
3. Goto APIs and register for OAuth2.0 for installed applications
4. Download JSON secret file and move into same directory as this file
"""

# GH11038
import warnings
warnings.warn("The pandas.io.ga module is deprecated and will be "
"removed in a future version.",
FutureWarning, stacklevel=2)

from datetime import datetime
import re
from pandas import compat
Expand Down