Skip to content

Commit 2c57915

Browse files
committed
Merge pull request pydata#53 from sinhrks/fama
API: Update Fama-French url
2 parents 5979a6c + 727e227 commit 2c57915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas_datareader/data.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ def fetch_data(url, name):
586586

587587
def get_data_famafrench(name):
588588
# path of zip files
589-
zip_file_path = '{0}/{1}.zip'.format(_FAMAFRENCH_URL, name)
589+
zip_file_path = '{0}/{1}_TXT.zip'.format(_FAMAFRENCH_URL, name)
590590

591591
with urlopen(zip_file_path) as url:
592592
raw = url.read()

0 commit comments

Comments
 (0)