Skip to content

Commit 46e663e

Browse files
authored
Merge pull request #793 from cottrell/fix
Handle pandas urlencode removal.
2 parents cbb9ed6 + 5588621 commit 46e663e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas_datareader/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import numpy as np
66
from pandas import DataFrame, concat, read_csv
7-
from pandas.io.common import urlencode
7+
from urllib.parse import urlencode
88
import requests
99

1010
from pandas_datareader._utils import (

pandas_datareader/iex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import json
22

33
import pandas as pd
4-
from pandas.io.common import urlencode
4+
from urllib.parse import urlencode
55

66
from pandas_datareader.base import _BaseReader
77

0 commit comments

Comments
 (0)