File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 8
8
get_components_yahoo ,
9
9
get_dailysummary_iex ,
10
10
get_data_alphavantage ,
11
+ get_data_econdb ,
11
12
get_data_enigma ,
12
13
get_data_famafrench ,
13
14
get_data_fred ,
38
39
__all__ = [
39
40
"__version__" ,
40
41
"get_components_yahoo" ,
42
+ "get_data_econdb" ,
41
43
"get_data_enigma" ,
42
44
"get_data_famafrench" ,
43
45
"get_data_yahoo" ,
Original file line number Diff line number Diff line change 41
41
42
42
__all__ = [
43
43
"get_components_yahoo" ,
44
+ "get_data_econdb" ,
44
45
"get_data_enigma" ,
45
46
"get_data_famafrench" ,
46
47
"get_data_fred" ,
@@ -80,6 +81,10 @@ def get_data_yahoo(*args, **kwargs):
80
81
return YahooDailyReader (* args , ** kwargs ).read ()
81
82
82
83
84
+ def get_data_econdb (* args , ** kwargs ):
85
+ return EcondbReader (* args , ** kwargs ).read ()
86
+
87
+
83
88
def get_data_enigma (* args , ** kwargs ):
84
89
return EnigmaReader (* args , ** kwargs ).read ()
85
90
You can’t perform that action at this time.
0 commit comments