Skip to content

DOC: added google finance as a data source to the DataReader doc #4518

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
Aug 9, 2013
Merged
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
11 changes: 7 additions & 4 deletions pandas/io/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ def DataReader(name, data_source=None, start=None, end=None,
"""
Imports data from a number of online sources.

Currently supports Yahoo! finance, St. Louis FED (FRED), and Kenneth
French's data library.
Currently supports Yahoo! Finance, Google Finance, St. Louis FED (FRED)
and Kenneth French's data library.

Parameters
----------
name : str
the name of the dataset
data_source: str
the data source ("yahoo", "fred", or "ff")
the data source ("yahoo", "google", "fred", or "ff")
start : {datetime, None}
left boundary for range (defaults to 1/1/2010)
end : {datetime, None}
Expand All @@ -53,9 +53,12 @@ def DataReader(name, data_source=None, start=None, end=None,
Examples
----------

# Data from Yahoo!
# Data from Yahoo! Finance
gs = DataReader("GS", "yahoo")

# Data from Google Finance
aapl = DataReader("AAPL", "google")

# Data from FRED
vix = DataReader("VIXCLS", "fred")

Expand Down