File tree 4 files changed +6
-5
lines changed
4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 6
6
dist
7
7
docs /build
8
8
.tox /
9
+ .cache /
10
+ * ~
Original file line number Diff line number Diff line change 2
2
from distutils .version import LooseVersion
3
3
4
4
import pandas as pd
5
- from pandas .core .common import PandasError
6
5
from pandas import to_datetime
7
6
8
7
import requests
@@ -45,7 +44,7 @@ class SymbolWarning(UserWarning):
45
44
pass
46
45
47
46
48
- class RemoteDataError (PandasError , IOError ):
47
+ class RemoteDataError (IOError ):
49
48
pass
50
49
51
50
Original file line number Diff line number Diff line change 6
6
from pandas import read_csv
7
7
from pandas import DataFrame
8
8
from pandas import to_datetime
9
- from pandas . io . common import ZipFile
9
+ from zipfile import ZipFile
10
10
from pandas .compat import StringIO
11
- from pandas .core . common import is_number
11
+ from pandas .api . types import is_number
12
12
13
13
from pandas_datareader .base import _BaseReader
14
14
from pandas_datareader .compat import BytesIO
Original file line number Diff line number Diff line change 1
1
import tempfile
2
2
import re
3
3
import datetime as dt
4
- from pandas . io . common import ZipFile
4
+ from zipfile import ZipFile
5
5
from pandas .compat import lmap , StringIO
6
6
from pandas import read_csv , to_datetime
7
7
You can’t perform that action at this time.
0 commit comments