Skip to content

Commit bb54ebf

Browse files
committed
BUG: Change google URLS
Change Google finance urls closes #461 closes #462
1 parent dcc09eb commit bb54ebf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas_datareader/google/daily.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __init__(self, symbols=None, start=None, end=None, retry_count=3,
4444

4545
@property
4646
def url(self):
47-
return 'http://finance.google.com/finance/historical'
47+
return 'https://finance.google.com/finance/historical'
4848

4949
def _get_params(self, symbol):
5050
params = {

pandas_datareader/google/quotes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class GoogleQuotesReader(_BaseReader):
1515

1616
@property
1717
def url(self):
18-
return 'http://www.google.com/finance/info'
18+
return 'https://finance.google.com/finance/info'
1919

2020
@property
2121
def params(self):

0 commit comments

Comments
 (0)