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):
2121 -------
2222 data : DataFrame
2323 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.
2525 """
2626 try :
2727 return self ._read ()
@@ -37,7 +37,7 @@ def _read(self):
3737 urls = [f"{ self .url } ?id={ n } " for n in names ]
3838
3939 def fetch_data (url , name ):
40- """Utillity to fetch data"""
40+ """Utility to fetch data"""
4141 resp = self ._read_url_as_StringIO (url )
4242 data = read_csv (
4343 resp ,
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class MoexReader(_DailyBaseReader):
2828 Time, in seconds, to pause between consecutive queries of chunks. If
2929 single value given for symbol, represents the pause between retries.
3030 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.
3232 session : Session, default None
3333 requests.sessions.Session instance to be used
3434
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class QuandlReader(_DailyBaseReader):
3535 Time, in seconds, to pause between consecutive queries of chunks. If
3636 single value given for symbol, represents the pause between retries.
3737 chunksize : int, default 25
38- Number of symbols to download consecutively before intiating pause.
38+ Number of symbols to download consecutively before initiating pause.
3939 session : Session, default None
4040 requests.sessions.Session instance to be used
4141 api_key : str, optional
You can’t perform that action at this time.
0 commit comments