Created
June 28, 2016 20:12
-
-
Save ZeccaLehn/8acf4342c89359b31f822a0d9fc068d3 to your computer and use it in GitHub Desktop.
Python XLS In-Memory Downloader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
url = 'http://www.econ.yale.edu/~shiller/data/ie_data.xls' | |
data = pd.read_excel(url, 'Data') | |
data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment