File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ def read(self):
21
21
-------
22
22
data : DataFrame
23
23
If multiple names are passed for "series" then the index of the
24
- DataFrame is the outer join of the indicies of each series.
24
+ DataFrame is the outer join of the indices of each series.
25
25
"""
26
26
try :
27
27
return self ._read ()
@@ -37,7 +37,7 @@ def _read(self):
37
37
urls = [f"{ self .url } ?id={ n } " for n in names ]
38
38
39
39
def fetch_data (url , name ):
40
- """Utillity to fetch data"""
40
+ """Utility to fetch data"""
41
41
resp = self ._read_url_as_StringIO (url )
42
42
data = read_csv (
43
43
resp ,
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class MoexReader(_DailyBaseReader):
28
28
Time, in seconds, to pause between consecutive queries of chunks. If
29
29
single value given for symbol, represents the pause between retries.
30
30
chunksize : int, default 25
31
- The number of symbols to download consecutively before intiating pause.
31
+ The number of symbols to download consecutively before initiating pause.
32
32
session : Session, default None
33
33
requests.sessions.Session instance to be used
34
34
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class QuandlReader(_DailyBaseReader):
35
35
Time, in seconds, to pause between consecutive queries of chunks. If
36
36
single value given for symbol, represents the pause between retries.
37
37
chunksize : int, default 25
38
- Number of symbols to download consecutively before intiating pause.
38
+ Number of symbols to download consecutively before initiating pause.
39
39
session : Session, default None
40
40
requests.sessions.Session instance to be used
41
41
api_key : str, optional
You can’t perform that action at this time.
0 commit comments