tushare 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +21 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +59 -0
- data/LICENSE.txt +28 -0
- data/README.md +41 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +7 -0
- data/lib/tushare.rb +18 -0
- data/lib/tushare/datayes.rb +50 -0
- data/lib/tushare/datayes/bond.rb +69 -0
- data/lib/tushare/datayes/constants.rb +598 -0
- data/lib/tushare/datayes/equity.rb +111 -0
- data/lib/tushare/datayes/fund.rb +115 -0
- data/lib/tushare/datayes/fundamental.rb +260 -0
- data/lib/tushare/datayes/future.rb +22 -0
- data/lib/tushare/datayes/hk_equity.rb +18 -0
- data/lib/tushare/datayes/idx.rb +19 -0
- data/lib/tushare/datayes/iv.rb +60 -0
- data/lib/tushare/datayes/macro.rb +3517 -0
- data/lib/tushare/datayes/market.rb +286 -0
- data/lib/tushare/datayes/master.rb +67 -0
- data/lib/tushare/datayes/options.rb +22 -0
- data/lib/tushare/datayes/subject.rb +349 -0
- data/lib/tushare/internet/box_office.rb +155 -0
- data/lib/tushare/stock/billboard.rb +197 -0
- data/lib/tushare/stock/classifying.rb +288 -0
- data/lib/tushare/stock/fundamental.rb +232 -0
- data/lib/tushare/stock/macro.rb +253 -0
- data/lib/tushare/stock/news_event.rb +165 -0
- data/lib/tushare/stock/reference.rb +473 -0
- data/lib/tushare/stock/shibor.rb +136 -0
- data/lib/tushare/stock/trading.rb +513 -0
- data/lib/tushare/util.rb +293 -0
- data/lib/tushare/version.rb +3 -0
- data/tushare.gemspec +32 -0
- metadata +211 -0
@@ -0,0 +1,22 @@
|
|
1
|
+
module Tushare
|
2
|
+
module Datayes
|
3
|
+
# 通联数据-期货信息
|
4
|
+
module Future
|
5
|
+
# 获取国内四大期货交易所期货合约的基本要素信息,
|
6
|
+
# 包括合约名称、合约代码、合约类型、合约标的、报价单位、最小变动价位、涨跌停板幅度、交易货币、
|
7
|
+
# 合约乘数、交易保证金、上市日期、最后交易日、交割日期、交割方式、交易手续费、交割手续费、挂牌基准价、合约状态等。
|
8
|
+
def futu(exchange_cd: '', sec_id: '', ticker: '', contract_object: '',
|
9
|
+
field: '')
|
10
|
+
api_path = format(FUTU, exchange_cd, sec_id, ticker, contract_object,
|
11
|
+
field)
|
12
|
+
fetch_data api_path
|
13
|
+
end
|
14
|
+
|
15
|
+
# 获取国债期货转换因子信息,包括合约可交割国债名称、可交割国债交易代码、转换因子等。
|
16
|
+
def futu_convf(sec_id: '', ticker: '', field: '')
|
17
|
+
api_path = format(FUTUCONVF, sec_id, ticker, field)
|
18
|
+
fetch_data api_path
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Tushare
|
2
|
+
module Datayes
|
3
|
+
# 通联数据-港股信息
|
4
|
+
module HKEquity
|
5
|
+
# 获取香港交易所上市股票的基本信息,包含股票交易代码及其简称、股票类型、上市状态、上市板块、上市日期等;上市状态为最新状态。
|
6
|
+
def hk_equ(list_status_cd: '', sec_id: '', ticker: '', field: '')
|
7
|
+
api_path = format(HKEQU, list_status_cd, sec_id, ticker, field)
|
8
|
+
fetch_data api_path
|
9
|
+
end
|
10
|
+
|
11
|
+
# 获取香港交易所上市公司行为,包含有首发、现金增资、分红、拆细等。
|
12
|
+
def hk_equ_ca(sec_id: '', ticker: '', event_type_cd: '', field: '')
|
13
|
+
api_path = format(HKEQUCA, sec_id, ticker, event_type_cd, field)
|
14
|
+
fetch_data api_path
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module Tushare
|
2
|
+
module Datayes
|
3
|
+
# 通联数据-指数信息
|
4
|
+
module Idx
|
5
|
+
# 获取国内外指数的基本要素信息,包括指数名称、指数代码、发布机构、发布日期、基日、基点等。
|
6
|
+
def idx(sec_id: '', ticker: '', field: '')
|
7
|
+
api_path = format(IDX, sec_id, ticker, field)
|
8
|
+
fetch_data api_path
|
9
|
+
end
|
10
|
+
|
11
|
+
# 获取国内外指数的成分构成情况,包括指数成分股名称、成分股代码、入选日期、剔除日期等。
|
12
|
+
def idx_cons(sec_id: '', ticker: '', into_date: '', is_new: '',
|
13
|
+
field: '')
|
14
|
+
api_path = format(IDXCONS, sec_id, ticker, into_date, is_new, field)
|
15
|
+
fetch_data api_path
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
module Tushare
|
2
|
+
module Datayes
|
3
|
+
# 通联数据
|
4
|
+
module IV
|
5
|
+
# 原始隐含波动率,包括期权价格、累计成交量、持仓量、隐含波动率等。
|
6
|
+
def der_iv(begin_date: '', end_date: '', opt_id: '', sec_id: '',
|
7
|
+
field: '')
|
8
|
+
api_path = format(DERIV, begin_date, end_date, opt_id, sec_id, field)
|
9
|
+
fetch_data api_path
|
10
|
+
end
|
11
|
+
|
12
|
+
# 历史波动率,各个时间段的收盘-收盘历史波动率。
|
13
|
+
def der_iv_hv(begin_date: '', end_date: '', sec_id: '', period: '',
|
14
|
+
field: '')
|
15
|
+
api_path = format(DERIVHV, begin_date, end_date, sec_id, period, field)
|
16
|
+
fetch_data api_path
|
17
|
+
end
|
18
|
+
|
19
|
+
# 隐含波动率指数,衡量30天至1080天到期平价期权的平均波动性的主要方法。
|
20
|
+
def der_iv_index(begin_date: '', end_date: '', sec_id: '', period: '',
|
21
|
+
field: '')
|
22
|
+
api_path = format(DERIVINDEX, begin_date, end_date, sec_id, period,
|
23
|
+
field)
|
24
|
+
fetch_data api_path
|
25
|
+
end
|
26
|
+
|
27
|
+
# 隐含波动率曲面(基于参数平滑曲线),基于delta(0.1至0.9,0.05升步)和到期日(1个月至3年)而标准化的曲面。
|
28
|
+
def der_iv_ivp_delta(begin_date: '', end_date: '', sec_id: '', delta: '',
|
29
|
+
period: '', field: '')
|
30
|
+
api_path = format(DERIVIVPDELTA, begin_date, end_date, sec_id, delta,
|
31
|
+
period, field)
|
32
|
+
fetch_data api_path
|
33
|
+
end
|
34
|
+
|
35
|
+
# 隐含波动率参数化曲面,由二阶方程波动曲线在每个到期日平滑后的曲面(a,b,c曲线系数)
|
36
|
+
def der_iv_param(begin_date: '', end_date: '', sec_id: '', exp_date: '',
|
37
|
+
field: '')
|
38
|
+
api_path = format(DERIVPARAM, begin_date, end_date, sec_id, exp_date,
|
39
|
+
field)
|
40
|
+
fetch_data api_path
|
41
|
+
end
|
42
|
+
|
43
|
+
# 隐含波动率曲面(基于原始隐含波动率),基于delta(0.1至0.9,0.05升步)和到期日(1个月至3年)而标准化的曲面。
|
44
|
+
def der_iv_raw_delta(begin_date: '', end_date: '', sec_id: '', delta: '',
|
45
|
+
period: '', field: '')
|
46
|
+
api_path = format(DERIVRAWDELTA, begin_date, end_date, sec_id, delta,
|
47
|
+
period, field)
|
48
|
+
fetch_data api_path
|
49
|
+
end
|
50
|
+
|
51
|
+
# 隐含波动率曲面(在值程度),基于在值程度而标准化的曲面。执行价格区间在-60%到+60%,5%升步,到期区间为1个月至3年。
|
52
|
+
def der_iv_surface(begin_date: '', end_date: '', sec_id: '',
|
53
|
+
contract_type: '', field: '')
|
54
|
+
api_path = format(DERIVSURFACE, begin_date, end_date, sec_id,
|
55
|
+
contract_type, field)
|
56
|
+
fetch_data api_path
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
@@ -0,0 +1,3517 @@
|
|
1
|
+
module Tushare
|
2
|
+
module Datayes
|
3
|
+
# 通联数据-宏观行业
|
4
|
+
module Macro
|
5
|
+
# 包含中国宏观主要指标数据,历史数据从1928年开始。具体指标请查询“中国宏观指标”API。
|
6
|
+
def china_macro_data(indic_id: '', indic_name: '', begin_date: '',
|
7
|
+
end_date: '', field: '')
|
8
|
+
api_path = format(CHINAMACRODATA, indic_id, indic_name, begin_date,
|
9
|
+
end_date, field)
|
10
|
+
fetch_data api_path
|
11
|
+
end
|
12
|
+
|
13
|
+
# 包含中国宏观指标信息。输入中国宏观指标代码或名称,查询具体指标信息,如:指标频度、单位、来源等。
|
14
|
+
def china_macro_info(indic_id: '', indic_name_abbr: '', parent_id: '',
|
15
|
+
field: '')
|
16
|
+
api_path = format(CHINAMACROINFO, indic_id, indic_name_abbr, parent_id,
|
17
|
+
field)
|
18
|
+
fetch_data api_path
|
19
|
+
end
|
20
|
+
|
21
|
+
# 包含全球宏观20多个主要国家地区重要宏观指标数据,历史数据从1900年开始。具体指标请查询“全球宏观指标”API。
|
22
|
+
def global_macro_data(indic_id: '', indic_name: '', begin_date: '',
|
23
|
+
end_date: '', field: '')
|
24
|
+
api_path = format(GLOBALMACRODATA, indic_id, indic_name, begin_date,
|
25
|
+
end_date, field)
|
26
|
+
fetch_data api_path
|
27
|
+
end
|
28
|
+
|
29
|
+
# 包含全球宏观指标信息。输入全球宏观指标代码或名称,查询具体指标信息,如,指标频度、单位、来源等。
|
30
|
+
def global_macro_info(indic_id: '', indic_name_abbr: '', parent_id: '',
|
31
|
+
field: '')
|
32
|
+
api_path = format(GLOBALMACROINFO, indic_id, indic_name_abbr, parent_id,
|
33
|
+
field)
|
34
|
+
fetch_data api_path
|
35
|
+
end
|
36
|
+
|
37
|
+
# 包含行业主要指标数据,历史数据从1947年开始。具体指标请查询“行业经济指标”API。
|
38
|
+
def industrial_data(indic_id: '', indic_name: '', begin_date: '',
|
39
|
+
end_date: '', field: '')
|
40
|
+
api_path = format(INDUSTRIALDATA, indic_id, indic_name, begin_date,
|
41
|
+
end_date, field)
|
42
|
+
fetch_data api_path
|
43
|
+
end
|
44
|
+
|
45
|
+
# 包含行业指标信息。输入行业经济指标代码或名称,查询具体指标信息,如,指标频度、单位、来源等。
|
46
|
+
def industrial_info(indic_id: '', indic_name_abbr: '', parent_id: '',
|
47
|
+
field: '')
|
48
|
+
api_path = format(INDUSTRIALINFO, indic_id, indic_name_abbr, parent_id,
|
49
|
+
field)
|
50
|
+
fetch_data api_path
|
51
|
+
end
|
52
|
+
|
53
|
+
# 包含电商指标数据,历史数据从2014年8月开始。具体指标请查询“电商指标”API。
|
54
|
+
def ecommerce_data(indic_id: '', indic_name: '', begin_date: '',
|
55
|
+
end_date: '', field: '')
|
56
|
+
api_path = format(ECOMMERCEDATA, indic_id, indic_name, begin_date,
|
57
|
+
end_date, field)
|
58
|
+
fetch_data api_path
|
59
|
+
end
|
60
|
+
|
61
|
+
# 包含电商指标信息。输入电商指标代码或名称,查询具体指标信息,如,指标频度、单位、来源等。
|
62
|
+
def ecommerce_info(indic_id: '', indic_name_abbr: '', parent_id: '',
|
63
|
+
field: '')
|
64
|
+
api_path = format(ECOMMERCEINFO, indic_id, indic_name_abbr, parent_id,
|
65
|
+
field)
|
66
|
+
fetch_data api_path
|
67
|
+
end
|
68
|
+
|
69
|
+
# 包含中国GDP数据,具体指标可参见API文档;历史数据从1984年开始,按季更新。
|
70
|
+
def china_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
71
|
+
end_date: '', field: '')
|
72
|
+
api_path = format(CHINADATAGDP, indic_id, indic_name, begin_date,
|
73
|
+
end_date, field)
|
74
|
+
fetch_data api_path
|
75
|
+
end
|
76
|
+
|
77
|
+
# 包含中国宏观经济景气指数数据,具体指标可参见API文档;历史数据从1993年开始,按月更新。
|
78
|
+
def china_data_eci(indic_id: '', indic_name: '', begin_date: '',
|
79
|
+
end_date: '', field: '')
|
80
|
+
api_path = format(CHINADATAECI, indic_id, indic_name, begin_date,
|
81
|
+
end_date, field)
|
82
|
+
fetch_data api_path
|
83
|
+
end
|
84
|
+
|
85
|
+
# 包含中国PMI、汇丰中国PMI数据,具体指标可参见API文档;历史数据从2005年开始,按月更新。
|
86
|
+
def china_data_pmi(indic_id: '', indic_name: '', begin_date: '',
|
87
|
+
end_date: '', field: '')
|
88
|
+
api_path = format(CHINADATAPMI, indic_id, indic_name, begin_date,
|
89
|
+
end_date, field)
|
90
|
+
fetch_data api_path
|
91
|
+
end
|
92
|
+
|
93
|
+
# 包含中国消费者景气指数数据,具体指标可参见API文档;历史数据从1993年开始,按月更新。
|
94
|
+
def china_data_cci(indic_id: '', indic_name: '', begin_date: '',
|
95
|
+
end_date: '', field: '')
|
96
|
+
api_path = format(CHINADATACCI, indic_id, indic_name, begin_date,
|
97
|
+
end_date, field)
|
98
|
+
fetch_data api_path
|
99
|
+
end
|
100
|
+
|
101
|
+
# 包含中国经济学家景气指数数据,具体指标可参见API文档;历史数据从2006年开始,按季更新。
|
102
|
+
def china_data_economists_boom_index(indic_id: '', indic_name: '',
|
103
|
+
begin_date: '', end_date: '',
|
104
|
+
field: '')
|
105
|
+
api_path = format(CHINADATAECONOMISTSBOOMINDEX, indic_id, indic_name,
|
106
|
+
begin_date, end_date, field)
|
107
|
+
fetch_data api_path
|
108
|
+
end
|
109
|
+
|
110
|
+
# 包含中国工业景气指数数据,具体指标可参见API文档;历史数据从1999年开始,按季更新。
|
111
|
+
def china_data_industrial_business_climate_index(indic_id: '',
|
112
|
+
indic_name: '',
|
113
|
+
begin_date: '',
|
114
|
+
end_date: '', field: '')
|
115
|
+
api_path = format(CHINADATAINDUSTRIALBUSINESSCLIMATEINDEX, indic_id,
|
116
|
+
indic_name, begin_date, end_date, field)
|
117
|
+
fetch_data api_path
|
118
|
+
end
|
119
|
+
|
120
|
+
# 包含中国居民消费价格指数(CPI)数据,,含36大中城市CPI数据,具体指标可参见API文档;历史数据从1993年开始,按月更新。
|
121
|
+
def china_data_cpi(indic_id: '', indic_name: '', begin_date: '',
|
122
|
+
end_date: '', field: '')
|
123
|
+
api_path = format(CHINADATACPI, indic_id, indic_name, begin_date,
|
124
|
+
end_date, field)
|
125
|
+
fetch_data api_path
|
126
|
+
end
|
127
|
+
|
128
|
+
# 包含中国工业价格指数数据,如PPI、分行业PPI、PPIRM,具体指标可参见API文档;历史数据从1993年开始,按月更新。
|
129
|
+
def china_data_ppi(indic_id: '', indic_name: '', begin_date: '',
|
130
|
+
end_date: '', field: '')
|
131
|
+
api_path = format(CHINADATAPPI, indic_id, indic_name, begin_date,
|
132
|
+
end_date, field)
|
133
|
+
fetch_data api_path
|
134
|
+
end
|
135
|
+
|
136
|
+
# 包含中国工业数据,如工业生产运行、工业企业主要经济指标,具体指标可参见API文档;历史数据从1993年开始,按月更新。
|
137
|
+
def china_data_industry(indic_id: '', indic_name: '', begin_date: '',
|
138
|
+
end_date: '', field: '')
|
139
|
+
api_path = format(CHINADATAINDUSTRY, indic_id, indic_name, begin_date,
|
140
|
+
end_date, field)
|
141
|
+
fetch_data api_path
|
142
|
+
end
|
143
|
+
|
144
|
+
# 包含中国社会消费品零售数据,具体指标可参见API文档;历史数据从1984年开始,按月更新。
|
145
|
+
def china_data_retail_sales(indic_id: '', indic_name: '', begin_date: '',
|
146
|
+
end_date: '', field: '')
|
147
|
+
api_path = format(CHINADATARETAILSALES, indic_id, indic_name,
|
148
|
+
begin_date, end_date, field)
|
149
|
+
fetch_data api_path
|
150
|
+
end
|
151
|
+
|
152
|
+
# 包含中国城镇、农村居民家庭收支数据,具体指标可参见API文档;历史数据从1984年开始,按季更新。
|
153
|
+
def china_data_resident_income_exp(indic_id: '', indic_name: '',
|
154
|
+
begin_date: '', end_date: '',
|
155
|
+
field: '')
|
156
|
+
api_path = format(CHINADATARESIDENTINCOMEEXP, indic_id, indic_name,
|
157
|
+
begin_date, end_date, field)
|
158
|
+
fetch_data api_path
|
159
|
+
end
|
160
|
+
|
161
|
+
# 包含中国固定资产投资数据,如投资额、资金来源、分行业投资,具体指标可参见API文档;历史数据从1990年开始,按月更新。
|
162
|
+
def china_data_fai(indic_id: '', indic_name: '', begin_date: '',
|
163
|
+
end_date: '', field: '')
|
164
|
+
api_path = format(CHINADATAFAI, indic_id, indic_name, begin_date,
|
165
|
+
end_date, field)
|
166
|
+
fetch_data api_path
|
167
|
+
end
|
168
|
+
|
169
|
+
# 包含中国房地产开发数据,如房地产景气指数、投资额、来源、商品房销售、土地开发购置,具体指标可参见API文档;历史数据从1991年开始,按月更新。
|
170
|
+
def china_data_real_estate(indic_id: '', indic_name: '', begin_date: '',
|
171
|
+
end_date: '', field: '')
|
172
|
+
api_path = format(CHINADATAREALESTATE, indic_id, indic_name, begin_date,
|
173
|
+
end_date, field)
|
174
|
+
fetch_data api_path
|
175
|
+
end
|
176
|
+
|
177
|
+
# 包含中国进出口数据,具体指标可参见API文档;历史数据从1990年开始,按月更新。
|
178
|
+
def china_data_foreign_trade(indic_id: '', indic_name: '', begin_date: '',
|
179
|
+
end_date: '', field: '')
|
180
|
+
api_path = format(CHINADATAFOREIGNTRADE, indic_id, indic_name,
|
181
|
+
begin_date, end_date, field)
|
182
|
+
fetch_data api_path
|
183
|
+
end
|
184
|
+
|
185
|
+
# 包含中国外商直接投资数据,具体指标可参见API文档;历史数据从1999年开始,按月更新。
|
186
|
+
def china_data_fdi(indic_id: '', indic_name: '', begin_date: '',
|
187
|
+
end_date: '', field: '')
|
188
|
+
api_path = format(CHINADATAFDI, indic_id, indic_name, begin_date,
|
189
|
+
end_date, field)
|
190
|
+
fetch_data api_path
|
191
|
+
end
|
192
|
+
|
193
|
+
# 包含中国货币统计数据,如货币供应、黄金外汇储备,具体指标可参见API文档;历史数据从1951年开始,按月更新。
|
194
|
+
def china_data_money_statistics(indic_id: '', indic_name: '',
|
195
|
+
begin_date: '', end_date: '', field: '')
|
196
|
+
api_path = format(CHINADATAMONEYSTATISTICS, indic_id, indic_name,
|
197
|
+
begin_date, end_date, field)
|
198
|
+
fetch_data api_path
|
199
|
+
end
|
200
|
+
|
201
|
+
# 包含中国社会融资规模数据,具体指标可参见API文档;历史数据从2002年开始,按月更新。
|
202
|
+
def china_data_all_system_financing(indic_id: '', indic_name: '',
|
203
|
+
begin_date: '', end_date: '',
|
204
|
+
field: '')
|
205
|
+
api_path = format(CHINADATAALLSYSTEMFINANCING, indic_id, indic_name,
|
206
|
+
begin_date, end_date, field)
|
207
|
+
fetch_data api_path
|
208
|
+
end
|
209
|
+
|
210
|
+
# 包含中国金融机构存贷款数据,具体指标可参见API文档;历史数据从1978年开始,按月更新。
|
211
|
+
def china_data_lending_deposit(indic_id: '', indic_name: '',
|
212
|
+
begin_date: '', end_date: '', field: '')
|
213
|
+
api_path = format(CHINADATALENDINGDEPOSIT, indic_id, indic_name,
|
214
|
+
begin_date, end_date, field)
|
215
|
+
fetch_data api_path
|
216
|
+
end
|
217
|
+
|
218
|
+
# 包含中国金融机构信贷收支表数据,具体指标可参见API文档;历史数据从1952年开始,按月更新。
|
219
|
+
def china_data_credit_funds_table(indic_id: '', indic_name: '',
|
220
|
+
begin_date: '', end_date: '',
|
221
|
+
field: '')
|
222
|
+
api_path = format(CHINADATACREDITFUNDSTABLE, indic_id, indic_name,
|
223
|
+
begin_date, end_date, field)
|
224
|
+
fetch_data api_path
|
225
|
+
end
|
226
|
+
|
227
|
+
# 包含中国人民银行公开市场回购数据,如正回购、逆回购,具体指标可参见API文档;历史数据从1952年开始,按月更新。
|
228
|
+
def china_data_open_market_operation(indic_id: '', indic_name: '',
|
229
|
+
begin_date: '', end_date: '',
|
230
|
+
field: '')
|
231
|
+
api_path = format(CHINADATAOPENMARKETOPERATION, indic_id, indic_name,
|
232
|
+
begin_date, end_date, field)
|
233
|
+
fetch_data api_path
|
234
|
+
end
|
235
|
+
|
236
|
+
# 包含中国人民币汇率数据,如人民币汇率中间价、人民币汇率指数,具体指标可参见API文档;历史数据从1994年1月开始,按日更新。
|
237
|
+
def china_data_exchange_rate(indic_id: '', indic_name: '', begin_date: '',
|
238
|
+
end_date: '', field: '')
|
239
|
+
api_path = format(CHINADATAEXCHANGERATE, indic_id, indic_name,
|
240
|
+
begin_date, end_date, field)
|
241
|
+
fetch_data api_path
|
242
|
+
end
|
243
|
+
|
244
|
+
# 包含中国官方发布的存贷款利率数据,具体指标可参见API文档;历史数据从1949年8月开始,按日更新。
|
245
|
+
def china_data_interest_rate_lending_deposit(indic_id: '', indic_name: '',
|
246
|
+
begin_date: '', end_date: '',
|
247
|
+
field: '')
|
248
|
+
api_path = format(CHINADATAINTERESTRATELENDINGDEPOSIT, indic_id,
|
249
|
+
indic_name, begin_date, end_date, field)
|
250
|
+
fetch_data api_path
|
251
|
+
end
|
252
|
+
|
253
|
+
# 包含中国银行间同业拆借(Shibor)数据,具体指标可参见API文档;历史数据从2006年10月开始,按日更新。
|
254
|
+
def china_data_interest_rate_shibor(indic_id: '', indic_name: '',
|
255
|
+
begin_date: '', end_date: '',
|
256
|
+
field: '')
|
257
|
+
api_path = format(CHINADATAINTERESTRATESHIBOR, indic_id, indic_name,
|
258
|
+
begin_date, end_date, field)
|
259
|
+
fetch_data api_path
|
260
|
+
end
|
261
|
+
|
262
|
+
# 包含中国银行间同业拆借数据,如质押式回购、买断式回购,具体指标可参见API文档;历史数据从2005年1月开始,按日更新。
|
263
|
+
def china_data_interest_rate_interbank_repo(indic_id: '', indic_name: '',
|
264
|
+
begin_date: '', end_date: '',
|
265
|
+
field: '')
|
266
|
+
api_path = format(CHINADATAINTERESTRATEINTERBANKREPO, indic_id,
|
267
|
+
indic_name, begin_date, end_date, field)
|
268
|
+
fetch_data api_path
|
269
|
+
end
|
270
|
+
|
271
|
+
# 包含中国财政数据,如全国财政收支、各省及直辖市财政收入,具体指标可参见API文档;历史数据从1990年开始,按月更新。
|
272
|
+
def china_data_finance(indic_id: '', indic_name: '', begin_date: '',
|
273
|
+
end_date: '', field: '')
|
274
|
+
api_path = format(CHINADATAFINANCE, indic_id, indic_name, begin_date,
|
275
|
+
end_date, field)
|
276
|
+
fetch_data api_path
|
277
|
+
end
|
278
|
+
|
279
|
+
# 包含中国上海黄金收盘价数据,具体指标可参见API文档;历史数据从2004年9月开始,按日更新。
|
280
|
+
def china_data_gold_close_price(indic_id: '', indic_name: '',
|
281
|
+
begin_date: '', end_date: '', field: '')
|
282
|
+
api_path = format(CHINADATAGOLDCLOSEPRICE, indic_id, indic_name,
|
283
|
+
begin_date, end_date, field)
|
284
|
+
fetch_data api_path
|
285
|
+
end
|
286
|
+
|
287
|
+
# 包含美国GDP数据,具体指标可参见API文档;历史数据从1947年开始,按季更新。
|
288
|
+
def us_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
289
|
+
end_date: '', field: '')
|
290
|
+
api_path = format(USDATAGDP, indic_id, indic_name, begin_date, end_date,
|
291
|
+
field)
|
292
|
+
fetch_data api_path
|
293
|
+
end
|
294
|
+
|
295
|
+
# 包含美国对外贸易数据,具体指标可参见API文档;历史数据从1992年开始,按月更新。
|
296
|
+
def us_data_foreign_trade(indic_id: '', indic_name: '', begin_date: '',
|
297
|
+
end_date: '', field: '')
|
298
|
+
api_path = format(USDATAFOREIGNTRADE, indic_id, indic_name, begin_date,
|
299
|
+
end_date, field)
|
300
|
+
fetch_data api_path
|
301
|
+
end
|
302
|
+
|
303
|
+
# 包含美国价格指数数据,如CPI、PPI、进出口价格指数,具体指标可参见API文档;历史数据从1913年开始,按月更新。
|
304
|
+
def us_data_price_index(indic_id: '', indic_name: '', begin_date: '',
|
305
|
+
end_date: '', field: '')
|
306
|
+
api_path = format(USDATAPRICEINDEX, indic_id, indic_name, begin_date,
|
307
|
+
end_date, field)
|
308
|
+
fetch_data api_path
|
309
|
+
end
|
310
|
+
|
311
|
+
# 包含美国就业与失业数据,如非农就业、ADP就业报告,具体指标可参见API文档;历史数据从1939年开始,按月更新。
|
312
|
+
def us_data_employment_unemployment(indic_id: '', indic_name: '',
|
313
|
+
begin_date: '', end_date: '',
|
314
|
+
field: '')
|
315
|
+
api_path = format(USDATAEMPLOYMENTUNEMPLOYMENT, indic_id, indic_name,
|
316
|
+
begin_date, end_date, field)
|
317
|
+
fetch_data api_path
|
318
|
+
end
|
319
|
+
|
320
|
+
# 包含美国利率数据,如联邦基金利率、国债收益率、Libor美元,具体指标可参见API文档;历史数据从1954年7月开始,按日更新。
|
321
|
+
def us_data_interest_rate(indic_id: '', indic_name: '', begin_date: '',
|
322
|
+
end_date: '', field: '')
|
323
|
+
api_path = format(USDATAINTERESTRATE, indic_id, indic_name, begin_date,
|
324
|
+
end_date, field)
|
325
|
+
fetch_data api_path
|
326
|
+
end
|
327
|
+
|
328
|
+
# 包含美国汇率数据,如美元对主要货币、美元指数,具体指标可参见API文档;历史数据从1973年1月开始,按日更新。
|
329
|
+
def us_data_exchange_rate(indic_id: '', indic_name: '', begin_date: '',
|
330
|
+
end_date: '', field: '')
|
331
|
+
api_path = format(USDATAEXCHANGERATE, indic_id, indic_name, begin_date,
|
332
|
+
end_date, field)
|
333
|
+
fetch_data api_path
|
334
|
+
end
|
335
|
+
|
336
|
+
# 包含美国货币供应量数据,具体指标可参见API文档;历史数据从1959年开始,按月更新。
|
337
|
+
def us_data_money_supply(indic_id: '', indic_name: '', begin_date: '',
|
338
|
+
end_date: '', field: '')
|
339
|
+
api_path = format(USDATAMONEYSUPPLY, indic_id, indic_name, begin_date,
|
340
|
+
end_date, field)
|
341
|
+
fetch_data api_path
|
342
|
+
end
|
343
|
+
|
344
|
+
# 包含美国消费信贷数据,具体指标可参见API文档;历史数据从1943年开始,按月更新。
|
345
|
+
def us_data_consumer_credit(indic_id: '', indic_name: '', begin_date: '',
|
346
|
+
end_date: '', field: '')
|
347
|
+
api_path = format(USDATACONSUMERCREDIT, indic_id, indic_name,
|
348
|
+
begin_date, end_date, field)
|
349
|
+
fetch_data api_path
|
350
|
+
end
|
351
|
+
|
352
|
+
# 包含美国景气指数数据,如PMI、消费者信息指数、ECRI领先指标,具体指标可参见API文档;历史数据从1948年开始,按月更新。
|
353
|
+
def us_data_climate_index(indic_id: '', indic_name: '', begin_date: '',
|
354
|
+
end_date: '', field: '')
|
355
|
+
api_path = format(USDATACLIMATEINDEX, indic_id, indic_name, begin_date,
|
356
|
+
end_date, field)
|
357
|
+
fetch_data api_path
|
358
|
+
end
|
359
|
+
|
360
|
+
# 包含美国工业中耐用品数据,具体指标可参见API文档;历史数据从1992年开始,按月更新。
|
361
|
+
def us_data_durable_goods(indic_id: '', indic_name: '', begin_date: '',
|
362
|
+
end_date: '', field: '')
|
363
|
+
api_path = format(USDATADURABLEGOODS, indic_id, indic_name, begin_date,
|
364
|
+
end_date, field)
|
365
|
+
fetch_data api_path
|
366
|
+
end
|
367
|
+
|
368
|
+
# 包含美国房地产数据,具体指标可参见API文档;历史数据从1959年开始,按月更新。
|
369
|
+
def us_data_real_estate(indic_id: '', indic_name: '', begin_date: '',
|
370
|
+
end_date: '', field: '')
|
371
|
+
api_path = format(USDATAREALESTATE, indic_id, indic_name, begin_date,
|
372
|
+
end_date, field)
|
373
|
+
fetch_data api_path
|
374
|
+
end
|
375
|
+
|
376
|
+
# 包含美国国内贸易数据,具体指标可参见API文档;历史数据从1992年开始,按月更新。
|
377
|
+
def us_data_domestic_trade(indic_id: '', indic_name: '', begin_date: '',
|
378
|
+
end_date: '', field: '')
|
379
|
+
api_path = format(USDATADOMESTICTRADE, indic_id, indic_name, begin_date,
|
380
|
+
end_date, field)
|
381
|
+
fetch_data api_path
|
382
|
+
end
|
383
|
+
|
384
|
+
# 包含欧盟GDP数据,具体指标可参见API文档;历史数据从1995年开始,按季更新。
|
385
|
+
def eu_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
386
|
+
end_date: '', field: '')
|
387
|
+
api_path = format(EUDATAGDP, indic_id, indic_name, begin_date, end_date,
|
388
|
+
field)
|
389
|
+
fetch_data api_path
|
390
|
+
end
|
391
|
+
|
392
|
+
# 包含欧盟对外贸易数据,具体指标可参见API文档;历史数据从2013年开始,按月更新。
|
393
|
+
def eu_data_foreign_trade(indic_id: '', indic_name: '', begin_date: '',
|
394
|
+
end_date: '', field: '')
|
395
|
+
api_path = format(EUDATAFOREIGNTRADE, indic_id, indic_name, begin_date,
|
396
|
+
end_date, field)
|
397
|
+
fetch_data api_path
|
398
|
+
end
|
399
|
+
|
400
|
+
# 包含欧盟价格指数数据,如CPI、PPI、单位进出口价格指数,具体指标可参见API文档;历史数据从1996年开始,按月更新。
|
401
|
+
def eu_data_price_index(indic_id: '', indic_name: '', begin_date: '',
|
402
|
+
end_date: '', field: '')
|
403
|
+
api_path = format(EUDATAPRICEINDEX, indic_id, indic_name, begin_date,
|
404
|
+
end_date, field)
|
405
|
+
fetch_data api_path
|
406
|
+
end
|
407
|
+
|
408
|
+
# 包含欧盟就业与失业数据,如就业失业率、劳动力成本指数,具体指标可参见API文档;历史数据从1993年开始,按月更新。
|
409
|
+
def eu_data_employment_unemployment(indic_id: '', indic_name: '',
|
410
|
+
begin_date: '', end_date: '',
|
411
|
+
field: '')
|
412
|
+
api_path = format(EUDATAEMPLOYMENTUNEMPLOYMENT, indic_id, indic_name,
|
413
|
+
begin_date, end_date, field)
|
414
|
+
fetch_data api_path
|
415
|
+
end
|
416
|
+
|
417
|
+
# 包含欧盟利率数据,如Libor、政府债券收益率、欧元区公债收益率,具体指标可参见API文档;历史数据从1980年1月开始,按日更新。
|
418
|
+
def eu_data_interest_rate(indic_id: '', indic_name: '', begin_date: '',
|
419
|
+
end_date: '', field: '')
|
420
|
+
api_path = format(EUDATAINTERESTRATE, indic_id, indic_name, begin_date,
|
421
|
+
end_date, field)
|
422
|
+
fetch_data api_path
|
423
|
+
end
|
424
|
+
|
425
|
+
# 包含欧盟汇率数据,具体指标可参见API文档;历史数据从1999年1月开始,按日更新。
|
426
|
+
def eu_data_exchange_rate(indic_id: '', indic_name: '', begin_date: '',
|
427
|
+
end_date: '', field: '')
|
428
|
+
api_path = format(EUDATAEXCHANGERATE, indic_id, indic_name, begin_date,
|
429
|
+
end_date, field)
|
430
|
+
fetch_data api_path
|
431
|
+
end
|
432
|
+
|
433
|
+
# 包含欧盟金融数据,如货币供应、官方储备资产,具体指标可参见API文档;历史数据从1980年开始,按月更新。
|
434
|
+
def eu_data_banking(indic_id: '', indic_name: '', begin_date: '',
|
435
|
+
end_date: '', field: '')
|
436
|
+
api_path = format(EUDATABANKING, indic_id, indic_name, begin_date,
|
437
|
+
end_date, field)
|
438
|
+
fetch_data api_path
|
439
|
+
end
|
440
|
+
|
441
|
+
# 包含欧盟景气指数数据,如PMI、经济景气指数、消费者信息指数,具体指标可参见API文档;历史数据从1999年开始,按月更新。
|
442
|
+
def eu_data_climate_index(indic_id: '', indic_name: '', begin_date: '',
|
443
|
+
end_date: '', field: '')
|
444
|
+
api_path = format(EUDATACLIMATEINDEX, indic_id, indic_name, begin_date,
|
445
|
+
end_date, field)
|
446
|
+
fetch_data api_path
|
447
|
+
end
|
448
|
+
|
449
|
+
# 包含欧盟工业数据,如营建产出、供应生产指数,具体指标可参见API文档;历史数据从2013年开始,按月更新。
|
450
|
+
def eu_data_industry(indic_id: '', indic_name: '', begin_date: '',
|
451
|
+
end_date: '', field: '')
|
452
|
+
api_path = format(EUDATAINDUSTRY, indic_id, indic_name, begin_date,
|
453
|
+
end_date, field)
|
454
|
+
fetch_data api_path
|
455
|
+
end
|
456
|
+
|
457
|
+
# 包含欧盟零售销售数据,具体指标可参见API文档;历史数据从2013年开始,按月更新。
|
458
|
+
def eu_data_retail(indic_id: '', indic_name: '', begin_date: '',
|
459
|
+
end_date: '', field: '')
|
460
|
+
api_path = format(EUDATARETAIL, indic_id, indic_name, begin_date,
|
461
|
+
end_date, field)
|
462
|
+
fetch_data api_path
|
463
|
+
end
|
464
|
+
|
465
|
+
# 包含瑞士GDP数据,具体指标可参见API文档;历史数据从1980年开始,按季更新。
|
466
|
+
def switzerland_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
467
|
+
end_date: '', field: '')
|
468
|
+
api_path = format(SWITZERLANDDATAGDP, indic_id, indic_name, begin_date,
|
469
|
+
end_date, field)
|
470
|
+
fetch_data api_path
|
471
|
+
end
|
472
|
+
|
473
|
+
# 包含瑞士价格指数数据,如CPI、PPI,具体指标可参见API文档;历史数据从1922年开始,按月更新。
|
474
|
+
def switzerland_data_price_index(indic_id: '', indic_name: '',
|
475
|
+
begin_date: '', end_date: '', field: '')
|
476
|
+
api_path = format(SWITZERLANDDATAPRICEINDEX, indic_id, indic_name,
|
477
|
+
begin_date, end_date, field)
|
478
|
+
fetch_data api_path
|
479
|
+
end
|
480
|
+
|
481
|
+
# 包含瑞士SVME采购经理人指数数据,具体指标可参见API文档;历史数据从2007年开始,按月更新。
|
482
|
+
def switzerland_data_climate_index(indic_id: '', indic_name: '',
|
483
|
+
begin_date: '', end_date: '',
|
484
|
+
field: '')
|
485
|
+
api_path = format(SWITZERLANDDATACLIMATEINDEX, indic_id, indic_name,
|
486
|
+
begin_date, end_date, field)
|
487
|
+
fetch_data api_path
|
488
|
+
end
|
489
|
+
|
490
|
+
# 包含瑞士货币供应量数据,具体指标可参见API文档;历史数据从1975年开始,按月更新。
|
491
|
+
def switzerland_data_money_supply(indic_id: '', indic_name: '',
|
492
|
+
begin_date: '', end_date: '',
|
493
|
+
field: '')
|
494
|
+
api_path = format(SWITZERLANDDATAMONEYSUPPLY, indic_id, indic_name,
|
495
|
+
begin_date, end_date, field)
|
496
|
+
fetch_data api_path
|
497
|
+
end
|
498
|
+
|
499
|
+
# 包含瑞典GDP数据,具体指标可参见API文档;历史数据从1993年开始,按季更新。
|
500
|
+
def sweden_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
501
|
+
end_date: '', field: '')
|
502
|
+
api_path = format(SWEDENDATAGDP, indic_id, indic_name, begin_date,
|
503
|
+
end_date, field)
|
504
|
+
fetch_data api_path
|
505
|
+
end
|
506
|
+
|
507
|
+
# 包含瑞典价格指数数据,如CPI、PPI、进出口价格指数,具体指标可参见API文档;历史数据从1980年开始,按月更新。
|
508
|
+
def sweden_data_price_index(indic_id: '', indic_name: '', begin_date: '',
|
509
|
+
end_date: '', field: '')
|
510
|
+
api_path = format(SWEDENDATAPRICEINDEX, indic_id, indic_name,
|
511
|
+
begin_date, end_date, field)
|
512
|
+
fetch_data api_path
|
513
|
+
end
|
514
|
+
|
515
|
+
# 包含瑞典对外贸易数据,具体指标可参见API文档;历史数据从1975年开始,按月更新。
|
516
|
+
def sweden_data_foreign_trade(indic_id: '', indic_name: '',
|
517
|
+
begin_date: '', end_date: '', field: '')
|
518
|
+
api_path = format(SWEDENDATAFOREIGNTRADE, indic_id, indic_name,
|
519
|
+
begin_date, end_date, field)
|
520
|
+
fetch_data api_path
|
521
|
+
end
|
522
|
+
|
523
|
+
# 包含韩国GDP数据,具体指标可参见API文档;历史数据从1970年开始,按季更新。
|
524
|
+
def korea_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
525
|
+
end_date: '', field: '')
|
526
|
+
api_path = format(KOREADATAGDP, indic_id, indic_name, begin_date,
|
527
|
+
end_date, field)
|
528
|
+
fetch_data api_path
|
529
|
+
end
|
530
|
+
|
531
|
+
# 包含韩国价格指数数据,具体指标可参见API文档;历史数据从1965年开始,按月更新。
|
532
|
+
def korea_data_price_index(indic_id: '', indic_name: '', begin_date: '',
|
533
|
+
end_date: '', field: '')
|
534
|
+
api_path = format(KOREADATAPRICEINDEX, indic_id, indic_name, begin_date,
|
535
|
+
end_date, field)
|
536
|
+
fetch_data api_path
|
537
|
+
end
|
538
|
+
|
539
|
+
# 包含韩国就业与失业数据,具体指标可参见API文档;历史数据从1999年开始,按月更新。
|
540
|
+
def korea_data_employment_unemployment(indic_id: '', indic_name: '',
|
541
|
+
begin_date: '', end_date: '',
|
542
|
+
field: '')
|
543
|
+
api_path = format(KOREADATAEMPLOYMENTUNEMPLOYMENT, indic_id, indic_name,
|
544
|
+
begin_date, end_date, field)
|
545
|
+
fetch_data api_path
|
546
|
+
end
|
547
|
+
|
548
|
+
# 包含韩国利率数据,具体指标可参见API文档;历史数据从1995年1月开始,按日更新。
|
549
|
+
def korea_data_interest_rates(indic_id: '', indic_name: '',
|
550
|
+
begin_date: '', end_date: '', field: '')
|
551
|
+
api_path = format(KOREADATAINTERESTRATES, indic_id, indic_name,
|
552
|
+
begin_date, end_date, field)
|
553
|
+
fetch_data api_path
|
554
|
+
end
|
555
|
+
|
556
|
+
# 包含韩国汇率数据,具体指标可参见API文档;历史数据从1964年5月开始,按日更新。
|
557
|
+
def korea_data_exchange_rate(indic_id: '', indic_name: '', begin_date: '',
|
558
|
+
end_date: '', field: '')
|
559
|
+
api_path = format(KOREADATAEXCHANGERATE, indic_id, indic_name,
|
560
|
+
begin_date, end_date, field)
|
561
|
+
fetch_data api_path
|
562
|
+
end
|
563
|
+
|
564
|
+
# 包含韩国货币供应量数据,具体指标可参见API文档;历史数据从1970年开始,按月更新。
|
565
|
+
def korea_data_money_supply(indic_id: '', indic_name: '', begin_date: '',
|
566
|
+
end_date: '', field: '')
|
567
|
+
api_path = format(KOREADATAMONEYSUPPLY, indic_id, indic_name,
|
568
|
+
begin_date, end_date, field)
|
569
|
+
fetch_data api_path
|
570
|
+
end
|
571
|
+
|
572
|
+
# 包含韩国景气指数数据,如企业景气调查指数、消费者调查指数、PMI、消费者信心指数,具体指标可参见API文档;历史数据从2008年开始,按月更新。
|
573
|
+
def korea_data_climate_index(indic_id: '', indic_name: '', begin_date: '',
|
574
|
+
end_date: '', field: '')
|
575
|
+
api_path = format(KOREADATACLIMATEINDEX, indic_id, indic_name,
|
576
|
+
begin_date, end_date, field)
|
577
|
+
fetch_data api_path
|
578
|
+
end
|
579
|
+
|
580
|
+
# 包含韩国外债数据,具体指标可参见API文档;历史数据从1994年开始,按季更新。
|
581
|
+
def korea_data_external_debt(indic_id: '', indic_name: '', begin_date: '',
|
582
|
+
end_date: '', field: '')
|
583
|
+
api_path = format(KOREADATA_EXTERNALDEBT, indic_id, indic_name,
|
584
|
+
begin_date, end_date, field)
|
585
|
+
fetch_data api_path
|
586
|
+
end
|
587
|
+
|
588
|
+
# 包含韩国工业与服务业数据,如工业指数、制造业指数、服务业活动指数,具体指标可参见API文档;历史数据从1970年开始,按月更新。
|
589
|
+
def korea_data_industryand_service(indic_id: '', indic_name: '',
|
590
|
+
begin_date: '', end_date: '',
|
591
|
+
field: '')
|
592
|
+
api_path = format(KOREADATAINDUSTRYANDSERVICE, indic_id, indic_name,
|
593
|
+
begin_date, end_date, field)
|
594
|
+
fetch_data api_path
|
595
|
+
end
|
596
|
+
|
597
|
+
# 包含韩国房地产数据,具体指标可参见API文档;历史数据从1987年开始,按月更新。
|
598
|
+
def korea_data_real_estate(indic_id: '', indic_name: '', begin_date: '',
|
599
|
+
end_date: '', field: '')
|
600
|
+
api_path = format(KOREADATAREALESTATE, indic_id, indic_name, begin_date,
|
601
|
+
end_date, field)
|
602
|
+
fetch_data api_path
|
603
|
+
end
|
604
|
+
|
605
|
+
# 包含澳大利亚GDP数据,具体指标可参见API文档;历史数据从1959年开始,按季更新。
|
606
|
+
def australia_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
607
|
+
end_date: '', field: '')
|
608
|
+
api_path = format(AUSTRALIADATAGDP, indic_id, indic_name, begin_date,
|
609
|
+
end_date, field)
|
610
|
+
fetch_data api_path
|
611
|
+
end
|
612
|
+
|
613
|
+
# 包含澳大利亚贸易数据,如对外贸易、零售销售,具体指标可参见API文档;历史数据从1971年开始,按月更新。
|
614
|
+
def australia_data_foreign_trade(indic_id: '', indic_name: '',
|
615
|
+
begin_date: '', end_date: '', field: '')
|
616
|
+
api_path = format(AUSTRALIADATAFOREIGNTRADE, indic_id, indic_name,
|
617
|
+
begin_date, end_date, field)
|
618
|
+
fetch_data api_path
|
619
|
+
end
|
620
|
+
|
621
|
+
# 包含澳大利亚价格指数数据,如消费者物价指数数据(CPI)、生产价格指数数据(PPI),具体指标可参见API文档;历史数据从1948年开始,按季更新。
|
622
|
+
def australia_data_price_index(indic_id: '', indic_name: '',
|
623
|
+
begin_date: '', end_date: '', field: '')
|
624
|
+
api_path = format(AUSTRALIADATAPRICEINDEX, indic_id, indic_name,
|
625
|
+
begin_date, end_date, field)
|
626
|
+
fetch_data api_path
|
627
|
+
end
|
628
|
+
|
629
|
+
# 包含澳大利亚就业和工资数据,如就业、ANZ总招聘广告,具体指标可参见API文档;历史数据从1978年开始,按月更新。
|
630
|
+
def australia_data_employment(indic_id: '', indic_name: '',
|
631
|
+
begin_date: '', end_date: '', field: '')
|
632
|
+
api_path = format(AUSTRALIADATAEMPLOYMENT, indic_id, indic_name,
|
633
|
+
begin_date, end_date, field)
|
634
|
+
fetch_data api_path
|
635
|
+
end
|
636
|
+
|
637
|
+
# 包含澳大利亚景气调查数据,如消费者信心指数、PMI、PSC、PCI,具体指标可参见API文档;历史数据从2002年开始,按月更新。
|
638
|
+
def australia_data_climate_index(indic_id: '', indic_name: '',
|
639
|
+
begin_date: '', end_date: '', field: '')
|
640
|
+
api_path = format(AUSTRALIADATACLIMATEINDEX, indic_id, indic_name,
|
641
|
+
begin_date, end_date, field)
|
642
|
+
fetch_data api_path
|
643
|
+
end
|
644
|
+
|
645
|
+
# 包含意大利国内生产总值(GDP)数据,具体指标可参见API文档;历史数据从1992年开始,按季更新。
|
646
|
+
def italy_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
647
|
+
end_date: '', field: '')
|
648
|
+
api_path = format(ITALYDATAGDP, indic_id, indic_name, begin_date,
|
649
|
+
end_date, field)
|
650
|
+
fetch_data api_path
|
651
|
+
end
|
652
|
+
|
653
|
+
# 包含意大利国际收支数据,具体指标可参见API文档;历史数据从1970年开始,按季更新。
|
654
|
+
def italy_data_payments_balance(indic_id: '', indic_name: '',
|
655
|
+
begin_date: '', end_date: '', field: '')
|
656
|
+
api_path = format(ITALYDATAPAYMENTSBALANCE, indic_id, indic_name,
|
657
|
+
begin_date, end_date, field)
|
658
|
+
fetch_data api_path
|
659
|
+
end
|
660
|
+
|
661
|
+
# 包含意大利价格指数数据,具体指标可参见API文档;历史数据从1996年开始,按月更新。
|
662
|
+
def italy_data_price_index(indic_id: '', indic_name: '', begin_date: '',
|
663
|
+
end_date: '', field: '')
|
664
|
+
api_path = format(ITALYDATAPRICEINDEX, indic_id, indic_name, begin_date,
|
665
|
+
end_date, field)
|
666
|
+
fetch_data api_path
|
667
|
+
end
|
668
|
+
|
669
|
+
# 包含意大利就业和工资数据,如就业、工资,具体指标可参见API文档;历史数据从1983年开始,按月更新。
|
670
|
+
def italy_data_employment(indic_id: '', indic_name: '', begin_date: '',
|
671
|
+
end_date: '', field: '')
|
672
|
+
api_path = format(ITALYDATAEMPLOYMENT, indic_id, indic_name, begin_date,
|
673
|
+
end_date, field)
|
674
|
+
fetch_data api_path
|
675
|
+
end
|
676
|
+
|
677
|
+
# 包含意大利财政数据,具体指标可参见API文档;历史数据从1995年开始,按年更新。
|
678
|
+
def italy_data_finance(indic_id: '', indic_name: '', begin_date: '',
|
679
|
+
end_date: '', field: '')
|
680
|
+
api_path = format(ITALYDATAFINANCE, indic_id, indic_name, begin_date,
|
681
|
+
end_date, field)
|
682
|
+
fetch_data api_path
|
683
|
+
end
|
684
|
+
|
685
|
+
# 包含意大利景气调查数据,具体指标可参见API文档;历史数据从1985年开始,按月更新。
|
686
|
+
def italy_data_climate_index(indic_id: '', indic_name: '', begin_date: '',
|
687
|
+
end_date: '', field: '')
|
688
|
+
api_path = format(ITALYDATACLIMATEINDEX, indic_id, indic_name,
|
689
|
+
begin_date, end_date, field)
|
690
|
+
fetch_data api_path
|
691
|
+
end
|
692
|
+
|
693
|
+
# 包含意大利利率数据,具体指标可参见API文档;历史数据从1980年开始,按月更新。
|
694
|
+
def italy_data_interest_rate(indic_id: '', indic_name: '', begin_date: '',
|
695
|
+
end_date: '', field: '')
|
696
|
+
api_path = format(ITALYDATAINTERESTRATE, indic_id, indic_name,
|
697
|
+
begin_date, end_date, field)
|
698
|
+
fetch_data api_path
|
699
|
+
end
|
700
|
+
|
701
|
+
# 包含西班牙GDP数据,具体指标可参见API文档;历史数据从1960年开始,按季更新。
|
702
|
+
def spain_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
703
|
+
end_date: '', field: '')
|
704
|
+
api_path = format(SPAINDATAGDP, indic_id, indic_name, begin_date,
|
705
|
+
end_date, field)
|
706
|
+
fetch_data api_path
|
707
|
+
end
|
708
|
+
|
709
|
+
# 包含西班牙对外贸易数据,具体指标可参见API文档;历史数据从1960年开始,按年更新。
|
710
|
+
def spain_data_foreign_trade(indic_id: '', indic_name: '', begin_date: '',
|
711
|
+
end_date: '', field: '')
|
712
|
+
api_path = format(SPAINDATAFOREIGNTRADE, indic_id, indic_name,
|
713
|
+
begin_date, end_date, field)
|
714
|
+
fetch_data api_path
|
715
|
+
end
|
716
|
+
|
717
|
+
# 包含西班牙国际收支数据,具体指标可参见API文档;历史数据从1980年开始,按年更新。
|
718
|
+
def spain_data_payments_balance(indic_id: '', indic_name: '',
|
719
|
+
begin_date: '', end_date: '', field: '')
|
720
|
+
api_path = format(SPAINDATAPAYMENTSBALANCE, indic_id, indic_name,
|
721
|
+
begin_date, end_date, field)
|
722
|
+
fetch_data api_path
|
723
|
+
end
|
724
|
+
|
725
|
+
# 包含西班牙金融数据,如货币供应、银行业,具体指标可参见API文档;历史数据从1960年开始,按年更新。
|
726
|
+
def spain_data_banking(indic_id: '', indic_name: '', begin_date: '',
|
727
|
+
end_date: '', field: '')
|
728
|
+
api_path = format(SPAINDATABANKING, indic_id, indic_name, begin_date,
|
729
|
+
end_date, field)
|
730
|
+
fetch_data api_path
|
731
|
+
end
|
732
|
+
|
733
|
+
# 包含西班牙交通运输和电信数据,具体指标可参见API文档;历史数据从1960年开始,按年更新。
|
734
|
+
def spain_data_transportation(indic_id: '', indic_name: '',
|
735
|
+
begin_date: '', end_date: '', field: '')
|
736
|
+
api_path = format(SPAINDATATRANSPORTATION, indic_id, indic_name,
|
737
|
+
begin_date, end_date, field)
|
738
|
+
fetch_data api_path
|
739
|
+
end
|
740
|
+
|
741
|
+
# 包含西班牙能源数据,具体指标可参见API文档;历史数据从1960年开始,按年更新。
|
742
|
+
def spain_data_energy(indic_id: '', indic_name: '', begin_date: '',
|
743
|
+
end_date: '', field: '')
|
744
|
+
api_path = format(SPAINDATAENERGY, indic_id, indic_name, begin_date,
|
745
|
+
end_date, field)
|
746
|
+
fetch_data api_path
|
747
|
+
end
|
748
|
+
|
749
|
+
# 包含西班牙财政数据,具体指标可参见API文档;历史数据从1995年开始,按年更新。
|
750
|
+
def spain_data_finance(indic_id: '', indic_name: '', begin_date: '',
|
751
|
+
end_date: '', field: '')
|
752
|
+
api_path = format(SPAINDATAFINANCE, indic_id, indic_name, begin_date,
|
753
|
+
end_date, field)
|
754
|
+
fetch_data api_path
|
755
|
+
end
|
756
|
+
|
757
|
+
# 包含加拿大GDP数据,具体指标可参见API文档;历史数据从1962年开始,按季更新。
|
758
|
+
def canada_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
759
|
+
end_date: '', field: '')
|
760
|
+
api_path = format(CANADADATAGDP, indic_id, indic_name, begin_date,
|
761
|
+
end_date, field)
|
762
|
+
fetch_data api_path
|
763
|
+
end
|
764
|
+
|
765
|
+
# 包含加拿大国际收支数据,具体指标可参见API文档;历史数据从2012年开始,按月更新。
|
766
|
+
def canada_data_payments_balance(indic_id: '', indic_name: '',
|
767
|
+
begin_date: '', end_date: '', field: '')
|
768
|
+
api_path = format(CANADADATAPAYMENTSBALANCE, indic_id, indic_name,
|
769
|
+
begin_date, end_date, field)
|
770
|
+
fetch_data api_path
|
771
|
+
end
|
772
|
+
|
773
|
+
# 包含加拿大对外贸易数据,具体指标可参见API文档;历史数据从2008年开始,按月更新。
|
774
|
+
def canada_data_foreign_trade(indic_id: '', indic_name: '',
|
775
|
+
begin_date: '', end_date: '', field: '')
|
776
|
+
api_path = format(CANADADATAFOREIGNTRADE, indic_id, indic_name,
|
777
|
+
begin_date, end_date, field)
|
778
|
+
fetch_data api_path
|
779
|
+
end
|
780
|
+
|
781
|
+
# 包含加拿大价格指数数据,如CPI、生产价格指数,具体指标可参见API文档;历史数据从1981年开始,按月更新。
|
782
|
+
def canada_data_price_index(indic_id: '', indic_name: '', begin_date: '',
|
783
|
+
end_date: '', field: '')
|
784
|
+
api_path = format(CANADADATAPRICEINDEX, indic_id, indic_name,
|
785
|
+
begin_date, end_date, field)
|
786
|
+
fetch_data api_path
|
787
|
+
end
|
788
|
+
|
789
|
+
# 包含加拿大金融数据,如货币供应量、国际储备,具体指标可参见API文档;历史数据从2002年开始,按月更新。
|
790
|
+
def canada_data_banking(indic_id: '', indic_name: '', begin_date: '',
|
791
|
+
end_date: '', field: '')
|
792
|
+
api_path = format(CANADADATABANKING, indic_id, indic_name, begin_date,
|
793
|
+
end_date, field)
|
794
|
+
fetch_data api_path
|
795
|
+
end
|
796
|
+
|
797
|
+
# 包含加拿大就业和工资数据,如就业、平均周薪,具体指标可参见API文档;历史数据从1991年开始,按月更新。
|
798
|
+
def canada_data_employment(indic_id: '', indic_name: '', begin_date: '',
|
799
|
+
end_date: '', field: '')
|
800
|
+
api_path = format(CANADADATAEMPLOYMENT, indic_id, indic_name,
|
801
|
+
begin_date, end_date, field)
|
802
|
+
fetch_data api_path
|
803
|
+
end
|
804
|
+
|
805
|
+
# 包含加拿大工业和制造业数据,具体指标可参见API文档;历史数据从2008年开始,按月更新。
|
806
|
+
def canada_data_manufacturing(indic_id: '', indic_name: '',
|
807
|
+
begin_date: '', end_date: '', field: '')
|
808
|
+
api_path = format(CANADADATAMANUFACTURING, indic_id, indic_name,
|
809
|
+
begin_date, end_date, field)
|
810
|
+
fetch_data api_path
|
811
|
+
end
|
812
|
+
|
813
|
+
# 包含加拿大房地产数据,如新房屋价格指数、建设许可,具体指标可参见API文档;历史数据从2003年开始,按月更新。
|
814
|
+
def canada_data_real_estate(indic_id: '', indic_name: '', begin_date: '',
|
815
|
+
end_date: '', field: '')
|
816
|
+
api_path = format(CANADADATAREALESTATE, indic_id, indic_name,
|
817
|
+
begin_date, end_date, field)
|
818
|
+
fetch_data api_path
|
819
|
+
end
|
820
|
+
|
821
|
+
# 包含加拿大景气调查数据,如Markit采购经理人指数、IVEY采购经理人指数,具体指标可参见API文档;历史数据从2011年开始,按月更新。
|
822
|
+
def canada_data_climate_index(indic_id: '', indic_name: '',
|
823
|
+
begin_date: '', end_date: '', field: '')
|
824
|
+
api_path = format(CANADADATACLIMATEINDEX, indic_id, indic_name,
|
825
|
+
begin_date, end_date, field)
|
826
|
+
fetch_data api_path
|
827
|
+
end
|
828
|
+
|
829
|
+
# 包含香港GDP数据,具体指标可参见API文档;历史数据从1973年开始,按季更新。
|
830
|
+
def hk_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
831
|
+
end_date: '', field: '')
|
832
|
+
api_path = format(HKDATAGDP, indic_id, indic_name, begin_date, end_date,
|
833
|
+
field)
|
834
|
+
fetch_data api_path
|
835
|
+
end
|
836
|
+
|
837
|
+
# 包含香港对外贸易及投资数据,具体指标可参见API文档;历史数据从1952年开始,按月更新。
|
838
|
+
def hk_data_foreign_trade(indic_id: '', indic_name: '', begin_date: '',
|
839
|
+
end_date: '', field: '')
|
840
|
+
api_path = format(HKDATAFOREIGNTRADE, indic_id, indic_name, begin_date,
|
841
|
+
end_date, field)
|
842
|
+
fetch_data api_path
|
843
|
+
end
|
844
|
+
|
845
|
+
# 包含香港价格指数数据,如CPI、PPI,具体指标可参见API文档;历史数据从1974年开始,按月更新。
|
846
|
+
def hk_data_price_index(indic_id: '', indic_name: '', begin_date: '',
|
847
|
+
end_date: '', field: '')
|
848
|
+
api_path = format(HKDATAPRICEINDEX, indic_id, indic_name, begin_date,
|
849
|
+
end_date, field)
|
850
|
+
fetch_data api_path
|
851
|
+
end
|
852
|
+
|
853
|
+
# 包含香港财政数据,具体指标可参见API文档;历史数据从2007年开始,按月更新。
|
854
|
+
def hk_data_finance(indic_id: '', indic_name: '', begin_date: '',
|
855
|
+
end_date: '', field: '')
|
856
|
+
api_path = format(HKDATAFINANCE, indic_id, indic_name, begin_date,
|
857
|
+
end_date, field)
|
858
|
+
fetch_data api_path
|
859
|
+
end
|
860
|
+
|
861
|
+
# 包含香港金融数据,如货币金融概况、流通货币,具体指标可参见API文档;历史数据从1968年开始,按月更新。
|
862
|
+
def hk_data_banking(indic_id: '', indic_name: '', begin_date: '',
|
863
|
+
end_date: '', field: '')
|
864
|
+
api_path = format(HKDATABANKING, indic_id, indic_name, begin_date,
|
865
|
+
end_date, field)
|
866
|
+
fetch_data api_path
|
867
|
+
end
|
868
|
+
|
869
|
+
# 包含香港工业数据,具体指标可参见API文档;历史数据从2009年开始,按季更新。
|
870
|
+
def hk_data_industry(indic_id: '', indic_name: '', begin_date: '',
|
871
|
+
end_date: '', field: '')
|
872
|
+
api_path = format(HKDATAINDUSTRY, indic_id, indic_name, begin_date,
|
873
|
+
end_date, field)
|
874
|
+
fetch_data api_path
|
875
|
+
end
|
876
|
+
|
877
|
+
# 包含香港零售业总销货数据,具体指标可参见API文档;历史数据从2001年开始,按月更新。
|
878
|
+
def hk_data_consumption(indic_id: '', indic_name: '', begin_date: '',
|
879
|
+
end_date: '', field: '')
|
880
|
+
api_path = format(HKDATACONSUMPTION, indic_id, indic_name, begin_date,
|
881
|
+
end_date, field)
|
882
|
+
fetch_data api_path
|
883
|
+
end
|
884
|
+
|
885
|
+
# 包含香港货物吞吐量数据,具体指标可参见API文档;历史数据从2010年开始,按季更新。
|
886
|
+
def hk_data_throughput(indic_id: '', indic_name: '', begin_date: '',
|
887
|
+
end_date: '', field: '')
|
888
|
+
api_path = format(HKDATATHROUGHPUT, indic_id, indic_name, begin_date,
|
889
|
+
end_date, field)
|
890
|
+
fetch_data api_path
|
891
|
+
end
|
892
|
+
|
893
|
+
# 包含香港人口与就业数据,具体指标可参见API文档;历史数据从1981年开始,按月更新。
|
894
|
+
def hk_data_employment(indic_id: '', indic_name: '', begin_date: '',
|
895
|
+
end_date: '', field: '')
|
896
|
+
api_path = format(HKDATAEMPLOYMENT, indic_id, indic_name, begin_date,
|
897
|
+
end_date, field)
|
898
|
+
fetch_data api_path
|
899
|
+
end
|
900
|
+
|
901
|
+
# 包含香港利率数据,如利率、银行同业拆息,具体指标可参见API文档;历史数据从1980年1月开始,按日更新。
|
902
|
+
def hk_data_interest_rate(indic_id: '', indic_name: '', begin_date: '',
|
903
|
+
end_date: '', field: '')
|
904
|
+
api_path = format(HKDATAINTERESTRATE, indic_id, indic_name, begin_date,
|
905
|
+
end_date, field)
|
906
|
+
fetch_data api_path
|
907
|
+
end
|
908
|
+
|
909
|
+
# 包含香港汇率数据,具体指标可参见API文档;历史数据从2007年7月开始,按日更新。
|
910
|
+
def hk_data_exchange_rate(indic_id: '', indic_name: '', begin_date: '',
|
911
|
+
end_date: '', field: '')
|
912
|
+
api_path = format(HKDATAEXCHANGERATE, indic_id, indic_name, begin_date,
|
913
|
+
end_date, field)
|
914
|
+
fetch_data api_path
|
915
|
+
end
|
916
|
+
|
917
|
+
# 包含香港房地产数据,具体指标可参见API文档;历史数据从2000年开始,按月更新。
|
918
|
+
def hk_data_real_estate(indic_id: '', indic_name: '', begin_date: '',
|
919
|
+
end_date: '', field: '')
|
920
|
+
api_path = format(HKDATAREALESTATE, indic_id, indic_name, begin_date,
|
921
|
+
end_date, field)
|
922
|
+
fetch_data api_path
|
923
|
+
end
|
924
|
+
|
925
|
+
# 包含香港旅游业数据,如访港旅客、酒店住宿,具体指标可参见API文档;历史数据从2010年开始,按月更新。
|
926
|
+
def hk_data_tourism(indic_id: '', indic_name: '', begin_date: '',
|
927
|
+
end_date: '', field: '')
|
928
|
+
api_path = format(HKDATATOURISM, indic_id, indic_name, begin_date,
|
929
|
+
end_date, field)
|
930
|
+
fetch_data api_path
|
931
|
+
end
|
932
|
+
|
933
|
+
# 包含印度GDP数据,具体指标可参见API文档;历史数据从2009年开始,按季更新。
|
934
|
+
def india_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
935
|
+
end_date: '', field: '')
|
936
|
+
api_path = format(INDIADATAGDP, indic_id, indic_name, begin_date,
|
937
|
+
end_date, field)
|
938
|
+
fetch_data api_path
|
939
|
+
end
|
940
|
+
|
941
|
+
# 包含印度国际收支数据,如外债、国际投资寸头,具体指标可参见API文档;历史数据从2006年开始,按季更新。
|
942
|
+
def india_data_payments_balance(indic_id: '', indic_name: '',
|
943
|
+
begin_date: '', end_date: '', field: '')
|
944
|
+
api_path = format(INDIADATAPAYMENTSBALANCE, indic_id, indic_name,
|
945
|
+
begin_date, end_date, field)
|
946
|
+
fetch_data api_path
|
947
|
+
end
|
948
|
+
|
949
|
+
# 包含印度价格指数数据,如CPI、批发价格指数、房屋价格指数,具体指标可参见API文档;历史数据从1995年开始,按月更新。
|
950
|
+
def india_data_price_index(indic_id: '', indic_name: '', begin_date: '',
|
951
|
+
end_date: '', field: '')
|
952
|
+
api_path = format(INDIADATAPRICEINDEX, indic_id, indic_name, begin_date,
|
953
|
+
end_date, field)
|
954
|
+
fetch_data api_path
|
955
|
+
end
|
956
|
+
|
957
|
+
# 包含印度旅游业数据,具体指标可参见API文档;历史数据从2005年开始,按月更新。
|
958
|
+
def india_data_tourism(indic_id: '', indic_name: '', begin_date: '',
|
959
|
+
end_date: '', field: '')
|
960
|
+
api_path = format(INDIADATATOURISM, indic_id, indic_name, begin_date,
|
961
|
+
end_date, field)
|
962
|
+
fetch_data api_path
|
963
|
+
end
|
964
|
+
|
965
|
+
# 包含印度能源数据,具体指标可参见API文档;历史数据从2007年开始,按月更新。
|
966
|
+
def india_data_energy(indic_id: '', indic_name: '', begin_date: '',
|
967
|
+
end_date: '', field: '')
|
968
|
+
api_path = format(INDIADATAENERGY, indic_id, indic_name, begin_date,
|
969
|
+
end_date, field)
|
970
|
+
fetch_data api_path
|
971
|
+
end
|
972
|
+
|
973
|
+
# 包含印度景气调查数据,具体指标可参见API文档;历史数据从2012年开始,按月更新。
|
974
|
+
def india_data_climate_index(indic_id: '', indic_name: '', begin_date: '',
|
975
|
+
end_date: '', field: '')
|
976
|
+
api_path = format(INDIADATACLIMATEINDEX, indic_id, indic_name,
|
977
|
+
begin_date, end_date, field)
|
978
|
+
fetch_data api_path
|
979
|
+
end
|
980
|
+
|
981
|
+
# 包含印度金融数据,如货币供应量、对外贸易,具体指标可参见API文档;历史数据从2011年开始,按周更新。
|
982
|
+
def india_data_banking(indic_id: '', indic_name: '', begin_date: '',
|
983
|
+
end_date: '', field: '')
|
984
|
+
api_path = format(INDIADATABANKING, indic_id, indic_name, begin_date,
|
985
|
+
end_date, field)
|
986
|
+
fetch_data api_path
|
987
|
+
end
|
988
|
+
|
989
|
+
# 包含印度工业数据,具体指标可参见API文档;历史数据从1981年开始,按月更新。
|
990
|
+
def india_data_industry(indic_id: '', indic_name: '', begin_date: '',
|
991
|
+
end_date: '', field: '')
|
992
|
+
api_path = format(INDIADATAINDUSTRY, indic_id, indic_name, begin_date,
|
993
|
+
end_date, field)
|
994
|
+
fetch_data api_path
|
995
|
+
end
|
996
|
+
|
997
|
+
# 包含印度对外贸易数据,具体指标可参见API文档;历史数据从1994年开始,按月更新。
|
998
|
+
def india_data_foreign_trade(indic_id: '', indic_name: '', begin_date: '',
|
999
|
+
end_date: '', field: '')
|
1000
|
+
api_path = format(INDIADATAFOREIGNTRADE, indic_id, indic_name,
|
1001
|
+
begin_date, end_date, field)
|
1002
|
+
fetch_data api_path
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
# 包含马来西亚GDP数据,具体指标可参见API文档;历史数据从2007年开始,按季更新。
|
1006
|
+
def malaysia_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
1007
|
+
end_date: '', field: '')
|
1008
|
+
api_path = format(MALAYSIADATAGDP, indic_id, indic_name, begin_date,
|
1009
|
+
end_date, field)
|
1010
|
+
fetch_data api_path
|
1011
|
+
end
|
1012
|
+
|
1013
|
+
# 包含马来西亚国际收支数据,如国际收支、外汇准备金,具体指标可参见API文档;历史数据从1998年开始,按季更新。
|
1014
|
+
def malaysia_data_payments_balance(indic_id: '', indic_name: '',
|
1015
|
+
begin_date: '', end_date: '',
|
1016
|
+
field: '')
|
1017
|
+
api_path = format(MALAYSIADATAPAYMENTSBALANCE, indic_id, indic_name,
|
1018
|
+
begin_date, end_date, field)
|
1019
|
+
fetch_data api_path
|
1020
|
+
end
|
1021
|
+
|
1022
|
+
# 包含马来西亚对外贸易数据,具体指标可参见API文档;历史数据从1996年开始,按月更新。
|
1023
|
+
def malaysia_data_foreign_trade(indic_id: '', indic_name: '',
|
1024
|
+
begin_date: '', end_date: '', field: '')
|
1025
|
+
api_path = format(MALAYSIADATAFOREIGNTRADE, indic_id, indic_name,
|
1026
|
+
begin_date, end_date, field)
|
1027
|
+
fetch_data api_path
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
# 包含马来西亚价格指数据,如PPI、消费者价格指数,具体指标可参见API文档;历史数据从1997年开始,按月更新。
|
1031
|
+
def malaysia_data_price_index(indic_id: '', indic_name: '',
|
1032
|
+
begin_date: '', end_date: '', field: '')
|
1033
|
+
api_path = format(MALAYSIADATAPRICEINDEX, indic_id, indic_name,
|
1034
|
+
begin_date, end_date, field)
|
1035
|
+
fetch_data api_path
|
1036
|
+
end
|
1037
|
+
|
1038
|
+
# 包含马来西亚就业数据,具体指标可参见API文档;历史数据从2010年开始,按月更新。
|
1039
|
+
def malaysia_data_employment(indic_id: '', indic_name: '', begin_date: '',
|
1040
|
+
end_date: '', field: '')
|
1041
|
+
api_path = format(MALAYSIADATAEMPLOYMENT, indic_id, indic_name,
|
1042
|
+
begin_date, end_date, field)
|
1043
|
+
fetch_data api_path
|
1044
|
+
end
|
1045
|
+
|
1046
|
+
# 包含马来西亚工业数据,具体指标可参见API文档;历史数据从2007年开始,按月更新。
|
1047
|
+
def malaysia_data_industry(indic_id: '', indic_name: '', begin_date: '',
|
1048
|
+
end_date: '', field: '')
|
1049
|
+
api_path = format(MALAYSIADATAINDUSTRY, indic_id, indic_name,
|
1050
|
+
begin_date, end_date, field)
|
1051
|
+
fetch_data api_path
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
# 包含马来西亚财政数据,具体指标可参见API文档;历史数据从1996年开始,按季更新。
|
1055
|
+
def malaysia_data_finance(indic_id: '', indic_name: '', begin_date: '',
|
1056
|
+
end_date: '', field: '')
|
1057
|
+
api_path = format(MALAYSIADATAFINANCE, indic_id, indic_name, begin_date,
|
1058
|
+
end_date, field)
|
1059
|
+
fetch_data api_path
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
# 包含马来西亚货币供应量数据,具体指标可参见API文档;历史数据从1997年开始,按月更新。
|
1063
|
+
def malaysia_data_money_supply(indic_id: '', indic_name: '',
|
1064
|
+
begin_date: '', end_date: '', field: '')
|
1065
|
+
api_path = format(MALAYSIADATAMONEYSUPPLY, indic_id, indic_name,
|
1066
|
+
begin_date, end_date, field)
|
1067
|
+
fetch_data api_path
|
1068
|
+
end
|
1069
|
+
|
1070
|
+
# 包含马来西亚房地产数据,具体指标可参见API文档;历史数据从2004年开始,按季更新。
|
1071
|
+
def malaysia_data_real_estate(indic_id: '', indic_name: '',
|
1072
|
+
begin_date: '', end_date: '', field: '')
|
1073
|
+
api_path = format(MALAYSIADATAREALESTATE, indic_id, indic_name,
|
1074
|
+
begin_date, end_date, field)
|
1075
|
+
fetch_data api_path
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
# 包含印度尼西亚GDP数据,具体指标可参见API文档;历史数据从2001年开始,按季更新。
|
1079
|
+
def indonesia_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
1080
|
+
end_date: '', field: '')
|
1081
|
+
api_path = format(INDONESIADATAGDP, indic_id, indic_name, begin_date,
|
1082
|
+
end_date, field)
|
1083
|
+
fetch_data api_path
|
1084
|
+
end
|
1085
|
+
|
1086
|
+
# 包含印度尼西亚国际收支国际收支、外债数据,具体指标可参见API文档;历史数据从1996年开始,按季更新。
|
1087
|
+
def indonesia_data_payments_balance(indic_id: '', indic_name: '',
|
1088
|
+
begin_date: '', end_date: '',
|
1089
|
+
field: '')
|
1090
|
+
api_path = format(INDONESIADATAPAYMENTSBALANCE, indic_id, indic_name,
|
1091
|
+
begin_date, end_date, field)
|
1092
|
+
fetch_data api_path
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
# 包含印度尼西亚对外贸易数据,具体指标可参见API文档;历史数据从1999年开始,按月更新。
|
1096
|
+
def indonesia_data_foreign_trade(indic_id: '', indic_name: '',
|
1097
|
+
begin_date: '', end_date: '', field: '')
|
1098
|
+
api_path = format(INDONESIADATAFOREIGNTRADE, indic_id, indic_name,
|
1099
|
+
begin_date, end_date, field)
|
1100
|
+
fetch_data api_path
|
1101
|
+
end
|
1102
|
+
|
1103
|
+
# 包含印度尼西亚消费者价格指数(CPI)(CPI)数据,具体指标可参见API文档;历史数据从2000年开始,按月更新。
|
1104
|
+
def indonesia_data_price_index(indic_id: '', indic_name: '',
|
1105
|
+
begin_date: '', end_date: '', field: '')
|
1106
|
+
api_path = format(INDONESIADATAPRICEINDEX, indic_id, indic_name,
|
1107
|
+
begin_date, end_date, field)
|
1108
|
+
fetch_data api_path
|
1109
|
+
end
|
1110
|
+
|
1111
|
+
# 包含印度尼西亚工业数据,具体指标可参见API文档;历史数据从2003年开始,按年更新。
|
1112
|
+
def indonesia_data_industry(indic_id: '', indic_name: '', begin_date: '',
|
1113
|
+
end_date: '', field: '')
|
1114
|
+
api_path = format(INDONESIADATAINDUSTRY, indic_id, indic_name,
|
1115
|
+
begin_date, end_date, field)
|
1116
|
+
fetch_data api_path
|
1117
|
+
end
|
1118
|
+
|
1119
|
+
# 包含印度尼西亚财政数据,具体指标可参见API文档;历史数据从2003年开始,按季更新。
|
1120
|
+
def indonesia_data_finance(indic_id: '', indic_name: '', begin_date: '',
|
1121
|
+
end_date: '', field: '')
|
1122
|
+
api_path = format(INDONESIADATAFINANCE, indic_id, indic_name,
|
1123
|
+
begin_date, end_date, field)
|
1124
|
+
fetch_data api_path
|
1125
|
+
end
|
1126
|
+
|
1127
|
+
# 包含印度尼西亚货币供应量数据,具体指标可参见API文档;历史数据从1989年开始,按月更新。
|
1128
|
+
def indonesia_data_banking(indic_id: '', indic_name: '', begin_date: '',
|
1129
|
+
end_date: '', field: '')
|
1130
|
+
api_path = format(INDONESIADATABANKING, indic_id, indic_name,
|
1131
|
+
begin_date, end_date, field)
|
1132
|
+
fetch_data api_path
|
1133
|
+
end
|
1134
|
+
|
1135
|
+
# 包含印度尼西亚证券市场数据,如资本市场发行的股票和债券、政府未尝还投资组合,具体指标可参见API文档;历史数据从2002年开始,按月更新。
|
1136
|
+
def indonesia_data_security(indic_id: '', indic_name: '', begin_date: '',
|
1137
|
+
end_date: '', field: '')
|
1138
|
+
api_path = format(INDONESIADATASECURITY, indic_id, indic_name,
|
1139
|
+
begin_date, end_date, field)
|
1140
|
+
fetch_data api_path
|
1141
|
+
end
|
1142
|
+
|
1143
|
+
# 包含印度尼西亚旅游业数据,具体指标可参见API文档;历史数据从2008年开始,按月更新。
|
1144
|
+
def indonesia_data_tourism(indic_id: '', indic_name: '', begin_date: '',
|
1145
|
+
end_date: '', field: '')
|
1146
|
+
api_path = format(INDONESIADATATOURISM, indic_id, indic_name,
|
1147
|
+
begin_date, end_date, field)
|
1148
|
+
fetch_data api_path
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
# 包含土耳其GDP数据,具体指标可参见API文档;历史数据从1998年开始,按季更新。
|
1152
|
+
def turkey_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
1153
|
+
end_date: '', field: '')
|
1154
|
+
api_path = format(TURKEYDATAGDP, indic_id, indic_name, begin_date,
|
1155
|
+
end_date, field)
|
1156
|
+
fetch_data api_path
|
1157
|
+
end
|
1158
|
+
|
1159
|
+
# 包含土耳其国际收支数据,如国际收支、外汇储备、外债,具体指标可参见API文档;历史数据从1981年开始,按月更新。
|
1160
|
+
def turkey_data_payments_balance(indic_id: '', indic_name: '',
|
1161
|
+
begin_date: '', end_date: '', field: '')
|
1162
|
+
api_path = format(TURKEYDATAPAYMENTSBALANCE, indic_id, indic_name,
|
1163
|
+
begin_date, end_date, field)
|
1164
|
+
fetch_data api_path
|
1165
|
+
end
|
1166
|
+
|
1167
|
+
# 包含土耳其对外贸易数据,具体指标可参见API文档;历史数据从2005年开始,按月更新。
|
1168
|
+
def turkey_data_foreign_trade(indic_id: '', indic_name: '',
|
1169
|
+
begin_date: '', end_date: '', field: '')
|
1170
|
+
api_path = format(TURKEYDATAFOREIGNTRADE, indic_id, indic_name,
|
1171
|
+
begin_date, end_date, field)
|
1172
|
+
fetch_data api_path
|
1173
|
+
end
|
1174
|
+
|
1175
|
+
# 包含土耳其价格指数数据,如CPI、PPI,具体指标可参见API文档;历史数据从2004年开始,按月更新。
|
1176
|
+
def turkey_data_price_index(indic_id: '', indic_name: '', begin_date: '',
|
1177
|
+
end_date: '', field: '')
|
1178
|
+
api_path = format(TURKEYDATAPRICEINDEX, indic_id, indic_name,
|
1179
|
+
begin_date, end_date, field)
|
1180
|
+
fetch_data api_path
|
1181
|
+
end
|
1182
|
+
|
1183
|
+
# 包含土耳其就业数据,具体指标可参见API文档;历史数据从2012年开始,按月更新。
|
1184
|
+
def turkey_data_employment(indic_id: '', indic_name: '', begin_date: '',
|
1185
|
+
end_date: '', field: '')
|
1186
|
+
api_path = format(TURKEYDATAEMPLOYMENT, indic_id, indic_name,
|
1187
|
+
begin_date, end_date, field)
|
1188
|
+
fetch_data api_path
|
1189
|
+
end
|
1190
|
+
|
1191
|
+
# 包含土耳其工业数据,具体指标可参见API文档;历史数据从2012年开始,按月更新。
|
1192
|
+
def turkey_data_industry(indic_id: '', indic_name: '', begin_date: '',
|
1193
|
+
end_date: '', field: '')
|
1194
|
+
api_path = format(TURKEYDATAINDUSTRY, indic_id, indic_name, begin_date,
|
1195
|
+
end_date, field)
|
1196
|
+
fetch_data api_path
|
1197
|
+
end
|
1198
|
+
|
1199
|
+
# 包含土耳其财政数据,具体指标可参见API文档;历史数据从2006年开始,按月更新。
|
1200
|
+
def turkey_data_finance(indic_id: '', indic_name: '', begin_date: '',
|
1201
|
+
end_date: '', field: '')
|
1202
|
+
api_path = format(TURKEYDATAFINANCE, indic_id, indic_name, begin_date,
|
1203
|
+
end_date, field)
|
1204
|
+
fetch_data api_path
|
1205
|
+
end
|
1206
|
+
|
1207
|
+
# 包含土耳其货币供应量数据,具体指标可参见API文档;历史数据从2005年开始,按周更新。
|
1208
|
+
def turkey_data_money_supply(indic_id: '', indic_name: '', begin_date: '',
|
1209
|
+
end_date: '', field: '')
|
1210
|
+
api_path = format(TURKEYDATAMONEYSUPPLY, indic_id, indic_name,
|
1211
|
+
begin_date, end_date, field)
|
1212
|
+
fetch_data api_path
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
# 包含泰国GDP数据,具体指标可参见API文档;历史数据从1993年开始,按季更新。
|
1216
|
+
def thailand_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
1217
|
+
end_date: '', field: '')
|
1218
|
+
api_path = format(THAILANDDATAGDP, indic_id, indic_name, begin_date,
|
1219
|
+
end_date, field)
|
1220
|
+
fetch_data api_path
|
1221
|
+
end
|
1222
|
+
|
1223
|
+
# 包含泰国国际收支数据,如国际收支、外汇储备、外债,具体指标可参见API文档;历史数据从1987年开始,按月更新。
|
1224
|
+
def thailand_data_payments_balance(indic_id: '', indic_name: '',
|
1225
|
+
begin_date: '', end_date: '',
|
1226
|
+
field: '')
|
1227
|
+
api_path = format(THAILANDDATAPAYMENTSBALANCE, indic_id, indic_name,
|
1228
|
+
begin_date, end_date, field)
|
1229
|
+
fetch_data api_path
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
# 包含泰国对外贸易数据,具体指标可参见API文档;历史数据从2010年开始,按月更新。
|
1233
|
+
def thailand_data_foreign_trade(indic_id: '', indic_name: '',
|
1234
|
+
begin_date: '', end_date: '', field: '')
|
1235
|
+
api_path = format(THAILANDDATAFOREIGNTRADE, indic_id, indic_name,
|
1236
|
+
begin_date, end_date, field)
|
1237
|
+
fetch_data api_path
|
1238
|
+
end
|
1239
|
+
|
1240
|
+
# 包含泰国价格指数数据,如CPI、PPI,具体指标可参见API文档;历史数据从1976年开始,按月更新。
|
1241
|
+
def thailand_data_price_index(indic_id: '', indic_name: '',
|
1242
|
+
begin_date: '', end_date: '', field: '')
|
1243
|
+
api_path = format(THAILANDDATAPRICEINDEX, indic_id, indic_name,
|
1244
|
+
begin_date, end_date, field)
|
1245
|
+
fetch_data api_path
|
1246
|
+
end
|
1247
|
+
|
1248
|
+
# 包含泰国就业数据,如就业、劳动指数、劳动生产率指数,具体指标可参见API文档;历史数据从2000年开始,按月更新。
|
1249
|
+
def thailand_data_employment(indic_id: '', indic_name: '', begin_date: '',
|
1250
|
+
end_date: '', field: '')
|
1251
|
+
api_path = format(THAILANDDATAEMPLOYMENT, indic_id, indic_name,
|
1252
|
+
begin_date, end_date, field)
|
1253
|
+
fetch_data api_path
|
1254
|
+
end
|
1255
|
+
|
1256
|
+
# 包含泰国工业数据,如工业生产指数、产能利用率、出货量指数、产成品存货指数,具体指标可参见API文档;历史数据从2000年开始,按月更新。
|
1257
|
+
def thailand_data_industry(indic_id: '', indic_name: '', begin_date: '',
|
1258
|
+
end_date: '', field: '')
|
1259
|
+
api_path = format(THAILANDDATAINDUSTRY, indic_id, indic_name,
|
1260
|
+
begin_date, end_date, field)
|
1261
|
+
fetch_data api_path
|
1262
|
+
end
|
1263
|
+
|
1264
|
+
# 包含泰国财政数据,具体指标可参见API文档;历史数据从2002年开始,按月更新。
|
1265
|
+
def thailand_data_finance(indic_id: '', indic_name: '', begin_date: '',
|
1266
|
+
end_date: '', field: '')
|
1267
|
+
api_path = format(THAILANDDATAFINANCE, indic_id, indic_name, begin_date,
|
1268
|
+
end_date, field)
|
1269
|
+
fetch_data api_path
|
1270
|
+
end
|
1271
|
+
|
1272
|
+
# 包含泰国商业景气指数数据,具体指标可参见API文档;历史数据从1999年开始,按月更新。
|
1273
|
+
def thailand_data_climate_index(indic_id: '', indic_name: '',
|
1274
|
+
begin_date: '', end_date: '', field: '')
|
1275
|
+
api_path = format(THAILANDDATACLIMATEINDEX, indic_id, indic_name,
|
1276
|
+
begin_date, end_date, field)
|
1277
|
+
fetch_data api_path
|
1278
|
+
end
|
1279
|
+
|
1280
|
+
# 包含泰国货币供应量数据,具体指标可参见API文档;历史数据从1997年开始,按月更新。
|
1281
|
+
def thailand_data_money_supply(indic_id: '', indic_name: '',
|
1282
|
+
begin_date: '', end_date: '', field: '')
|
1283
|
+
api_path = format(THAILANDDATAMONEYSUPPLY, indic_id, indic_name,
|
1284
|
+
begin_date, end_date, field)
|
1285
|
+
fetch_data api_path
|
1286
|
+
end
|
1287
|
+
|
1288
|
+
# 包含英国GDP数据,具体指标可参见API文档;历史数据从1955年开始,按季更新。
|
1289
|
+
def uk_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
1290
|
+
end_date: '', field: '')
|
1291
|
+
api_path = format(UKDATAGDP, indic_id, indic_name, begin_date, end_date,
|
1292
|
+
field)
|
1293
|
+
fetch_data api_path
|
1294
|
+
end
|
1295
|
+
|
1296
|
+
# 包含英国对外贸易数据,具体指标可参见API文档;历史数据从1971年开始,按月更新。
|
1297
|
+
def uk_data_foreign_trade(indic_id: '', indic_name: '', begin_date: '',
|
1298
|
+
end_date: '', field: '')
|
1299
|
+
api_path = format(UKDATAFOREIGNTRADE, indic_id, indic_name, begin_date,
|
1300
|
+
end_date, field)
|
1301
|
+
fetch_data api_path
|
1302
|
+
end
|
1303
|
+
|
1304
|
+
# 包含英国消费者价格指数(CPI)数据,具体指标可参见API文档;历史数据从1988年开始,按月更新。
|
1305
|
+
def uk_data_cpi(indic_id: '', indic_name: '', begin_date: '',
|
1306
|
+
end_date: '', field: '')
|
1307
|
+
api_path = format(UKDATACPI, indic_id, indic_name, begin_date, end_date,
|
1308
|
+
field)
|
1309
|
+
fetch_data api_path
|
1310
|
+
end
|
1311
|
+
|
1312
|
+
# 包含英国零售价格指数(RPI)数据,具体指标可参见API文档;历史数据从1948年开始,按月更新。
|
1313
|
+
def uk_data_rpi(indic_id: '', indic_name: '', begin_date: '',
|
1314
|
+
end_date: '', field: '')
|
1315
|
+
api_path = format(UKDATARPI, indic_id, indic_name, begin_date, end_date,
|
1316
|
+
field)
|
1317
|
+
fetch_data api_path
|
1318
|
+
end
|
1319
|
+
|
1320
|
+
# 包含英国就业数据,具体指标可参见API文档;历史数据从1971年开始,按月更新。
|
1321
|
+
def uk_data_employment(indic_id: '', indic_name: '', begin_date: '',
|
1322
|
+
end_date: '', field: '')
|
1323
|
+
api_path = format(UKDATAEMPLOYMENT, indic_id, indic_name, begin_date,
|
1324
|
+
end_date, field)
|
1325
|
+
fetch_data api_path
|
1326
|
+
end
|
1327
|
+
|
1328
|
+
# 包含英国货币供应量数据,具体指标可参见API文档;历史数据从1998年开始,按月更新。
|
1329
|
+
def uk_data_money_supply(indic_id: '', indic_name: '', begin_date: '',
|
1330
|
+
end_date: '', field: '')
|
1331
|
+
api_path = format(UKDATAMONEYSUPPLY, indic_id, indic_name, begin_date,
|
1332
|
+
end_date, field)
|
1333
|
+
fetch_data api_path
|
1334
|
+
end
|
1335
|
+
|
1336
|
+
# 包含英国消费信贷数据,具体指标可参见API文档;历史数据从1997年开始,按月更新。
|
1337
|
+
def uk_data_consumer_credit(indic_id: '', indic_name: '', begin_date: '',
|
1338
|
+
end_date: '', field: '')
|
1339
|
+
api_path = format(UKDATACONSUMERCREDIT, indic_id, indic_name,
|
1340
|
+
begin_date, end_date, field)
|
1341
|
+
fetch_data api_path
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
# 包含英国景气指数数据,具体指标可参见API文档;历史数据从1981年开始,按月更新。
|
1345
|
+
def uk_data_climate_index(indic_id: '', indic_name: '', begin_date: '',
|
1346
|
+
end_date: '', field: '')
|
1347
|
+
api_path = format(UKDATACLIMATEINDEX, indic_id, indic_name, begin_date,
|
1348
|
+
end_date, field)
|
1349
|
+
fetch_data api_path
|
1350
|
+
end
|
1351
|
+
|
1352
|
+
# 包含英国财政收支数据,具体指标可参见API文档;历史数据从1991年开始,按月更新。
|
1353
|
+
def uk_data_finance(indic_id: '', indic_name: '', begin_date: '',
|
1354
|
+
end_date: '', field: '')
|
1355
|
+
api_path = format(UKDATAFINANCE, indic_id, indic_name, begin_date,
|
1356
|
+
end_date, field)
|
1357
|
+
fetch_data api_path
|
1358
|
+
end
|
1359
|
+
|
1360
|
+
# 包含英国工业生产指数数据,具体指标可参见API文档;历史数据从1968年开始,按月更新。
|
1361
|
+
def uk_data_industrial_pi(indic_id: '', indic_name: '', begin_date: '',
|
1362
|
+
end_date: '', field: '')
|
1363
|
+
api_path = format(UKDATAINDUSTRIALPI, indic_id, indic_name, begin_date,
|
1364
|
+
end_date, field)
|
1365
|
+
fetch_data api_path
|
1366
|
+
end
|
1367
|
+
|
1368
|
+
# 包含英国房价指数数据,具体指标可参见API文档;历史数据从1983年开始,按月更新。
|
1369
|
+
def uk_data_house_pi(indic_id: '', indic_name: '', begin_date: '',
|
1370
|
+
end_date: '', field: '')
|
1371
|
+
api_path = format(UKDATAHOUSEPI, indic_id, indic_name, begin_date,
|
1372
|
+
end_date, field)
|
1373
|
+
fetch_data api_path
|
1374
|
+
end
|
1375
|
+
|
1376
|
+
# 包含英国利率数据,具体指标可参见API文档;历史数据从1975年1月开始,按日更新。
|
1377
|
+
def uk_data_interest_rates(indic_id: '', indic_name: '', begin_date: '',
|
1378
|
+
end_date: '', field: '')
|
1379
|
+
api_path = format(UKDATAINTERESTRATES, indic_id, indic_name, begin_date,
|
1380
|
+
end_date, field)
|
1381
|
+
fetch_data api_path
|
1382
|
+
end
|
1383
|
+
|
1384
|
+
# 包含英国汇率数据,具体指标可参见API文档;历史数据从1975年1月开始,按日更新。
|
1385
|
+
def uk_data_exchange_rate(indic_id: '', indic_name: '', begin_date: '',
|
1386
|
+
end_date: '', field: '')
|
1387
|
+
api_path = format(UKDATAEXCHANGERATE, indic_id, indic_name, begin_date,
|
1388
|
+
end_date, field)
|
1389
|
+
fetch_data api_path
|
1390
|
+
end
|
1391
|
+
|
1392
|
+
# 包含日本GDP数据,具体指标可参见API文档;历史数据从1980年开始,按季更新。
|
1393
|
+
def japan_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
1394
|
+
end_date: '', field: '')
|
1395
|
+
api_path = format(JAPANDATAGDP, indic_id, indic_name, begin_date,
|
1396
|
+
end_date, field)
|
1397
|
+
fetch_data api_path
|
1398
|
+
end
|
1399
|
+
|
1400
|
+
# 包含日本对外贸易数据,具体指标可参见API文档;历史数据从1979年开始,按月更新。
|
1401
|
+
def japan_data_foreign_trade(indic_id: '', indic_name: '', begin_date: '',
|
1402
|
+
end_date: '', field: '')
|
1403
|
+
api_path = format(JAPANDATAFOREIGNTRADE, indic_id, indic_name,
|
1404
|
+
begin_date, end_date, field)
|
1405
|
+
fetch_data api_path
|
1406
|
+
end
|
1407
|
+
|
1408
|
+
# 包含日本消费者价格指数(CPI)数据,具体指标可参见API文档;历史数据从1970年开始,按月更新。
|
1409
|
+
def japan_data_cpi(indic_id: '', indic_name: '', begin_date: '',
|
1410
|
+
end_date: '', field: '')
|
1411
|
+
api_path = format(JAPANDATACPI, indic_id, indic_name, begin_date,
|
1412
|
+
end_date, field)
|
1413
|
+
fetch_data api_path
|
1414
|
+
end
|
1415
|
+
|
1416
|
+
# 包含日本就业与失业数据,具体指标可参见API文档;历史数据从1953年开始,按月更新。
|
1417
|
+
def japan_data_employment(indic_id: '', indic_name: '', begin_date: '',
|
1418
|
+
end_date: '', field: '')
|
1419
|
+
api_path = format(JAPANDATAEMPLOYMENT, indic_id, indic_name, begin_date,
|
1420
|
+
end_date, field)
|
1421
|
+
fetch_data api_path
|
1422
|
+
end
|
1423
|
+
|
1424
|
+
# 包含日本货币供应量数据,具体指标可参见API文档;历史数据从2007年开始,按月更新。
|
1425
|
+
def japan_data_money_supply(indic_id: '', indic_name: '', begin_date: '',
|
1426
|
+
end_date: '', field: '')
|
1427
|
+
api_path = format(JAPANDATAMONEYSUPPLY, indic_id, indic_name,
|
1428
|
+
begin_date, end_date, field)
|
1429
|
+
fetch_data api_path
|
1430
|
+
end
|
1431
|
+
|
1432
|
+
# 包含日本景气指数数据,如景气动向指数、消费者信心指数、PMI,具体指标可参见API文档;历史数据从1980年开始,按月更新。
|
1433
|
+
def japan_data_climate_index(indic_id: '', indic_name: '', begin_date: '',
|
1434
|
+
end_date: '', field: '')
|
1435
|
+
api_path = format(JAPANDATACLIMATEINDEX, indic_id, indic_name,
|
1436
|
+
begin_date, end_date, field)
|
1437
|
+
fetch_data api_path
|
1438
|
+
end
|
1439
|
+
|
1440
|
+
# 包含日本工业生产指数数据,具体指标可参见API文档;历史数据从2004年开始,按月更新。
|
1441
|
+
def japan_data_industrial_pi(indic_id: '', indic_name: '', begin_date: '',
|
1442
|
+
end_date: '', field: '')
|
1443
|
+
api_path = format(JAPANDATAINDUSTRIALPI, indic_id, indic_name,
|
1444
|
+
begin_date, end_date, field)
|
1445
|
+
fetch_data api_path
|
1446
|
+
end
|
1447
|
+
|
1448
|
+
# 包含日本房价指数数据,具体指标可参见API文档;历史数据从2004年开始,按月更新。
|
1449
|
+
def japan_data_house_pi(indic_id: '', indic_name: '', begin_date: '',
|
1450
|
+
end_date: '', field: '')
|
1451
|
+
api_path = format(JAPANDATAHOUSEPI, indic_id, indic_name, begin_date,
|
1452
|
+
end_date, field)
|
1453
|
+
fetch_data api_path
|
1454
|
+
end
|
1455
|
+
|
1456
|
+
# 包含日本利率数据,具体指标可参见API文档;历史数据从1998年1月开始,按日更新。
|
1457
|
+
def japan_data_interest_rates(indic_id: '', indic_name: '',
|
1458
|
+
begin_date: '', end_date: '', field: '')
|
1459
|
+
api_path = format(JAPANDATAINTERESTRATES, indic_id, indic_name,
|
1460
|
+
begin_date, end_date, field)
|
1461
|
+
fetch_data api_path
|
1462
|
+
end
|
1463
|
+
|
1464
|
+
# 包含日本汇率数据,具体指标可参见API文档;历史数据从1998年1月开始,按日更新。
|
1465
|
+
def japan_data_exchange_rate(indic_id: '', indic_name: '', begin_date: '',
|
1466
|
+
end_date: '', field: '')
|
1467
|
+
api_path = format(JAPANDATAEXCHANGERATE, indic_id, indic_name,
|
1468
|
+
begin_date, end_date, field)
|
1469
|
+
fetch_data api_path
|
1470
|
+
end
|
1471
|
+
|
1472
|
+
# 包含德国GDP数据,具体指标可参见API文档;历史数据从1991年开始,按季更新。
|
1473
|
+
def germany_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
1474
|
+
end_date: '', field: '')
|
1475
|
+
api_path = format(GERMANYDATAGDP, indic_id, indic_name, begin_date,
|
1476
|
+
end_date, field)
|
1477
|
+
fetch_data api_path
|
1478
|
+
end
|
1479
|
+
|
1480
|
+
# 包含德国对外贸易数据,具体指标可参见API文档;历史数据从2002年开始,按月更新。
|
1481
|
+
def germany_data_foreign_trade(indic_id: '', indic_name: '',
|
1482
|
+
begin_date: '', end_date: '', field: '')
|
1483
|
+
api_path = format(GERMANYDATAFOREIGNTRADE, indic_id, indic_name,
|
1484
|
+
begin_date, end_date, field)
|
1485
|
+
fetch_data api_path
|
1486
|
+
end
|
1487
|
+
|
1488
|
+
# 包含德国消费者价格指数(CPI)数据,具体指标可参见API文档;历史数据从1994年开始,按月更新。
|
1489
|
+
def germany_data_cpi(indic_id: '', indic_name: '', begin_date: '',
|
1490
|
+
end_date: '', field: '')
|
1491
|
+
api_path = format(GERMANYDATACPI, indic_id, indic_name, begin_date,
|
1492
|
+
end_date, field)
|
1493
|
+
fetch_data api_path
|
1494
|
+
end
|
1495
|
+
|
1496
|
+
# 包含德国生产者价格指数(PPI)数据,具体指标可参见API文档;历史数据从2005年开始,按月更新。
|
1497
|
+
def germany_data_ppi(indic_id: '', indic_name: '', begin_date: '',
|
1498
|
+
end_date: '', field: '')
|
1499
|
+
api_path = format(GERMANYDATAPPI, indic_id, indic_name, begin_date,
|
1500
|
+
end_date, field)
|
1501
|
+
fetch_data api_path
|
1502
|
+
end
|
1503
|
+
|
1504
|
+
# 包含德国进出口价格指数数据,具体指标可参见API文档;历史数据从2000年开始,按月更新。
|
1505
|
+
def germany_data_import_export_pi(indic_id: '', indic_name: '',
|
1506
|
+
begin_date: '', end_date: '',
|
1507
|
+
field: '')
|
1508
|
+
api_path = format(GERMANYDATAIMPORTEXPORTPI, indic_id, indic_name,
|
1509
|
+
begin_date, end_date, field)
|
1510
|
+
fetch_data api_path
|
1511
|
+
end
|
1512
|
+
|
1513
|
+
# 包含德国就业与失业数据,具体指标可参见API文档;历史数据从2000年开始,按月更新。
|
1514
|
+
def germany_data_employment(indic_id: '', indic_name: '', begin_date: '',
|
1515
|
+
end_date: '', field: '')
|
1516
|
+
api_path = format(GERMANYDATAEMPLOYMENT, indic_id, indic_name,
|
1517
|
+
begin_date, end_date, field)
|
1518
|
+
fetch_data api_path
|
1519
|
+
end
|
1520
|
+
|
1521
|
+
# 包含德国货币供应量数据,具体指标可参见API文档;历史数据从1995年开始,按月更新。
|
1522
|
+
def germany_data_money_supply(indic_id: '', indic_name: '',
|
1523
|
+
begin_date: '', end_date: '', field: '')
|
1524
|
+
api_path = format(GERMANYDATAMONEYSUPPLY, indic_id, indic_name,
|
1525
|
+
begin_date, end_date, field)
|
1526
|
+
fetch_data api_path
|
1527
|
+
end
|
1528
|
+
|
1529
|
+
# 包含德国景气指数数据,如商业景气指数、ZEW景气指数、PMI、消费者信息指数,具体指标可参见API文档;历史数据从1985年开始,按月更新。
|
1530
|
+
def germany_data_climate_index(indic_id: '', indic_name: '',
|
1531
|
+
begin_date: '', end_date: '', field: '')
|
1532
|
+
api_path = format(GERMANYDATACLIMATEINDEX, indic_id, indic_name,
|
1533
|
+
begin_date, end_date, field)
|
1534
|
+
fetch_data api_path
|
1535
|
+
end
|
1536
|
+
|
1537
|
+
# 包含德国财政收支数据,具体指标可参见API文档;历史数据从2004年开始,按月更新。
|
1538
|
+
def germany_data_finance(indic_id: '', indic_name: '', begin_date: '',
|
1539
|
+
end_date: '', field: '')
|
1540
|
+
api_path = format(GERMANYDATAFINANCE, indic_id, indic_name, begin_date,
|
1541
|
+
end_date, field)
|
1542
|
+
fetch_data api_path
|
1543
|
+
end
|
1544
|
+
|
1545
|
+
# 包含德国工业生产指数数据,具体指标可参见API文档;历史数据从1991年开始,按月更新。
|
1546
|
+
def germany_data_industrial_pi(indic_id: '', indic_name: '',
|
1547
|
+
begin_date: '', end_date: '', field: '')
|
1548
|
+
api_path = format(GERMANYDATAINDUSTRIALPI, indic_id, indic_name,
|
1549
|
+
begin_date, end_date, field)
|
1550
|
+
fetch_data api_path
|
1551
|
+
end
|
1552
|
+
|
1553
|
+
# 包含德国房地产数据,具体指标可参见API文档;历史数据从2003年开始,按月更新。
|
1554
|
+
def germany_data_real_estate(indic_id: '', indic_name: '', begin_date: '',
|
1555
|
+
end_date: '', field: '')
|
1556
|
+
api_path = format(GERMANYDATAREALESTATE, indic_id, indic_name,
|
1557
|
+
begin_date, end_date, field)
|
1558
|
+
fetch_data api_path
|
1559
|
+
end
|
1560
|
+
|
1561
|
+
# 包含德国国内贸易数据,具体指标可参见API文档;历史数据从1994年开始,按月更新。
|
1562
|
+
def germany_data_domestic_trade(indic_id: '', indic_name: '',
|
1563
|
+
begin_date: '', end_date: '', field: '')
|
1564
|
+
api_path = format(GERMANYDATADOMESTICTRADE, indic_id, indic_name,
|
1565
|
+
begin_date, end_date, field)
|
1566
|
+
fetch_data api_path
|
1567
|
+
end
|
1568
|
+
|
1569
|
+
# 包含德国利率数据,具体指标可参见API文档;历史数据从1997年8月开始,按日更新。
|
1570
|
+
def germany_data_interest_rates(indic_id: '', indic_name: '',
|
1571
|
+
begin_date: '', end_date: '', field: '')
|
1572
|
+
api_path = format(GERMANYDATAINTERESTRATES, indic_id, indic_name,
|
1573
|
+
begin_date, end_date, field)
|
1574
|
+
fetch_data api_path
|
1575
|
+
end
|
1576
|
+
|
1577
|
+
# 包含法国财政收支数据,具体指标可参见API文档;历史数据从1995年开始,按年更新。
|
1578
|
+
def france_data_finance(indic_id: '', indic_name: '', begin_date: '',
|
1579
|
+
end_date: '', field: '')
|
1580
|
+
api_path = format(FRANCEDATAFINANCE, indic_id, indic_name, begin_date,
|
1581
|
+
end_date, field)
|
1582
|
+
fetch_data api_path
|
1583
|
+
end
|
1584
|
+
|
1585
|
+
# 包含法国GDP数据,具体指标可参见API文档;历史数据从1978年开始,按季更新。
|
1586
|
+
def france_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
1587
|
+
end_date: '', field: '')
|
1588
|
+
api_path = format(FRANCEDATAGDP, indic_id, indic_name, begin_date,
|
1589
|
+
end_date, field)
|
1590
|
+
fetch_data api_path
|
1591
|
+
end
|
1592
|
+
|
1593
|
+
# 包含法国对外贸易数据,具体指标可参见API文档;历史数据从1990年开始,按月更新。
|
1594
|
+
def france_data_foreign_trade(indic_id: '', indic_name: '',
|
1595
|
+
begin_date: '', end_date: '', field: '')
|
1596
|
+
api_path = format(FRANCEDATAFOREIGNTRADE, indic_id, indic_name,
|
1597
|
+
begin_date, end_date, field)
|
1598
|
+
fetch_data api_path
|
1599
|
+
end
|
1600
|
+
|
1601
|
+
# 包含法国消费者价格指数(CPI)数据,具体指标可参见API文档;历史数据从1996年开始,按月更新。
|
1602
|
+
def france_data_cpi(indic_id: '', indic_name: '', begin_date: '',
|
1603
|
+
end_date: '', field: '')
|
1604
|
+
api_path = format(FRANCEDATACPI, indic_id, indic_name, begin_date,
|
1605
|
+
end_date, field)
|
1606
|
+
fetch_data api_path
|
1607
|
+
end
|
1608
|
+
|
1609
|
+
# 包含法国生产者价格指数(PPI)数据,具体指标可参见API文档;历史数据从1999年开始,按月更新。
|
1610
|
+
def france_data_ppi(indic_id: '', indic_name: '', begin_date: '',
|
1611
|
+
end_date: '', field: '')
|
1612
|
+
api_path = format(FRANCEDATAPPI, indic_id, indic_name, begin_date,
|
1613
|
+
end_date, field)
|
1614
|
+
fetch_data api_path
|
1615
|
+
end
|
1616
|
+
|
1617
|
+
# 包含法国进口价格指数数据,具体指标可参见API文档;历史数据从2005年开始,按月更新。
|
1618
|
+
def france_data_import_pi(indic_id: '', indic_name: '', begin_date: '',
|
1619
|
+
end_date: '', field: '')
|
1620
|
+
api_path = format(FRANCEDATAIMPORTPI, indic_id, indic_name, begin_date,
|
1621
|
+
end_date, field)
|
1622
|
+
fetch_data api_path
|
1623
|
+
end
|
1624
|
+
|
1625
|
+
# 包含法国就业数据,具体指标可参见API文档;历史数据从1983年开始,按月更新。
|
1626
|
+
def france_data_employment(indic_id: '', indic_name: '', begin_date: '',
|
1627
|
+
end_date: '', field: '')
|
1628
|
+
api_path = format(FRANCEDATAEMPLOYMENT, indic_id, indic_name,
|
1629
|
+
begin_date, end_date, field)
|
1630
|
+
fetch_data api_path
|
1631
|
+
end
|
1632
|
+
|
1633
|
+
# 包含法国货币供应量数据,具体指标可参见API文档;历史数据从2007年开始,按月更新。
|
1634
|
+
def france_data_money_supply(indic_id: '', indic_name: '', begin_date: '',
|
1635
|
+
end_date: '', field: '')
|
1636
|
+
api_path = format(FRANCEDATAMONEYSUPPLY, indic_id, indic_name,
|
1637
|
+
begin_date, end_date, field)
|
1638
|
+
fetch_data api_path
|
1639
|
+
end
|
1640
|
+
|
1641
|
+
# 包含法国景气指数数据,具体指标可参见API文档;历史数据从1985年开始,按月更新。
|
1642
|
+
def france_data_climate_index(indic_id: '', indic_name: '',
|
1643
|
+
begin_date: '', end_date: '', field: '')
|
1644
|
+
api_path = format(FRANCEDATACLIMATEINDEX, indic_id, indic_name,
|
1645
|
+
begin_date, end_date, field)
|
1646
|
+
fetch_data api_path
|
1647
|
+
end
|
1648
|
+
|
1649
|
+
# 包含法国工业生产指数数据,具体指标可参见API文档;历史数据从1990年开始,按月更新。
|
1650
|
+
def france_data_industrial_pi(indic_id: '', indic_name: '',
|
1651
|
+
begin_date: '', end_date: '', field: '')
|
1652
|
+
api_path = format(FRANCEDATAINDUSTRIALPI, indic_id, indic_name,
|
1653
|
+
begin_date, end_date, field)
|
1654
|
+
fetch_data api_path
|
1655
|
+
end
|
1656
|
+
|
1657
|
+
# 包含法国国内贸易数据,具体指标可参见API文档;历史数据从1995年开始,按月更新。
|
1658
|
+
def france_data_domestic_trade(indic_id: '', indic_name: '',
|
1659
|
+
begin_date: '', end_date: '', field: '')
|
1660
|
+
api_path = format(FRANCEDATADOMESTICTRADE, indic_id, indic_name,
|
1661
|
+
begin_date, end_date, field)
|
1662
|
+
fetch_data api_path
|
1663
|
+
end
|
1664
|
+
|
1665
|
+
# 包含法国利率数据,具体指标可参见API文档;历史数据从1980年1月开始,按日更新。
|
1666
|
+
def france_data_interest_rates(indic_id: '', indic_name: '',
|
1667
|
+
begin_date: '', end_date: '', field: '')
|
1668
|
+
api_path = format(FRANCEDATAINTERESTRATES, indic_id, indic_name,
|
1669
|
+
begin_date, end_date, field)
|
1670
|
+
fetch_data api_path
|
1671
|
+
end
|
1672
|
+
|
1673
|
+
# 包含台湾GDP数据,具体指标可参见API文档;历史数据从1961年开始,按季更新。
|
1674
|
+
def taiwan_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
1675
|
+
end_date: '', field: '')
|
1676
|
+
api_path = format(TAIWANDATAGDP, indic_id, indic_name, begin_date,
|
1677
|
+
end_date, field)
|
1678
|
+
fetch_data api_path
|
1679
|
+
end
|
1680
|
+
|
1681
|
+
# 包含台湾外债数据,具体指标可参见API文档;历史数据从1999年开始,按季更新。
|
1682
|
+
def taiwan_data_external_debt(indic_id: '', indic_name: '',
|
1683
|
+
begin_date: '', end_date: '', field: '')
|
1684
|
+
api_path = format(TAIWANDATAEXTERNALDEBT, indic_id, indic_name,
|
1685
|
+
begin_date, end_date, field)
|
1686
|
+
fetch_data api_path
|
1687
|
+
end
|
1688
|
+
|
1689
|
+
# 包含台湾对外贸易数据,具体指标可参见API文档;历史数据从1980年开始,按月更新。
|
1690
|
+
def taiwan_data_foreign_trade(indic_id: '', indic_name: '',
|
1691
|
+
begin_date: '', end_date: '', field: '')
|
1692
|
+
api_path = format(TAIWANDATAFOREIGNTRADE, indic_id, indic_name,
|
1693
|
+
begin_date, end_date, field)
|
1694
|
+
fetch_data api_path
|
1695
|
+
end
|
1696
|
+
|
1697
|
+
# 包含台湾消费者价格指数(CPI)数据,具体指标可参见API文档;历史数据从1981年开始,按月更新。
|
1698
|
+
def taiwan_data_cpi(indic_id: '', indic_name: '', begin_date: '',
|
1699
|
+
end_date: '', field: '')
|
1700
|
+
api_path = format(TAIWANDATACPI, indic_id, indic_name, begin_date,
|
1701
|
+
end_date, field)
|
1702
|
+
fetch_data api_path
|
1703
|
+
end
|
1704
|
+
|
1705
|
+
# 包含台湾进出口价格指数数据,具体指标可参见API文档;历史数据从1981年开始,按月更新。
|
1706
|
+
def taiwan_data_import_export_pi(indic_id: '', indic_name: '',
|
1707
|
+
begin_date: '', end_date: '', field: '')
|
1708
|
+
api_path = format(TAIWANDATAIMPORTEXPORTPI, indic_id, indic_name,
|
1709
|
+
begin_date, end_date, field)
|
1710
|
+
fetch_data api_path
|
1711
|
+
end
|
1712
|
+
|
1713
|
+
# 包含台湾就业数据,具体指标可参见API文档;历史数据从1978年开始,按月更新。
|
1714
|
+
def taiwan_data_employment(indic_id: '', indic_name: '', begin_date: '',
|
1715
|
+
end_date: '', field: '')
|
1716
|
+
api_path = format(TAIWANDATAEMPLOYMENT, indic_id, indic_name,
|
1717
|
+
begin_date, end_date, field)
|
1718
|
+
fetch_data api_path
|
1719
|
+
end
|
1720
|
+
|
1721
|
+
# 包含台湾货币供应量数据,具体指标可参见API文档;历史数据从1961年开始,按月更新。
|
1722
|
+
def taiwan_data_money_supply(indic_id: '', indic_name: '', begin_date: '',
|
1723
|
+
end_date: '', field: '')
|
1724
|
+
api_path = format(TAIWANDATAMONEYSUPPLY, indic_id, indic_name,
|
1725
|
+
begin_date, end_date, field)
|
1726
|
+
fetch_data api_path
|
1727
|
+
end
|
1728
|
+
|
1729
|
+
# 包含台湾存贷款数据,具体指标可参见API文档;历史数据从1997年开始,按月更新。
|
1730
|
+
def taiwan_data_lending_deposit(indic_id: '', indic_name: '',
|
1731
|
+
begin_date: '', end_date: '', field: '')
|
1732
|
+
api_path = format(TAIWANDATALENDINGDEPOSIT, indic_id, indic_name,
|
1733
|
+
begin_date, end_date, field)
|
1734
|
+
fetch_data api_path
|
1735
|
+
end
|
1736
|
+
|
1737
|
+
# 包含台湾准备金数据,具体指标可参见API文档;历史数据从1998年开始,按月更新。
|
1738
|
+
def taiwan_data_reserve_fund(indic_id: '', indic_name: '', begin_date: '',
|
1739
|
+
end_date: '', field: '')
|
1740
|
+
api_path = format(TAIWANDATARESERVEFUND, indic_id, indic_name,
|
1741
|
+
begin_date, end_date, field)
|
1742
|
+
fetch_data api_path
|
1743
|
+
end
|
1744
|
+
|
1745
|
+
# 包含台湾景气指数数据,具体指标可参见API文档;历史数据从1982年开始,按月更新。
|
1746
|
+
def taiwan_data_climate_index(indic_id: '', indic_name: '',
|
1747
|
+
begin_date: '', end_date: '', field: '')
|
1748
|
+
api_path = format(TAIWANDATACLIMATEINDEX, indic_id, indic_name,
|
1749
|
+
begin_date, end_date, field)
|
1750
|
+
fetch_data api_path
|
1751
|
+
end
|
1752
|
+
|
1753
|
+
# 包含台湾财政收支数据,具体指标可参见API文档;历史数据从1961年开始,按月更新。
|
1754
|
+
def taiwan_data_finance(indic_id: '', indic_name: '', begin_date: '',
|
1755
|
+
end_date: '', field: '')
|
1756
|
+
api_path = format(TAIWANDATAFINANCE, indic_id, indic_name, begin_date,
|
1757
|
+
end_date, field)
|
1758
|
+
fetch_data api_path
|
1759
|
+
end
|
1760
|
+
|
1761
|
+
# 包含台湾工业生产指数数据,具体指标可参见API文档;历史数据从1971年开始,按月更新。
|
1762
|
+
def taiwan_data_industrial_pi(indic_id: '', indic_name: '',
|
1763
|
+
begin_date: '', end_date: '', field: '')
|
1764
|
+
api_path = format(TAIWANDATAINDUSTRIALPI, indic_id, indic_name,
|
1765
|
+
begin_date, end_date, field)
|
1766
|
+
fetch_data api_path
|
1767
|
+
end
|
1768
|
+
|
1769
|
+
# 包含台湾房地产数据,具体指标可参见API文档;历史数据从1991年开始,按月更新。
|
1770
|
+
def taiwan_data_real_estate(indic_id: '', indic_name: '', begin_date: '',
|
1771
|
+
end_date: '', field: '')
|
1772
|
+
api_path = format(TAIWANDATAREALESTATE, indic_id, indic_name,
|
1773
|
+
begin_date, end_date, field)
|
1774
|
+
fetch_data api_path
|
1775
|
+
end
|
1776
|
+
|
1777
|
+
# 包含台湾旅游业数据,具体指标可参见API文档;历史数据从1999年开始,按月更新。
|
1778
|
+
def taiwan_data_tourism(indic_id: '', indic_name: '', begin_date: '',
|
1779
|
+
end_date: '', field: '')
|
1780
|
+
api_path = format(TAIWANDATATOURISM, indic_id, indic_name, begin_date,
|
1781
|
+
end_date, field)
|
1782
|
+
fetch_data api_path
|
1783
|
+
end
|
1784
|
+
|
1785
|
+
# 包含台湾两岸贸易数据,具体指标可参见API文档;历史数据从1997年开始,按月更新。
|
1786
|
+
def taiwan_data_cross_strait_trade(indic_id: '', indic_name: '',
|
1787
|
+
begin_date: '', end_date: '',
|
1788
|
+
field: '')
|
1789
|
+
api_path = format(TAIWANDATACROSSSTRAITTRADE, indic_id, indic_name,
|
1790
|
+
begin_date, end_date, field)
|
1791
|
+
fetch_data api_path
|
1792
|
+
end
|
1793
|
+
|
1794
|
+
# 包含台湾商业与经济数据,具体指标可参见API文档;历史数据从1999年开始,按月更新。
|
1795
|
+
def taiwan_data_businessand_economy(indic_id: '', indic_name: '',
|
1796
|
+
begin_date: '', end_date: '',
|
1797
|
+
field: '')
|
1798
|
+
api_path = format(TAIWANDATABUSINESSANDECONOMY, indic_id, indic_name,
|
1799
|
+
begin_date, end_date, field)
|
1800
|
+
fetch_data api_path
|
1801
|
+
end
|
1802
|
+
|
1803
|
+
# 包含台湾利率数据,具体指标可参见API文档;历史数据从2002年5月开始,按日更新。
|
1804
|
+
def taiwan_data_interest_rates(indic_id: '', indic_name: '',
|
1805
|
+
begin_date: '', end_date: '', field: '')
|
1806
|
+
api_path = format(TAIWANDATAINTERESTRATES, indic_id, indic_name,
|
1807
|
+
begin_date, end_date, field)
|
1808
|
+
fetch_data api_path
|
1809
|
+
end
|
1810
|
+
|
1811
|
+
# 包含台湾汇率数据,具体指标可参见API文档;历史数据从1993年1月开始,按日更新。
|
1812
|
+
def taiwan_data_exchange_rate(indic_id: '', indic_name: '',
|
1813
|
+
begin_date: '', end_date: '', field: '')
|
1814
|
+
api_path = format(TAIWANDATAEXCHANGERATE, indic_id, indic_name,
|
1815
|
+
begin_date, end_date, field)
|
1816
|
+
fetch_data api_path
|
1817
|
+
end
|
1818
|
+
|
1819
|
+
# 包含澳门GDP数据,具体指标可参见API文档;历史数据从2000年开始,按季更新。
|
1820
|
+
def macao_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
1821
|
+
end_date: '', field: '')
|
1822
|
+
api_path = format(MACAODATAGDP, indic_id, indic_name, begin_date,
|
1823
|
+
end_date, field)
|
1824
|
+
fetch_data api_path
|
1825
|
+
end
|
1826
|
+
|
1827
|
+
# 包含澳门价格指数数据,具体指标可参见API文档;历史数据从1998年开始,按月更新。
|
1828
|
+
def macao_data_price_index(indic_id: '', indic_name: '', begin_date: '',
|
1829
|
+
end_date: '', field: '')
|
1830
|
+
api_path = format(MACAODATAPRICEINDEX, indic_id, indic_name, begin_date,
|
1831
|
+
end_date, field)
|
1832
|
+
fetch_data api_path
|
1833
|
+
end
|
1834
|
+
|
1835
|
+
# 包含澳门就业数据,具体指标可参见API文档;历史数据从1996年开始,按月更新。
|
1836
|
+
def macao_data_employment(indic_id: '', indic_name: '', begin_date: '',
|
1837
|
+
end_date: '', field: '')
|
1838
|
+
api_path = format(MACAODATAEMPLOYMENT, indic_id, indic_name, begin_date,
|
1839
|
+
end_date, field)
|
1840
|
+
fetch_data api_path
|
1841
|
+
end
|
1842
|
+
|
1843
|
+
# 包含澳门货币供应量数据,具体指标可参见API文档;历史数据从1984年开始,按月更新。
|
1844
|
+
def macao_data_money_supply(indic_id: '', indic_name: '', begin_date: '',
|
1845
|
+
end_date: '', field: '')
|
1846
|
+
api_path = format(MACAODATAMONEYSUPPLY, indic_id, indic_name,
|
1847
|
+
begin_date, end_date, field)
|
1848
|
+
fetch_data api_path
|
1849
|
+
end
|
1850
|
+
|
1851
|
+
# 包含澳门外汇储备数据,具体指标可参见API文档;历史数据从1984年开始,按月更新。
|
1852
|
+
def macao_data_foreign_exchange_reserves(indic_id: '', indic_name: '',
|
1853
|
+
begin_date: '', end_date: '',
|
1854
|
+
field: '')
|
1855
|
+
api_path = format(MACAODATAFOREIGNEXCHANGERESERVES, indic_id,
|
1856
|
+
indic_name, begin_date, end_date, field)
|
1857
|
+
fetch_data api_path
|
1858
|
+
end
|
1859
|
+
|
1860
|
+
# 包含澳门旅游业数据,具体指标可参见API文档;历史数据从1997年开始,按月更新。
|
1861
|
+
def macao_data_tourism(indic_id: '', indic_name: '', begin_date: '',
|
1862
|
+
end_date: '', field: '')
|
1863
|
+
api_path = format(MACAODATATOURISM, indic_id, indic_name, begin_date,
|
1864
|
+
end_date, field)
|
1865
|
+
fetch_data api_path
|
1866
|
+
end
|
1867
|
+
|
1868
|
+
# 包含澳门博彩业数据,具体指标可参见API文档;历史数据从2005年开始,按月更新。
|
1869
|
+
def macao_data_gaming_industry(indic_id: '', indic_name: '',
|
1870
|
+
begin_date: '', end_date: '', field: '')
|
1871
|
+
api_path = format(MACAODATAGAMINGINDUSTRY, indic_id, indic_name,
|
1872
|
+
begin_date, end_date, field)
|
1873
|
+
fetch_data api_path
|
1874
|
+
end
|
1875
|
+
|
1876
|
+
# 包含澳门利率数据,具体指标可参见API文档;历史数据从1988年开始,按月更新。
|
1877
|
+
def macao_data_interest_rates(indic_id: '', indic_name: '',
|
1878
|
+
begin_date: '', end_date: '', field: '')
|
1879
|
+
api_path = format(MACAODATAINTERESTRATES, indic_id, indic_name,
|
1880
|
+
begin_date, end_date, field)
|
1881
|
+
fetch_data api_path
|
1882
|
+
end
|
1883
|
+
|
1884
|
+
# 包含澳门汇率数据,具体指标可参见API文档;历史数据从1984年开始,按月更新。
|
1885
|
+
def macao_data_exchange_rate(indic_id: '', indic_name: '', begin_date: '',
|
1886
|
+
end_date: '', field: '')
|
1887
|
+
api_path = format(MACAODATAEXCHANGERATE, indic_id, indic_name,
|
1888
|
+
begin_date, end_date, field)
|
1889
|
+
fetch_data api_path
|
1890
|
+
end
|
1891
|
+
|
1892
|
+
# 包含俄罗斯GDP数据,具体指标可参见API文档;历史数据从1995年开始,按季更新。
|
1893
|
+
def russia_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
1894
|
+
end_date: '', field: '')
|
1895
|
+
api_path = format(RUSSIADATAGDP, indic_id, indic_name, begin_date,
|
1896
|
+
end_date, field)
|
1897
|
+
fetch_data api_path
|
1898
|
+
end
|
1899
|
+
|
1900
|
+
# 包含俄罗斯对外贸易数据,具体指标可参见API文档;历史数据从1997年开始,按月更新。
|
1901
|
+
def russia_data_foreign_trade(indic_id: '', indic_name: '',
|
1902
|
+
begin_date: '', end_date: '', field: '')
|
1903
|
+
api_path = format(RUSSIADATAFOREIGNTRADE, indic_id, indic_name,
|
1904
|
+
begin_date, end_date, field)
|
1905
|
+
fetch_data api_path
|
1906
|
+
end
|
1907
|
+
|
1908
|
+
# 包含俄罗斯消费者价格指数(CPI)数据,具体指标可参见API文档;历史数据从2002年开始,按月更新。
|
1909
|
+
def russia_data_cpi(indic_id: '', indic_name: '', begin_date: '',
|
1910
|
+
end_date: '', field: '')
|
1911
|
+
api_path = format(RUSSIADATACPI, indic_id, indic_name, begin_date,
|
1912
|
+
end_date, field)
|
1913
|
+
fetch_data api_path
|
1914
|
+
end
|
1915
|
+
|
1916
|
+
# 包含俄罗斯货币供应量数据,具体指标可参见API文档;历史数据从1996年开始,按月更新。
|
1917
|
+
def russia_data_money_supply(indic_id: '', indic_name: '', begin_date: '',
|
1918
|
+
end_date: '', field: '')
|
1919
|
+
api_path = format(RUSSIADATAMONEYSUPPLY, indic_id, indic_name,
|
1920
|
+
begin_date, end_date, field)
|
1921
|
+
fetch_data api_path
|
1922
|
+
end
|
1923
|
+
|
1924
|
+
# 包含俄罗斯景气指数数据,具体指标可参见API文档;历史数据从2009年开始,按月更新。
|
1925
|
+
def russia_data_climate_index(indic_id: '', indic_name: '',
|
1926
|
+
begin_date: '', end_date: '', field: '')
|
1927
|
+
api_path = format(RUSSIADATACLIMATEINDEX, indic_id, indic_name,
|
1928
|
+
begin_date, end_date, field)
|
1929
|
+
fetch_data api_path
|
1930
|
+
end
|
1931
|
+
|
1932
|
+
# 包含俄罗斯利率数据,具体指标可参见API文档;历史数据从2000年8月开始,按日更新。
|
1933
|
+
def russia_data_interest_rates(indic_id: '', indic_name: '',
|
1934
|
+
begin_date: '', end_date: '', field: '')
|
1935
|
+
api_path = format(RUSSIADATAINTERESTRATES, indic_id, indic_name,
|
1936
|
+
begin_date, end_date, field)
|
1937
|
+
fetch_data api_path
|
1938
|
+
end
|
1939
|
+
|
1940
|
+
# 包含俄罗斯汇率数据,具体指标可参见API文档;历史数据从1992年7月开始,按日更新。
|
1941
|
+
def russia_data_exchange_rate(indic_id: '', indic_name: '',
|
1942
|
+
begin_date: '', end_date: '', field: '')
|
1943
|
+
api_path = format(RUSSIADATAEXCHANGERATE, indic_id, indic_name,
|
1944
|
+
begin_date, end_date, field)
|
1945
|
+
fetch_data api_path
|
1946
|
+
end
|
1947
|
+
|
1948
|
+
# 包含巴西GDP数据,具体指标可参见API文档;历史数据从2000年开始,按季更新。
|
1949
|
+
def brazil_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
1950
|
+
end_date: '', field: '')
|
1951
|
+
api_path = format(BRAZILDATAGDP, indic_id, indic_name, begin_date,
|
1952
|
+
end_date, field)
|
1953
|
+
fetch_data api_path
|
1954
|
+
end
|
1955
|
+
|
1956
|
+
# 包含巴西对外贸易数据,具体指标可参见API文档;历史数据从1996年开始,按月更新。
|
1957
|
+
def brazil_data_foreign_trade(indic_id: '', indic_name: '',
|
1958
|
+
begin_date: '', end_date: '', field: '')
|
1959
|
+
api_path = format(BRAZILDATAFOREIGNTRADE, indic_id, indic_name,
|
1960
|
+
begin_date, end_date, field)
|
1961
|
+
fetch_data api_path
|
1962
|
+
end
|
1963
|
+
|
1964
|
+
# 包含巴西价格指数数据,具体指标可参见API文档;历史数据从1970年开始,按月更新。
|
1965
|
+
def brazil_data_price_index(indic_id: '', indic_name: '', begin_date: '',
|
1966
|
+
end_date: '', field: '')
|
1967
|
+
api_path = format(BRAZILDATAPRICEINDEX, indic_id, indic_name,
|
1968
|
+
begin_date, end_date, field)
|
1969
|
+
fetch_data api_path
|
1970
|
+
end
|
1971
|
+
|
1972
|
+
# 包含巴西就业数据,具体指标可参见API文档;历史数据从1997年开始,按月更新。
|
1973
|
+
def brazil_data_employment(indic_id: '', indic_name: '', begin_date: '',
|
1974
|
+
end_date: '', field: '')
|
1975
|
+
api_path = format(BRAZILDATAEMPLOYMENT, indic_id, indic_name,
|
1976
|
+
begin_date, end_date, field)
|
1977
|
+
fetch_data api_path
|
1978
|
+
end
|
1979
|
+
|
1980
|
+
# 包含巴西货币供应量数据,具体指标可参见API文档;历史数据从1988年开始,按月更新。
|
1981
|
+
def brazil_data_money_supply(indic_id: '', indic_name: '', begin_date: '',
|
1982
|
+
end_date: '', field: '')
|
1983
|
+
api_path = format(BRAZILDATAMONEYSUPPLY, indic_id, indic_name,
|
1984
|
+
begin_date, end_date, field)
|
1985
|
+
fetch_data api_path
|
1986
|
+
end
|
1987
|
+
|
1988
|
+
# 包含巴西景气指数数据,具体指标可参见API文档;历史数据从2007年开始,按月更新。
|
1989
|
+
def brazil_data_climate_index(indic_id: '', indic_name: '',
|
1990
|
+
begin_date: '', end_date: '', field: '')
|
1991
|
+
api_path = format(BRAZILDATACLIMATEINDEX, indic_id, indic_name,
|
1992
|
+
begin_date, end_date, field)
|
1993
|
+
fetch_data api_path
|
1994
|
+
end
|
1995
|
+
|
1996
|
+
# 包含巴西零售销售数据,具体指标可参见API文档;历史数据从2004年开始,按月更新。
|
1997
|
+
def brazil_data_retail_sale(indic_id: '', indic_name: '', begin_date: '',
|
1998
|
+
end_date: '', field: '')
|
1999
|
+
api_path = format(BRAZILDATARETAILSALE, indic_id, indic_name,
|
2000
|
+
begin_date, end_date, field)
|
2001
|
+
fetch_data api_path
|
2002
|
+
end
|
2003
|
+
|
2004
|
+
# 包含巴西利率数据,具体指标可参见API文档;历史数据从2011年9月开始,按日更新。
|
2005
|
+
def brazil_data_interest_rates(indic_id: '', indic_name: '',
|
2006
|
+
begin_date: '', end_date: '', field: '')
|
2007
|
+
api_path = format(BRAZILDATAINTERESTRATES, indic_id, indic_name,
|
2008
|
+
begin_date, end_date, field)
|
2009
|
+
fetch_data api_path
|
2010
|
+
end
|
2011
|
+
|
2012
|
+
# 包含巴西汇率数据,具体指标可参见API文档;历史数据从1999年4月开始,按日更新。
|
2013
|
+
def brazil_data_exchange_rate(indic_id: '', indic_name: '',
|
2014
|
+
begin_date: '', end_date: '', field: '')
|
2015
|
+
api_path = format(BRAZILDATAEXCHANGERATE, indic_id, indic_name,
|
2016
|
+
begin_date, end_date, field)
|
2017
|
+
fetch_data api_path
|
2018
|
+
end
|
2019
|
+
|
2020
|
+
# 包含南非GDP数据,具体指标可参见API文档;历史数据从1993年开始,按季更新。
|
2021
|
+
def south_africa_data_gdp(indic_id: '', indic_name: '', begin_date: '',
|
2022
|
+
end_date: '', field: '')
|
2023
|
+
api_path = format(SOUTHAFRICADATAGDP, indic_id, indic_name, begin_date,
|
2024
|
+
end_date, field)
|
2025
|
+
fetch_data api_path
|
2026
|
+
end
|
2027
|
+
|
2028
|
+
# 包含南非就业与失业数据,具体指标可参见API文档;历史数据从2006年开始,按季更新。
|
2029
|
+
def south_africa_data_employment_unemployment(indic_id: '',
|
2030
|
+
indic_name: '',
|
2031
|
+
begin_date: '',
|
2032
|
+
end_date: '', field: '')
|
2033
|
+
api_path = format(SOUTHAFRICADATAEMPLOYMENTUNEMPLOYMENT, indic_id,
|
2034
|
+
indic_name, begin_date, end_date, field)
|
2035
|
+
fetch_data api_path
|
2036
|
+
end
|
2037
|
+
|
2038
|
+
# 包含南非对外贸易数据,具体指标可参见API文档;历史数据从2004年开始,按月更新。
|
2039
|
+
def south_africa_data_foreign_trade(indic_id: '', indic_name: '',
|
2040
|
+
begin_date: '', end_date: '',
|
2041
|
+
field: '')
|
2042
|
+
api_path = format(SOUTHAFRICADATAFOREIGNTRADE, indic_id, indic_name,
|
2043
|
+
begin_date, end_date, field)
|
2044
|
+
fetch_data api_path
|
2045
|
+
end
|
2046
|
+
|
2047
|
+
# 包含南非消费者价格指数(CPI)数据,具体指标可参见API文档;历史数据从2008年开始,按月更新。
|
2048
|
+
def south_africa_data_cpi(indic_id: '', indic_name: '', begin_date: '',
|
2049
|
+
end_date: '', field: '')
|
2050
|
+
api_path = format(SOUTHAFRICADATACPI, indic_id, indic_name, begin_date,
|
2051
|
+
end_date, field)
|
2052
|
+
fetch_data api_path
|
2053
|
+
end
|
2054
|
+
|
2055
|
+
# 包含南非货币供应量数据,具体指标可参见API文档;历史数据从1965年开始,按月更新。
|
2056
|
+
def south_africa_data_money_supply(indic_id: '', indic_name: '',
|
2057
|
+
begin_date: '', end_date: '',
|
2058
|
+
field: '')
|
2059
|
+
api_path = format(SOUTHAFRICADATAMONEYSUPPLY, indic_id, indic_name,
|
2060
|
+
begin_date, end_date, field)
|
2061
|
+
fetch_data api_path
|
2062
|
+
end
|
2063
|
+
|
2064
|
+
# 包含南非景气指数数据,具体指标可参见API文档;历史数据从1970年开始,按月更新。
|
2065
|
+
def south_africa_data_climate_index(indic_id: '', indic_name: '',
|
2066
|
+
begin_date: '', end_date: '',
|
2067
|
+
field: '')
|
2068
|
+
api_path = format(SOUTHAFRICADATACLIMATEINDEX, indic_id, indic_name,
|
2069
|
+
begin_date, end_date, field)
|
2070
|
+
fetch_data api_path
|
2071
|
+
end
|
2072
|
+
|
2073
|
+
# 包含南非工业数据,具体指标可参见API文档;历史数据从1993年开始,按月更新。
|
2074
|
+
def south_africa_data_industry(indic_id: '', indic_name: '',
|
2075
|
+
begin_date: '', end_date: '', field: '')
|
2076
|
+
api_path = format(SOUTHAFRICADATAINDUSTRY, indic_id, indic_name,
|
2077
|
+
begin_date, end_date, field)
|
2078
|
+
fetch_data api_path
|
2079
|
+
end
|
2080
|
+
|
2081
|
+
# 包含南非房地产数据,具体指标可参见API文档;历史数据从1999年开始,按月更新。
|
2082
|
+
def south_africa_data_real_estate(indic_id: '', indic_name: '',
|
2083
|
+
begin_date: '', end_date: '',
|
2084
|
+
field: '')
|
2085
|
+
api_path = format(SOUTHAFRICADATAREALESTATE, indic_id, indic_name,
|
2086
|
+
begin_date, end_date, field)
|
2087
|
+
fetch_data api_path
|
2088
|
+
end
|
2089
|
+
|
2090
|
+
# 包含南非零售销售数据,具体指标可参见API文档;历史数据从2000年开始,按月更新。
|
2091
|
+
def south_africa_data_retail_sales(indic_id: '', indic_name: '',
|
2092
|
+
begin_date: '', end_date: '',
|
2093
|
+
field: '')
|
2094
|
+
api_path = format(SOUTHAFRICADATARETAILSALES, indic_id, indic_name,
|
2095
|
+
begin_date, end_date, field)
|
2096
|
+
fetch_data api_path
|
2097
|
+
end
|
2098
|
+
|
2099
|
+
# 包含南非利率数据,具体指标可参见API文档;历史数据从1980年12月开始,按日更新。
|
2100
|
+
def south_africa_data_interest_rates(indic_id: '', indic_name: '',
|
2101
|
+
begin_date: '', end_date: '',
|
2102
|
+
field: '')
|
2103
|
+
api_path = format(SOUTHAFRICADATAINTERESTRATES, indic_id, indic_name,
|
2104
|
+
begin_date, end_date, field)
|
2105
|
+
fetch_data api_path
|
2106
|
+
end
|
2107
|
+
|
2108
|
+
# 包含南非汇率数据,具体指标可参见API文档;历史数据从1970年1月开始,按日更新。
|
2109
|
+
def south_africa_data_exchange_rate(indic_id: '', indic_name: '',
|
2110
|
+
begin_date: '', end_date: '',
|
2111
|
+
field: '')
|
2112
|
+
api_path = format(SOUTHAFRICADATAEXCHANGERATE, indic_id, indic_name,
|
2113
|
+
begin_date, end_date, field)
|
2114
|
+
fetch_data api_path
|
2115
|
+
end
|
2116
|
+
|
2117
|
+
# 包含农林牧渔行业价格类数据,即主要农产品价格,主要畜禽产品价格,猪存栏及猪粮比,主要水产品批发价格(威海市),农产品及农副期货收盘价,消费生产指数,具体指标可参见API文档;历史数据从1947年1月开始,数据按日更新。
|
2118
|
+
def agric_data_price(indic_id: '', indic_name: '', begin_date: '',
|
2119
|
+
end_date: '', field: '')
|
2120
|
+
api_path = format(AGRICDATAPRICE, indic_id, indic_name, begin_date,
|
2121
|
+
end_date, field)
|
2122
|
+
fetch_data api_path
|
2123
|
+
end
|
2124
|
+
|
2125
|
+
# 包含农林牧渔行业产值数据,具体指标可参见API文档;历史数据从2000年3月开始,数据按季更新。
|
2126
|
+
def agric_data_outp_v(indic_id: '', indic_name: '', begin_date: '',
|
2127
|
+
end_date: '', field: '')
|
2128
|
+
api_path = format(AGRICDATAOUTPV, indic_id, indic_name, begin_date,
|
2129
|
+
end_date, field)
|
2130
|
+
fetch_data api_path
|
2131
|
+
end
|
2132
|
+
|
2133
|
+
# 包含美国农业部对全球主要农产品供需预测数据,具体指标可参见API文档;历史数据从1984年6月开始,数据按月更新。
|
2134
|
+
def agric_data_wasde(indic_id: '', indic_name: '', begin_date: '',
|
2135
|
+
end_date: '', field: '')
|
2136
|
+
api_path = format(AGRICDATAWASDE, indic_id, indic_name, begin_date,
|
2137
|
+
end_date, field)
|
2138
|
+
fetch_data api_path
|
2139
|
+
end
|
2140
|
+
|
2141
|
+
# 包含农林牧渔进出口数据,具体指标可参见API文档;历史数据从1997年1月开始,数据按月更新。
|
2142
|
+
def agric_data_impt_expt(indic_id: '', indic_name: '', begin_date: '',
|
2143
|
+
end_date: '', field: '')
|
2144
|
+
api_path = format(AGRICDATAIMPTEXPT, indic_id, indic_name, begin_date,
|
2145
|
+
end_date, field)
|
2146
|
+
fetch_data api_path
|
2147
|
+
end
|
2148
|
+
|
2149
|
+
# 包含食品饮料价格类数据,即酒类零售价,乳制品价格,桶装食用油零售价,肉类批发价,调味品零售价,具体指标可参见API文档;历史数据从2004年1月开始,数据按日更新。
|
2150
|
+
def food_bvg_data_price(indic_id: '', indic_name: '', begin_date: '',
|
2151
|
+
end_date: '', field: '')
|
2152
|
+
api_path = format(FOODBVGDATAPRICE, indic_id, indic_name, begin_date,
|
2153
|
+
end_date, field)
|
2154
|
+
fetch_data api_path
|
2155
|
+
end
|
2156
|
+
|
2157
|
+
# 包含食品饮料产销及库存数据,具体指标可参见API文档;历史数据从1998年3月开始,数据按季更新。
|
2158
|
+
def food_bvg_data_sales_output(indic_id: '', indic_name: '',
|
2159
|
+
begin_date: '', end_date: '', field: '')
|
2160
|
+
api_path = format(FOODBVGDATASALESOUTPUT, indic_id, indic_name,
|
2161
|
+
begin_date, end_date, field)
|
2162
|
+
fetch_data api_path
|
2163
|
+
end
|
2164
|
+
|
2165
|
+
# 包含食品饮料进出口数据,具体指标可参见API文档;历史数据从1998年1月开始,数据按月更新。
|
2166
|
+
def food_bvg_data_impt_expt(indic_id: '', indic_name: '', begin_date: '',
|
2167
|
+
end_date: '', field: '')
|
2168
|
+
api_path = format(FOODBVGDATAIMPTEXPT, indic_id, indic_name, begin_date,
|
2169
|
+
end_date, field)
|
2170
|
+
fetch_data api_path
|
2171
|
+
end
|
2172
|
+
|
2173
|
+
# 包含商品零售及限上收入商品零售社会消费品零售总额数据,具体指标可参见API文档;历史数据从1984年1月开始,数据按月更新。
|
2174
|
+
def comm_trade_data_trscg(indic_id: '', indic_name: '', begin_date: '',
|
2175
|
+
end_date: '', field: '')
|
2176
|
+
api_path = format(COMMTRADEDATATRSCG, indic_id, indic_name, begin_date,
|
2177
|
+
end_date, field)
|
2178
|
+
fetch_data api_path
|
2179
|
+
end
|
2180
|
+
|
2181
|
+
# 包含50家重点大型零售企业销售数据,具体指标可参见API文档;历史数据从2011年7月开始,数据按月更新。
|
2182
|
+
def comm_trade_data_sales50_large_en(indic_id: '', indic_name: '',
|
2183
|
+
begin_date: '', end_date: '',
|
2184
|
+
field: '')
|
2185
|
+
api_path = format(COMMTRADEDATASALES50LARGEEN, indic_id, indic_name,
|
2186
|
+
begin_date, end_date, field)
|
2187
|
+
fetch_data api_path
|
2188
|
+
end
|
2189
|
+
|
2190
|
+
# 包含商业贸易指数及重点流通企业销售数据,如义乌小商品指数、消费者信心指数、RPI,百货店、超市、专业店销售额等,具体指标可参见API文档;历史数据从1993年12月开始,数据按周更新。
|
2191
|
+
def comm_trade_data_index_key_circ_en(indic_id: '', indic_name: '',
|
2192
|
+
begin_date: '', end_date: '',
|
2193
|
+
field: '')
|
2194
|
+
api_path = format(COMMTRADEDATAINDEXKEYCIRCEN, indic_id, indic_name,
|
2195
|
+
begin_date, end_date, field)
|
2196
|
+
fetch_data api_path
|
2197
|
+
end
|
2198
|
+
|
2199
|
+
# 包含餐饮收入及限上单位餐饮收入社会消费品零售总额数据,具体指标可参见API文档;历史数据从2010年1月开始,数据按月更新。
|
2200
|
+
def cater_tour_data_trscg(indic_id: '', indic_name: '', begin_date: '',
|
2201
|
+
end_date: '', field: '')
|
2202
|
+
api_path = format(CATERTOURDATATRSCG, indic_id, indic_name, begin_date,
|
2203
|
+
end_date, field)
|
2204
|
+
fetch_data api_path
|
2205
|
+
end
|
2206
|
+
|
2207
|
+
# 包含全国饭店经营性数据,具体指标可参见API文档;历史数据从2011年1月开始,数据按月更新。
|
2208
|
+
def cater_tour_data_hotels_oper(indic_id: '', indic_name: '',
|
2209
|
+
begin_date: '', end_date: '', field: '')
|
2210
|
+
api_path = format(CATERTOURDATAHOTELSOPER, indic_id, indic_name,
|
2211
|
+
begin_date, end_date, field)
|
2212
|
+
fetch_data api_path
|
2213
|
+
end
|
2214
|
+
|
2215
|
+
# 包含全国酒店开业统计数据,具体指标可参见API文档;历史数据从2009年9月开始,数据按月更新。
|
2216
|
+
def cater_tour_data_new_hotel(indic_id: '', indic_name: '',
|
2217
|
+
begin_date: '', end_date: '', field: '')
|
2218
|
+
api_path = format(CATERTOURDATANEWHOTEL, indic_id, indic_name,
|
2219
|
+
begin_date, end_date, field)
|
2220
|
+
fetch_data api_path
|
2221
|
+
end
|
2222
|
+
|
2223
|
+
# 包含入境旅游接待收汇数据,具体指标可参见API文档;历史数据从2001年1月开始,数据按月更新。
|
2224
|
+
def cater_tour_data_inbound_tour(indic_id: '', indic_name: '',
|
2225
|
+
begin_date: '', end_date: '', field: '')
|
2226
|
+
api_path = format(CATERTOURDATAINBOUNDTOUR, indic_id, indic_name,
|
2227
|
+
begin_date, end_date, field)
|
2228
|
+
fetch_data api_path
|
2229
|
+
end
|
2230
|
+
|
2231
|
+
# 包含医药生物行业产销数据,如中成药、化学原料药的产量等,具体指标可参见API文档;历史数据从2001年1月开始,数据按月更新。
|
2232
|
+
def bio_medicine_data_sales_output(indic_id: '', indic_name: '',
|
2233
|
+
begin_date: '', end_date: '',
|
2234
|
+
field: '')
|
2235
|
+
api_path = format(BIOMEDICINEDATASALESOUTPUT, indic_id, indic_name,
|
2236
|
+
begin_date, end_date, field)
|
2237
|
+
fetch_data api_path
|
2238
|
+
end
|
2239
|
+
|
2240
|
+
# 包含医药生物行业进出口数据,如药品、中药材及医疗器械的进出口等,具体指标可参见API文档;历史数据从1998年1月开始,数据按月更新。
|
2241
|
+
def bio_medicine_data_impt_expt(indic_id: '', indic_name: '',
|
2242
|
+
begin_date: '', end_date: '', field: '')
|
2243
|
+
api_path = format(BIOMEDICINEDATAIMPTEXPT, indic_id, indic_name,
|
2244
|
+
begin_date, end_date, field)
|
2245
|
+
fetch_data api_path
|
2246
|
+
end
|
2247
|
+
|
2248
|
+
# 包含石油化工行业价格类数据,如石油价格、主要化工产品价格、中纤价格指数等,具体指标可参见API文档;历史数据从1994年1月开始,数据按日更新。
|
2249
|
+
def petrochem_data_price(indic_id: '', indic_name: '', begin_date: '',
|
2250
|
+
end_date: '', field: '')
|
2251
|
+
api_path = format(PETROCHEMDATAPRICE, indic_id, indic_name, begin_date,
|
2252
|
+
end_date, field)
|
2253
|
+
fetch_data api_path
|
2254
|
+
end
|
2255
|
+
|
2256
|
+
# 包含石油化工行业产销及库存数据,具体指标可参见API文档;历史数据从1982年8月开始,数据按周更新。
|
2257
|
+
def petrochem_data_sales_output(indic_id: '', indic_name: '',
|
2258
|
+
begin_date: '', end_date: '', field: '')
|
2259
|
+
api_path = format(PETROCHEMDATASALESOUTPUT, indic_id, indic_name,
|
2260
|
+
begin_date, end_date, field)
|
2261
|
+
fetch_data api_path
|
2262
|
+
end
|
2263
|
+
|
2264
|
+
# 包含石油化工行业进出口数据,具体指标可参见API文档;历史数据从1998年1月开始,数据按月更新。
|
2265
|
+
def petrochem_data_impt_expt(indic_id: '', indic_name: '', begin_date: '',
|
2266
|
+
end_date: '', field: '')
|
2267
|
+
api_path = format(PETROCHEMDATAIMPTEXPT, indic_id, indic_name,
|
2268
|
+
begin_date, end_date, field)
|
2269
|
+
fetch_data api_path
|
2270
|
+
end
|
2271
|
+
|
2272
|
+
# 包含服装纺织行业价格类数据,如棉花到厂价、中国棉花价格指数、中国纱线价格指数等,具体指标可参见API文档;历史数据从2006年1月开始,数据按日更新。
|
2273
|
+
def cloth_tex_data_price(indic_id: '', indic_name: '', begin_date: '',
|
2274
|
+
end_date: '', field: '')
|
2275
|
+
api_path = format(CLOTHTEXDATAPRICE, indic_id, indic_name, begin_date,
|
2276
|
+
end_date, field)
|
2277
|
+
fetch_data api_path
|
2278
|
+
end
|
2279
|
+
|
2280
|
+
# 包含服装纺织行业产销及库存数据,具体指标可参见API文档;历史数据从1990年1月开始,数据按月更新。
|
2281
|
+
def cloth_tex_data_sales_output(indic_id: '', indic_name: '',
|
2282
|
+
begin_date: '', end_date: '', field: '')
|
2283
|
+
api_path = format(CLOTHTEXDATASALESOUTPUT, indic_id, indic_name,
|
2284
|
+
begin_date, end_date, field)
|
2285
|
+
fetch_data api_path
|
2286
|
+
end
|
2287
|
+
|
2288
|
+
# 包含美国农业部对全球棉花供需预测数据,具体指标可参见API文档;历史数据从1984年6月开始,数据按月更新。
|
2289
|
+
def cloth_tex_data_cotton_wasde(indic_id: '', indic_name: '',
|
2290
|
+
begin_date: '', end_date: '', field: '')
|
2291
|
+
api_path = format(CLOTHTEXDATACOTTONWASDE, indic_id, indic_name,
|
2292
|
+
begin_date, end_date, field)
|
2293
|
+
fetch_data api_path
|
2294
|
+
end
|
2295
|
+
|
2296
|
+
# 包含服装纺织行业进出口数据,具体指标可参见API文档;历史数据从1998年1月开始,数据按月更新。
|
2297
|
+
def cloth_tex_data_impt_expt(indic_id: '', indic_name: '', begin_date: '',
|
2298
|
+
end_date: '', field: '')
|
2299
|
+
api_path = format(CLOTHTEXDATAIMPTEXPT, indic_id, indic_name,
|
2300
|
+
begin_date, end_date, field)
|
2301
|
+
fetch_data api_path
|
2302
|
+
end
|
2303
|
+
|
2304
|
+
# 包含轻工制造行业价格类数据,如FOEX价格指数,具体指标可参见API文档;历史数据从2012年7月开始,数据按周更新。
|
2305
|
+
def light_manuf_data_price(indic_id: '', indic_name: '', begin_date: '',
|
2306
|
+
end_date: '', field: '')
|
2307
|
+
api_path = format(LIGHTMANUFDATAPRICE, indic_id, indic_name, begin_date,
|
2308
|
+
end_date, field)
|
2309
|
+
fetch_data api_path
|
2310
|
+
end
|
2311
|
+
|
2312
|
+
# 包含轻工制造行业产销及库存数据,具体指标可参见API文档;历史数据从2001年1月开始,数据按月更新。
|
2313
|
+
def light_manuf_data_sales_output(indic_id: '', indic_name: '',
|
2314
|
+
begin_date: '', end_date: '',
|
2315
|
+
field: '')
|
2316
|
+
api_path = format(LIGHTMANUFDATASALESOUTPUT, indic_id, indic_name,
|
2317
|
+
begin_date, end_date, field)
|
2318
|
+
fetch_data api_path
|
2319
|
+
end
|
2320
|
+
|
2321
|
+
# 包含轻工制造行业进出口数据,具体指标可参见API文档;历史数据从2000年1月开始,数据按月更新。
|
2322
|
+
def light_manuf_data_impt_expt(indic_id: '', indic_name: '',
|
2323
|
+
begin_date: '', end_date: '', field: '')
|
2324
|
+
api_path = format(LIGHTMANUFDATAIMPTEXPT, indic_id, indic_name,
|
2325
|
+
begin_date, end_date, field)
|
2326
|
+
fetch_data api_path
|
2327
|
+
end
|
2328
|
+
|
2329
|
+
# 包含采掘行业价格类数据,即动力煤、焦煤、焦炭、兰炭价格及煤炭海运运价,具体指标可参见API文档;历史数据从1998年12月开始,数据按日更新。
|
2330
|
+
def mining_data_price(indic_id: '', indic_name: '', begin_date: '',
|
2331
|
+
end_date: '', field: '')
|
2332
|
+
api_path = format(MININGDATAPRICE, indic_id, indic_name, begin_date,
|
2333
|
+
end_date, field)
|
2334
|
+
fetch_data api_path
|
2335
|
+
end
|
2336
|
+
|
2337
|
+
# 包含采掘行业产销运数据,具体指标可参见API文档;历史数据从2008年4月开始,数据按日更新。
|
2338
|
+
def mining_data_outp_sales_transp(indic_id: '', indic_name: '',
|
2339
|
+
begin_date: '', end_date: '',
|
2340
|
+
field: '')
|
2341
|
+
api_path = format(MININGDATAOUTPSALESTRANSP, indic_id, indic_name,
|
2342
|
+
begin_date, end_date, field)
|
2343
|
+
fetch_data api_path
|
2344
|
+
end
|
2345
|
+
|
2346
|
+
# 包含采掘行业进出口数据,具体指标可参见API文档;历史数据从2000年1月开始,数据按月更新。
|
2347
|
+
def mining_data_impt_expt(indic_id: '', indic_name: '', begin_date: '',
|
2348
|
+
end_date: '', field: '')
|
2349
|
+
api_path = format(MININGDATAIMPTEXPT, indic_id, indic_name, begin_date,
|
2350
|
+
end_date, field)
|
2351
|
+
fetch_data api_path
|
2352
|
+
end
|
2353
|
+
|
2354
|
+
# 包含黑色金属行业价格类数据,如铁矿石价格、螺纹钢价格、线材价格,具体指标可参见API文档;历史数据从2008年12月开始,数据按日更新。
|
2355
|
+
def fer_metal_data_price(indic_id: '', indic_name: '', begin_date: '',
|
2356
|
+
end_date: '', field: '')
|
2357
|
+
api_path = format(FERMETALDATAPRICE, indic_id, indic_name, begin_date,
|
2358
|
+
end_date, field)
|
2359
|
+
fetch_data api_path
|
2360
|
+
end
|
2361
|
+
|
2362
|
+
# 包含黑色金属行业产销及库存数据,具体指标可参见API文档;历史数据从1998年2月开始,数据按周更新。
|
2363
|
+
def fer_metal_data_sales_output(indic_id: '', indic_name: '',
|
2364
|
+
begin_date: '', end_date: '', field: '')
|
2365
|
+
api_path = format(FERMETALDATASALESOUTPUT, indic_id, indic_name,
|
2366
|
+
begin_date, end_date, field)
|
2367
|
+
fetch_data api_path
|
2368
|
+
end
|
2369
|
+
|
2370
|
+
# 包含黑色金属行业进出口数据,具体指标可参见API文档;历史数据从1998年1月开始,数据按月更新。
|
2371
|
+
def fer_metal_data_impt_expt(indic_id: '', indic_name: '', begin_date: '',
|
2372
|
+
end_date: '', field: '')
|
2373
|
+
api_path = format(FERMETALDATAIMPTEXPT, indic_id, indic_name,
|
2374
|
+
begin_date, end_date, field)
|
2375
|
+
fetch_data api_path
|
2376
|
+
end
|
2377
|
+
|
2378
|
+
# 包含有色金属行业价格类数据,如铝、铜、铅、锌、锡、镍、金、银等价格类数据,具体指标可参见API文档;历史数据从1968年1月开始,数据按日更新。
|
2379
|
+
def nonfer_metal_data_price(indic_id: '', indic_name: '', begin_date: '',
|
2380
|
+
end_date: '', field: '')
|
2381
|
+
api_path = format(NONFERMETALDATAPRICE, indic_id, indic_name,
|
2382
|
+
begin_date, end_date, field)
|
2383
|
+
fetch_data api_path
|
2384
|
+
end
|
2385
|
+
|
2386
|
+
# 包含有色金属行业产销及库存数据,具体指标可参见API文档;历史数据从1973年3月开始,数据按周更新。
|
2387
|
+
def nonfer_metal_data_sales_output(indic_id: '', indic_name: '',
|
2388
|
+
begin_date: '', end_date: '',
|
2389
|
+
field: '')
|
2390
|
+
api_path = format(NONFERMETALDATASALESOUTPUT, indic_id, indic_name,
|
2391
|
+
begin_date, end_date, field)
|
2392
|
+
fetch_data api_path
|
2393
|
+
end
|
2394
|
+
|
2395
|
+
# 包含有色金属行业进出口数据,具体指标可参见API文档;历史数据从1995年1月开始,数据按月更新。
|
2396
|
+
def nonfer_metal_data_impt_expt(indic_id: '', indic_name: '',
|
2397
|
+
begin_date: '', end_date: '', field: '')
|
2398
|
+
api_path = format(NONFERMETALDATAIMPTEXPT, indic_id, indic_name,
|
2399
|
+
begin_date, end_date, field)
|
2400
|
+
fetch_data api_path
|
2401
|
+
end
|
2402
|
+
|
2403
|
+
# 包含交运设备行业价格类数据,如GAIN市场指数及二手车交易价格等,具体指标可参见API文档;历史数据从2011年2月开始,数据按月更新。
|
2404
|
+
def delivery_eq_data_price(indic_id: '', indic_name: '', begin_date: '',
|
2405
|
+
end_date: '', field: '')
|
2406
|
+
api_path = format(DELIVERYEQDATAPRICE, indic_id, indic_name, begin_date,
|
2407
|
+
end_date, field)
|
2408
|
+
fetch_data api_path
|
2409
|
+
end
|
2410
|
+
|
2411
|
+
# 包含交运设备行业产销数据,如汽车、船舶、飞机等产量,具体指标可参见API文档;历史数据从1958年3月开始,数据按月更新。
|
2412
|
+
def delivery_eq_data_sales_output(indic_id: '', indic_name: '',
|
2413
|
+
begin_date: '', end_date: '',
|
2414
|
+
field: '')
|
2415
|
+
api_path = format(DELIVERYEQDATASALESOUTPUT, indic_id, indic_name,
|
2416
|
+
begin_date, end_date, field)
|
2417
|
+
fetch_data api_path
|
2418
|
+
end
|
2419
|
+
|
2420
|
+
# 包含交运设备行业进出口数据,如汽车、船舶、飞机等进出口,具体指标可参见API文档;历史数据从1998年2月开始,数据按月更新。
|
2421
|
+
def delivery_eq_data_impt_expt(indic_id: '', indic_name: '',
|
2422
|
+
begin_date: '', end_date: '', field: '')
|
2423
|
+
api_path = format(DELIVERYEQDATAIMPTEXPT, indic_id, indic_name,
|
2424
|
+
begin_date, end_date, field)
|
2425
|
+
fetch_data api_path
|
2426
|
+
end
|
2427
|
+
|
2428
|
+
# 包含交通运输行业中铁路运输数据,如铁路旅客、货物周转量等,具体指标可参见API文档;历史数据从1983年12月开始,数据按月更新。
|
2429
|
+
def traffic_trans_data_railway(indic_id: '', indic_name: '',
|
2430
|
+
begin_date: '', end_date: '', field: '')
|
2431
|
+
api_path = format(TRAFFICTRANSDATARAILWAY, indic_id, indic_name,
|
2432
|
+
begin_date, end_date, field)
|
2433
|
+
fetch_data api_path
|
2434
|
+
end
|
2435
|
+
|
2436
|
+
# 包含交通运输行业中公路运输数据,如公路旅客、货物周转量等,具体指标可参见API文档;历史数据从1989年2月开始,数据按月更新。
|
2437
|
+
def traffic_trans_data_road(indic_id: '', indic_name: '', begin_date: '',
|
2438
|
+
end_date: '', field: '')
|
2439
|
+
api_path = format(TRAFFICTRANSDATAROAD, indic_id, indic_name,
|
2440
|
+
begin_date, end_date, field)
|
2441
|
+
fetch_data api_path
|
2442
|
+
end
|
2443
|
+
|
2444
|
+
# 包含交通运输行业中水路运输数据,如波罗的海航运指数,具体指标可参见API文档;历史数据从2007年6月开始,数据按日更新。
|
2445
|
+
def traffic_trans_data_waterway(indic_id: '', indic_name: '',
|
2446
|
+
begin_date: '', end_date: '', field: '')
|
2447
|
+
api_path = format(TRAFFICTRANSDATAWATERWAY, indic_id, indic_name,
|
2448
|
+
begin_date, end_date, field)
|
2449
|
+
fetch_data api_path
|
2450
|
+
end
|
2451
|
+
|
2452
|
+
# 包含交通运输行业中航空运输数据,如航空运输周转量、航班效率等,具体指标可参见API文档;历史数据从1983年8月开始,数据按月更新。
|
2453
|
+
def traffic_trans_data_air(indic_id: '', indic_name: '', begin_date: '',
|
2454
|
+
end_date: '', field: '')
|
2455
|
+
api_path = format(TRAFFICTRANSDATAAIR, indic_id, indic_name, begin_date,
|
2456
|
+
end_date, field)
|
2457
|
+
fetch_data api_path
|
2458
|
+
end
|
2459
|
+
|
2460
|
+
# 包含公用事业行业中电力行业数据,如全国发电量、工业用电量等,具体指标可参见API文档;历史数据从1989年3月开始,数据按月更新。
|
2461
|
+
def util_industry_data_power(indic_id: '', indic_name: '', begin_date: '',
|
2462
|
+
end_date: '', field: '')
|
2463
|
+
api_path = format(UTILINDUSTRYDATAPOWER, indic_id, indic_name,
|
2464
|
+
begin_date, end_date, field)
|
2465
|
+
fetch_data api_path
|
2466
|
+
end
|
2467
|
+
|
2468
|
+
# 包含公用事业行业中供水行业数据,如行业营收、毛利率等,具体指标可参见API文档;历史数据从2003年2月开始,数据按月更新。
|
2469
|
+
def util_industry_data_water(indic_id: '', indic_name: '', begin_date: '',
|
2470
|
+
end_date: '', field: '')
|
2471
|
+
api_path = format(UTILINDUSTRYDATAWATER, indic_id, indic_name,
|
2472
|
+
begin_date, end_date, field)
|
2473
|
+
fetch_data api_path
|
2474
|
+
end
|
2475
|
+
|
2476
|
+
# 包含公用事业行业中燃气供应数据,如行业营收,毛利率等,具体指标可参见API文档;历史数据从2003年3月开始,数据按月更新。
|
2477
|
+
def util_industry_data_gas(indic_id: '', indic_name: '', begin_date: '',
|
2478
|
+
end_date: '', field: '')
|
2479
|
+
api_path = format(UTILINDUSTRYDATAGAS, indic_id, indic_name, begin_date,
|
2480
|
+
end_date, field)
|
2481
|
+
fetch_data api_path
|
2482
|
+
end
|
2483
|
+
|
2484
|
+
# 包含公用事业行业中环保行业数据,如行业固定资产投资及重点城市AQI指数,具体指标可参见API文档;历史数据从2003年3月开始,数据按日更新。
|
2485
|
+
def util_industry_data_envir_prot(indic_id: '', indic_name: '',
|
2486
|
+
begin_date: '', end_date: '',
|
2487
|
+
field: '')
|
2488
|
+
api_path = format(UTILINDUSTRYDATAENVIRPROT, indic_id, indic_name,
|
2489
|
+
begin_date, end_date, field)
|
2490
|
+
fetch_data api_path
|
2491
|
+
end
|
2492
|
+
|
2493
|
+
# 包含电子元件行业价格类数据,如面板价格,电子器件价格指数等,具体指标可参见API文档;历史数据从2007年2月开始,数据按日更新。
|
2494
|
+
def elec_comp_data_price(indic_id: '', indic_name: '', begin_date: '',
|
2495
|
+
end_date: '', field: '')
|
2496
|
+
api_path = format(ELECCOMPDATAPRICE, indic_id, indic_name, begin_date,
|
2497
|
+
end_date, field)
|
2498
|
+
fetch_data api_path
|
2499
|
+
end
|
2500
|
+
|
2501
|
+
# 包含电子元件行业产销数据及半导体BB值,具体指标可参见API文档;历史数据从1998年2月开始,数据按月更新。
|
2502
|
+
def elec_comp_data_sales_output(indic_id: '', indic_name: '',
|
2503
|
+
begin_date: '', end_date: '', field: '')
|
2504
|
+
api_path = format(ELECCOMPDATASALESOUTPUT, indic_id, indic_name,
|
2505
|
+
begin_date, end_date, field)
|
2506
|
+
fetch_data api_path
|
2507
|
+
end
|
2508
|
+
|
2509
|
+
# 包含电子元件行业进出口数据,具体指标可参见API文档;历史数据从1998年1月开始,数据按月更新。
|
2510
|
+
def elec_comp_data_impt_expt(indic_id: '', indic_name: '', begin_date: '',
|
2511
|
+
end_date: '', field: '')
|
2512
|
+
api_path = format(ELECCOMPDATAIMPTEXPT, indic_id, indic_name,
|
2513
|
+
begin_date, end_date, field)
|
2514
|
+
fetch_data api_path
|
2515
|
+
end
|
2516
|
+
|
2517
|
+
# 包含信息设备行业价格类数据,即中国IT市场指数、笔记本市场主流品牌均价、平板电脑市场主流品牌均价,具体指标可参见API文档;历史数据从2007年6月开始,数据按周更新。
|
2518
|
+
def info_eqpt_data_price(indic_id: '', indic_name: '', begin_date: '',
|
2519
|
+
end_date: '', field: '')
|
2520
|
+
api_path = format(INFOEQPTDATAPRICE, indic_id, indic_name, begin_date,
|
2521
|
+
end_date, field)
|
2522
|
+
fetch_data api_path
|
2523
|
+
end
|
2524
|
+
|
2525
|
+
# 包含信息设备行业产销、库存及出货量数据,具体指标可参见API文档;历史数据从1998年2月开始,数据按月更新。
|
2526
|
+
def info_eqpt_data_sales_output(indic_id: '', indic_name: '',
|
2527
|
+
begin_date: '', end_date: '', field: '')
|
2528
|
+
api_path = format(INFOEQPTDATASALESOUTPUT, indic_id, indic_name,
|
2529
|
+
begin_date, end_date, field)
|
2530
|
+
fetch_data api_path
|
2531
|
+
end
|
2532
|
+
|
2533
|
+
# 包含信息设备行业进出口数据,具体指标可参见API文档;历史数据从1998年1月开始,数据按月更新。
|
2534
|
+
def info_eqpt_data_impt_expt(indic_id: '', indic_name: '', begin_date: '',
|
2535
|
+
end_date: '', field: '')
|
2536
|
+
api_path = format(INFOEQPTDATAIMPTEXPT, indic_id, indic_name,
|
2537
|
+
begin_date, end_date, field)
|
2538
|
+
fetch_data api_path
|
2539
|
+
end
|
2540
|
+
|
2541
|
+
# 包含家用电器行业产销数据,具体指标可参见API文档;历史数据从1998年1月开始,数据按月更新。
|
2542
|
+
def household_apls_data_sales_output(indic_id: '', indic_name: '',
|
2543
|
+
begin_date: '', end_date: '',
|
2544
|
+
field: '')
|
2545
|
+
api_path = format(HOUSEHOLDAPLSDATASALESOUTPUT, indic_id, indic_name,
|
2546
|
+
begin_date, end_date, field)
|
2547
|
+
fetch_data api_path
|
2548
|
+
end
|
2549
|
+
|
2550
|
+
# 包含家用电器行业进出口数据,具体指标可参见API文档;历史数据从1998年1月开始,数据按月更新。
|
2551
|
+
def household_apls_data_impt_expt(indic_id: '', indic_name: '',
|
2552
|
+
begin_date: '', end_date: '',
|
2553
|
+
field: '')
|
2554
|
+
api_path = format(HOUSEHOLDAPLSDATAIMPTEXPT, indic_id, indic_name,
|
2555
|
+
begin_date, end_date, field)
|
2556
|
+
fetch_data api_path
|
2557
|
+
end
|
2558
|
+
|
2559
|
+
# 包含信息服务软件产业数据,即行业收入、行业固定投资、软件覆盖人数、软件总启动次数、软件总使用时长,具体指标可参见API文档;历史数据从2008年8月开始,数据按周更新。
|
2560
|
+
def info_serv_data_software(indic_id: '', indic_name: '', begin_date: '',
|
2561
|
+
end_date: '', field: '')
|
2562
|
+
api_path = format(INFOSERVDATASOFTWARE, indic_id, indic_name,
|
2563
|
+
begin_date, end_date, field)
|
2564
|
+
fetch_data api_path
|
2565
|
+
end
|
2566
|
+
|
2567
|
+
# 包含信息服务通信产业数据,即通信运营、邮政运营,具体指标可参见API文档;历史数据从1997年12月开始,数据按月更新。
|
2568
|
+
def info_serv_data_comm(indic_id: '', indic_name: '', begin_date: '',
|
2569
|
+
end_date: '', field: '')
|
2570
|
+
api_path = format(INFOSERVDATACOMM, indic_id, indic_name, begin_date,
|
2571
|
+
end_date, field)
|
2572
|
+
fetch_data api_path
|
2573
|
+
end
|
2574
|
+
|
2575
|
+
# 包含信息服务互联网产业数据,即市场规模、访问次数,具体指标可参见API文档;历史数据从2006年3月开始,数据按周更新。
|
2576
|
+
def info_serv_data_internet(indic_id: '', indic_name: '', begin_date: '',
|
2577
|
+
end_date: '', field: '')
|
2578
|
+
api_path = format(INFOSERVDATAINTERNET, indic_id, indic_name,
|
2579
|
+
begin_date, end_date, field)
|
2580
|
+
fetch_data api_path
|
2581
|
+
end
|
2582
|
+
|
2583
|
+
# 包含房地产行业价格类数据,如中国一手房价、中国二手房价、全球房价等,具体指标可参见API文档;历史数据从1994年11月开始,数据按月更新。
|
2584
|
+
def real_est_data_price(indic_id: '', indic_name: '', begin_date: '',
|
2585
|
+
end_date: '', field: '')
|
2586
|
+
api_path = format(REALESTDATAPRICE, indic_id, indic_name, begin_date,
|
2587
|
+
end_date, field)
|
2588
|
+
fetch_data api_path
|
2589
|
+
end
|
2590
|
+
|
2591
|
+
# 包含房地产行业投资开发及投资资金来源数据,具体指标可参见API文档;历史数据从1994年2月开始,数据按月更新。
|
2592
|
+
def real_est_data_invest_dvpt(indic_id: '', indic_name: '',
|
2593
|
+
begin_date: '', end_date: '', field: '')
|
2594
|
+
api_path = format(REALESTDATAINVESTDVPT, indic_id, indic_name,
|
2595
|
+
begin_date, end_date, field)
|
2596
|
+
fetch_data api_path
|
2597
|
+
end
|
2598
|
+
|
2599
|
+
# 包含房地产行业土地市场数据,如土地成交数据和土地供应数据,具体指标可参见API文档;历史数据从2013年3月开始,数据按月更新。
|
2600
|
+
def real_est_data_land(indic_id: '', indic_name: '', begin_date: '',
|
2601
|
+
end_date: '', field: '')
|
2602
|
+
api_path = format(REALESTDATALAND, indic_id, indic_name, begin_date,
|
2603
|
+
end_date, field)
|
2604
|
+
fetch_data api_path
|
2605
|
+
end
|
2606
|
+
|
2607
|
+
# 包含房地产行业销售和库存数据,具体指标可参见API文档;历史数据从1991年2月开始,数据按周更新。
|
2608
|
+
def real_est_data_sales(indic_id: '', indic_name: '', begin_date: '',
|
2609
|
+
end_date: '', field: '')
|
2610
|
+
api_path = format(REALESTDATASALES, indic_id, indic_name, begin_date,
|
2611
|
+
end_date, field)
|
2612
|
+
fetch_data api_path
|
2613
|
+
end
|
2614
|
+
|
2615
|
+
# 包含建筑建材行业价格类数据,如水泥价格、玻璃价格等,具体指标可参见API文档;历史数据从2009年12月开始,数据按日更新。
|
2616
|
+
def bldg_mater_data_price(indic_id: '', indic_name: '', begin_date: '',
|
2617
|
+
end_date: '', field: '')
|
2618
|
+
api_path = format(BLDGMATERDATAPRICE, indic_id, indic_name, begin_date,
|
2619
|
+
end_date, field)
|
2620
|
+
fetch_data api_path
|
2621
|
+
end
|
2622
|
+
|
2623
|
+
# 包含建筑建材行业产销及库存数据,具体指标可参见API文档;历史数据从1990年1月开始,数据按季更新。
|
2624
|
+
def bldg_mater_data_sales_output(indic_id: '', indic_name: '',
|
2625
|
+
begin_date: '', end_date: '', field: '')
|
2626
|
+
api_path = format(BLDGMATERDATASALESOUTPUT, indic_id, indic_name,
|
2627
|
+
begin_date, end_date, field)
|
2628
|
+
fetch_data api_path
|
2629
|
+
end
|
2630
|
+
|
2631
|
+
# 包含机械设备行业产销数据,如仪器仪表产量、专用设备产量、通用设备产量、工程机械产销等,具体指标可参见API文档;历史数据从1990年1月开始,数据按月更新。
|
2632
|
+
def mchnr_eqpt_data_sales_output(indic_id: '', indic_name: '',
|
2633
|
+
begin_date: '', end_date: '', field: '')
|
2634
|
+
api_path = format(MCHNREQPTDATASALESOUTPUT, indic_id, indic_name,
|
2635
|
+
begin_date, end_date, field)
|
2636
|
+
fetch_data api_path
|
2637
|
+
end
|
2638
|
+
|
2639
|
+
# 包含机械设备行业进出口数据,具体指标可参见API文档;历史数据从2010年1月开始,数据按月更新。
|
2640
|
+
def mchnr_eqpt_data_impt_expt(indic_id: '', indic_name: '',
|
2641
|
+
begin_date: '', end_date: '', field: '')
|
2642
|
+
api_path = format(MCHNREQPTDATAIMPTEXPT, indic_id, indic_name,
|
2643
|
+
begin_date, end_date, field)
|
2644
|
+
fetch_data api_path
|
2645
|
+
end
|
2646
|
+
|
2647
|
+
# 包含银行资产负债数据,如商业银行总资产、总负债等,具体指标可参见API文档;历史数据从2011年1月开始,数据按月更新。
|
2648
|
+
def bank_data_assets_liabilities(indic_id: '', indic_name: '',
|
2649
|
+
begin_date: '', end_date: '', field: '')
|
2650
|
+
api_path = format(BANKDATAASSETSLIABILITIES, indic_id, indic_name,
|
2651
|
+
begin_date, end_date, field)
|
2652
|
+
fetch_data api_path
|
2653
|
+
end
|
2654
|
+
|
2655
|
+
# 包含商业银行业不良贷款数据,如分级别的商业银行不良贷款余额及贷款率,具体指标可参见API文档;历史数据从2003年6月开始,数据按季更新。
|
2656
|
+
def bank_data_non_performing_loans(indic_id: '', indic_name: '',
|
2657
|
+
begin_date: '', end_date: '',
|
2658
|
+
field: '')
|
2659
|
+
api_path = format(BANKDATANONPERFORMINGLOANS, indic_id, indic_name,
|
2660
|
+
begin_date, end_date, field)
|
2661
|
+
fetch_data api_path
|
2662
|
+
end
|
2663
|
+
|
2664
|
+
# 包含证券业经营性指标,如证券业总资产、净资本及营收、利润等,具体指标可参见API文档;历史数据从2008年12月开始,数据按半年更新。
|
2665
|
+
def securities_data_oper_indic(indic_id: '', indic_name: '',
|
2666
|
+
begin_date: '', end_date: '', field: '')
|
2667
|
+
api_path = format(SECURITIESDATAOPERINDIC, indic_id, indic_name,
|
2668
|
+
begin_date, end_date, field)
|
2669
|
+
fetch_data api_path
|
2670
|
+
end
|
2671
|
+
|
2672
|
+
# 包含原保险保费收入数据,如分险种的保费收入,具体指标可参见API文档;历史数据从1999年1月开始,数据按月更新。
|
2673
|
+
def ins_data_prem_pry_insurance(indic_id: '', indic_name: '',
|
2674
|
+
begin_date: '', end_date: '', field: '')
|
2675
|
+
api_path = format(INSDATAPREMPRYINSURANCE, indic_id, indic_name,
|
2676
|
+
begin_date, end_date, field)
|
2677
|
+
fetch_data api_path
|
2678
|
+
end
|
2679
|
+
|
2680
|
+
# 包含保险业保险赔付数据,如分险种的保险业务赔款和给付金额,具体指标可参见API文档;历史数据从1999年1月开始,数据按月更新。
|
2681
|
+
def ins_data_claim_payment(indic_id: '', indic_name: '', begin_date: '',
|
2682
|
+
end_date: '', field: '')
|
2683
|
+
api_path = format(INSDATACLAIMPAYMENT, indic_id, indic_name, begin_date,
|
2684
|
+
end_date, field)
|
2685
|
+
fetch_data api_path
|
2686
|
+
end
|
2687
|
+
|
2688
|
+
# 包含保险资金运用余额数据,如银行存款、股票和债券投资基金等,具体指标可参见API文档;历史数据从1999年1月开始,数据按月更新。
|
2689
|
+
def ins_data_fund_balance(indic_id: '', indic_name: '', begin_date: '',
|
2690
|
+
end_date: '', field: '')
|
2691
|
+
api_path = format(INSDATAFUNDBALANCE, indic_id, indic_name, begin_date,
|
2692
|
+
end_date, field)
|
2693
|
+
fetch_data api_path
|
2694
|
+
end
|
2695
|
+
|
2696
|
+
# 包含保险业总资产和净资产数据,如分险种的保险总资产和净资产,具体指标可参见API文档;历史数据从1999年3月开始,数据按月更新。
|
2697
|
+
def ins_data_assets(indic_id: '', indic_name: '', begin_date: '',
|
2698
|
+
end_date: '', field: '')
|
2699
|
+
api_path = format(INSDATAASSETS, indic_id, indic_name, begin_date,
|
2700
|
+
end_date, field)
|
2701
|
+
fetch_data api_path
|
2702
|
+
end
|
2703
|
+
|
2704
|
+
# 可包含伊利股份(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2705
|
+
def ecommerce_data_yili(indic_id: '', indic_name: '', begin_date: '',
|
2706
|
+
end_date: '', field: '')
|
2707
|
+
api_path = format(ECOMMERCEDATAYILI, indic_id, indic_name, begin_date,
|
2708
|
+
end_date, field)
|
2709
|
+
fetch_data api_path
|
2710
|
+
end
|
2711
|
+
|
2712
|
+
# 可包含光明乳业(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2713
|
+
def ecommerce_data_guangming(indic_id: '', indic_name: '', begin_date: '',
|
2714
|
+
end_date: '', field: '')
|
2715
|
+
api_path = format(ECOMMERCEDATAGUANGMING, indic_id, indic_name,
|
2716
|
+
begin_date, end_date, field)
|
2717
|
+
fetch_data api_path
|
2718
|
+
end
|
2719
|
+
|
2720
|
+
# 可包含承德露露(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2721
|
+
def ecommerce_data_cheng_de_lolo(indic_id: '', indic_name: '',
|
2722
|
+
begin_date: '', end_date: '', field: '')
|
2723
|
+
api_path = format(ECOMMERCEDATACHENGDELOLO, indic_id, indic_name,
|
2724
|
+
begin_date, end_date, field)
|
2725
|
+
fetch_data api_path
|
2726
|
+
end
|
2727
|
+
|
2728
|
+
# 可包含洽洽食品(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2729
|
+
def ecommerce_data_qiaqia(indic_id: '', indic_name: '', begin_date: '',
|
2730
|
+
end_date: '', field: '')
|
2731
|
+
api_path = format(ECOMMERCEDATAQIAQIA, indic_id, indic_name, begin_date,
|
2732
|
+
end_date, field)
|
2733
|
+
fetch_data api_path
|
2734
|
+
end
|
2735
|
+
|
2736
|
+
# 可包含维维股份(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2737
|
+
def ecommerce_data_vv_group(indic_id: '', indic_name: '', begin_date: '',
|
2738
|
+
end_date: '', field: '')
|
2739
|
+
api_path = format(ECOMMERCEDATAVVGROUP, indic_id, indic_name,
|
2740
|
+
begin_date, end_date, field)
|
2741
|
+
fetch_data api_path
|
2742
|
+
end
|
2743
|
+
|
2744
|
+
# 可包含金枫酒业(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2745
|
+
def ecommerce_data_jinfeng_wine(indic_id: '', indic_name: '',
|
2746
|
+
begin_date: '', end_date: '', field: '')
|
2747
|
+
api_path = format(ECOMMERCEDATAJINFENGWINE, indic_id, indic_name,
|
2748
|
+
begin_date, end_date, field)
|
2749
|
+
fetch_data api_path
|
2750
|
+
end
|
2751
|
+
|
2752
|
+
# 可包含古越龙山(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2753
|
+
def ecommerce_data_guyue_longshan(indic_id: '', indic_name: '',
|
2754
|
+
begin_date: '', end_date: '',
|
2755
|
+
field: '')
|
2756
|
+
api_path = format(ECOMMERCEDATAGUYUELONGSHAN, indic_id, indic_name,
|
2757
|
+
begin_date, end_date, field)
|
2758
|
+
fetch_data api_path
|
2759
|
+
end
|
2760
|
+
|
2761
|
+
# 可包含山西汾酒(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2762
|
+
def ecommerce_data_shanxi_fenjiu(indic_id: '', indic_name: '',
|
2763
|
+
begin_date: '', end_date: '', field: '')
|
2764
|
+
api_path = format(ECOMMERCEDATASHANXIFENJIU, indic_id, indic_name,
|
2765
|
+
begin_date, end_date, field)
|
2766
|
+
fetch_data api_path
|
2767
|
+
end
|
2768
|
+
|
2769
|
+
# 可包含张裕A(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2770
|
+
def ecommerce_data_zhangyu_a(indic_id: '', indic_name: '', begin_date: '',
|
2771
|
+
end_date: '', field: '')
|
2772
|
+
api_path = format(ECOMMERCEDATAZHANGYUA, indic_id, indic_name,
|
2773
|
+
begin_date, end_date, field)
|
2774
|
+
fetch_data api_path
|
2775
|
+
end
|
2776
|
+
|
2777
|
+
# 可包含莫高股份(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2778
|
+
def ecommerce_data_mogao(indic_id: '', indic_name: '', begin_date: '',
|
2779
|
+
end_date: '', field: '')
|
2780
|
+
api_path = format(ECOMMERCEDATAMOGAO, indic_id, indic_name, begin_date,
|
2781
|
+
end_date, field)
|
2782
|
+
fetch_data api_path
|
2783
|
+
end
|
2784
|
+
|
2785
|
+
# 可包含克明面业(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2786
|
+
def ecommerce_data_kemen_noodle_mfg(indic_id: '', indic_name: '',
|
2787
|
+
begin_date: '', end_date: '',
|
2788
|
+
field: '')
|
2789
|
+
api_path = format(ECOMMERCEDATAKEMENNOODLEMFG, indic_id, indic_name,
|
2790
|
+
begin_date, end_date, field)
|
2791
|
+
fetch_data api_path
|
2792
|
+
end
|
2793
|
+
|
2794
|
+
# 可包含金字火腿(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2795
|
+
def ecommerce_data_jinzi_ham(indic_id: '', indic_name: '', begin_date: '',
|
2796
|
+
end_date: '', field: '')
|
2797
|
+
api_path = format(ECOMMERCEDATAJINZIHAM, indic_id, indic_name,
|
2798
|
+
begin_date, end_date, field)
|
2799
|
+
fetch_data api_path
|
2800
|
+
end
|
2801
|
+
|
2802
|
+
# 可包含莲花味精(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2803
|
+
def ecommerce_data_lotus(indic_id: '', indic_name: '', begin_date: '',
|
2804
|
+
end_date: '', field: '')
|
2805
|
+
api_path = format(ECOMMERCEDATALOTUS, indic_id, indic_name, begin_date,
|
2806
|
+
end_date, field)
|
2807
|
+
fetch_data api_path
|
2808
|
+
end
|
2809
|
+
|
2810
|
+
# 可包含贝因美(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2811
|
+
def ecommerce_data_beiyin_mate(indic_id: '', indic_name: '',
|
2812
|
+
begin_date: '', end_date: '', field: '')
|
2813
|
+
api_path = format(ECOMMERCEDATABEIYINMATE, indic_id, indic_name,
|
2814
|
+
begin_date, end_date, field)
|
2815
|
+
fetch_data api_path
|
2816
|
+
end
|
2817
|
+
|
2818
|
+
# 可包含青岛海尔(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2819
|
+
def ecommerce_data_qingdao_haier(indic_id: '', indic_name: '',
|
2820
|
+
begin_date: '', end_date: '', field: '')
|
2821
|
+
api_path = format(ECOMMERCEDATAQINGDAOHAIER, indic_id, indic_name,
|
2822
|
+
begin_date, end_date, field)
|
2823
|
+
fetch_data api_path
|
2824
|
+
end
|
2825
|
+
|
2826
|
+
# 可包含TCL集团(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2827
|
+
def ecommerce_data_tcl_group(indic_id: '', indic_name: '', begin_date: '',
|
2828
|
+
end_date: '', field: '')
|
2829
|
+
api_path = format(ECOMMERCEDATATCLGROUP, indic_id, indic_name,
|
2830
|
+
begin_date, end_date, field)
|
2831
|
+
fetch_data api_path
|
2832
|
+
end
|
2833
|
+
|
2834
|
+
# 可包含美的集团(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2835
|
+
def ecommerce_data_midea_group(indic_id: '', indic_name: '',
|
2836
|
+
begin_date: '', end_date: '', field: '')
|
2837
|
+
api_path = format(ECOMMERCEDATAMIDEAGROUP, indic_id, indic_name,
|
2838
|
+
begin_date, end_date, field)
|
2839
|
+
fetch_data api_path
|
2840
|
+
end
|
2841
|
+
|
2842
|
+
# 可包含惠而浦(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2843
|
+
def ecommerce_data_whirlpool(indic_id: '', indic_name: '', begin_date: '',
|
2844
|
+
end_date: '', field: '')
|
2845
|
+
api_path = format(ECOMMERCEDATAWHIRLPOOL, indic_id, indic_name,
|
2846
|
+
begin_date, end_date, field)
|
2847
|
+
fetch_data api_path
|
2848
|
+
end
|
2849
|
+
|
2850
|
+
# 可包含九阳股份(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2851
|
+
def ecommerce_data_joyoung(indic_id: '', indic_name: '', begin_date: '',
|
2852
|
+
end_date: '', field: '')
|
2853
|
+
api_path = format(ECOMMERCEDATAJOYOUNG, indic_id, indic_name,
|
2854
|
+
begin_date, end_date, field)
|
2855
|
+
fetch_data api_path
|
2856
|
+
end
|
2857
|
+
|
2858
|
+
# 可包含华帝股份(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2859
|
+
def ecommerce_data_vatti(indic_id: '', indic_name: '', begin_date: '',
|
2860
|
+
end_date: '', field: '')
|
2861
|
+
api_path = format(ECOMMERCEDATAVATTI, indic_id, indic_name, begin_date,
|
2862
|
+
end_date, field)
|
2863
|
+
fetch_data api_path
|
2864
|
+
end
|
2865
|
+
|
2866
|
+
# 可包含苏泊尔(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2867
|
+
def ecommerce_data_supor(indic_id: '', indic_name: '', begin_date: '',
|
2868
|
+
end_date: '', field: '')
|
2869
|
+
api_path = format(ECOMMERCEDATASUPOR, indic_id, indic_name, begin_date,
|
2870
|
+
end_date, field)
|
2871
|
+
fetch_data api_path
|
2872
|
+
end
|
2873
|
+
|
2874
|
+
# 可包含深康佳A(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2875
|
+
def ecommerce_data_konka(indic_id: '', indic_name: '', begin_date: '',
|
2876
|
+
end_date: '', field: '')
|
2877
|
+
api_path = format(ECOMMERCEDATAKONKA, indic_id, indic_name, begin_date,
|
2878
|
+
end_date, field)
|
2879
|
+
fetch_data api_path
|
2880
|
+
end
|
2881
|
+
|
2882
|
+
# 可包含四川长虹(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2883
|
+
def ecommerce_data_changhong(indic_id: '', indic_name: '', begin_date: '',
|
2884
|
+
end_date: '', field: '')
|
2885
|
+
api_path = format(ECOMMERCEDATACHANGHONG, indic_id, indic_name,
|
2886
|
+
begin_date, end_date, field)
|
2887
|
+
fetch_data api_path
|
2888
|
+
end
|
2889
|
+
|
2890
|
+
# 可包含小天鹅A(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年10月开始,数据频度为日度,按月更新。
|
2891
|
+
def ecommerce_data_little_swan(indic_id: '', indic_name: '',
|
2892
|
+
begin_date: '', end_date: '', field: '')
|
2893
|
+
api_path = format(ECOMMERCEDATALITTLESWAN, indic_id, indic_name,
|
2894
|
+
begin_date, end_date, field)
|
2895
|
+
fetch_data api_path
|
2896
|
+
end
|
2897
|
+
|
2898
|
+
# 可包含美菱电器(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2899
|
+
def ecommerce_data_meiling(indic_id: '', indic_name: '', begin_date: '',
|
2900
|
+
end_date: '', field: '')
|
2901
|
+
api_path = format(ECOMMERCEDATAMEILING, indic_id, indic_name,
|
2902
|
+
begin_date, end_date, field)
|
2903
|
+
fetch_data api_path
|
2904
|
+
end
|
2905
|
+
|
2906
|
+
# 可包含中兴通讯(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2907
|
+
def ecommerce_data_zte(indic_id: '', indic_name: '', begin_date: '',
|
2908
|
+
end_date: '', field: '')
|
2909
|
+
api_path = format(ECOMMERCEDATAZTE, indic_id, indic_name, begin_date,
|
2910
|
+
end_date, field)
|
2911
|
+
fetch_data api_path
|
2912
|
+
end
|
2913
|
+
|
2914
|
+
# 可包含大唐电信(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2915
|
+
def ecommerce_data_datang_telecom(indic_id: '', indic_name: '',
|
2916
|
+
begin_date: '', end_date: '',
|
2917
|
+
field: '')
|
2918
|
+
api_path = format(ECOMMERCEDATADATANGTELECOM, indic_id, indic_name,
|
2919
|
+
begin_date, end_date, field)
|
2920
|
+
fetch_data api_path
|
2921
|
+
end
|
2922
|
+
|
2923
|
+
# 可包含波导股份(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2924
|
+
def ecommerce_data_bird(indic_id: '', indic_name: '', begin_date: '',
|
2925
|
+
end_date: '', field: '')
|
2926
|
+
api_path = format(ECOMMERCEDATABIRD, indic_id, indic_name, begin_date,
|
2927
|
+
end_date, field)
|
2928
|
+
fetch_data api_path
|
2929
|
+
end
|
2930
|
+
|
2931
|
+
# 可包含大华股份(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2932
|
+
def ecommerce_data_dahua_technology(indic_id: '', indic_name: '',
|
2933
|
+
begin_date: '', end_date: '',
|
2934
|
+
field: '')
|
2935
|
+
api_path = format(ECOMMERCEDATADAHUATECHNOLOGY, indic_id, indic_name,
|
2936
|
+
begin_date, end_date, field)
|
2937
|
+
fetch_data api_path
|
2938
|
+
end
|
2939
|
+
|
2940
|
+
# 可包含同方股份(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年12月开始,数据频度为日度,按月更新。
|
2941
|
+
def ecommerce_data_tsinghua_tongfang(indic_id: '', indic_name: '',
|
2942
|
+
begin_date: '', end_date: '',
|
2943
|
+
field: '')
|
2944
|
+
api_path = format(ECOMMERCEDATATSINGHUATONGFANG, indic_id, indic_name,
|
2945
|
+
begin_date, end_date, field)
|
2946
|
+
fetch_data api_path
|
2947
|
+
end
|
2948
|
+
|
2949
|
+
# 可包含七喜控股(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年10月开始,数据频度为日度,按月更新。
|
2950
|
+
def ecommerce_data_hedy(indic_id: '', indic_name: '', begin_date: '',
|
2951
|
+
end_date: '', field: '')
|
2952
|
+
api_path = format(ECOMMERCEDATAHEDY, indic_id, indic_name, begin_date,
|
2953
|
+
end_date, field)
|
2954
|
+
fetch_data api_path
|
2955
|
+
end
|
2956
|
+
|
2957
|
+
# 可包含海天味业(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2958
|
+
def ecommerce_data_haday(indic_id: '', indic_name: '', begin_date: '',
|
2959
|
+
end_date: '', field: '')
|
2960
|
+
api_path = format(ECOMMERCEDATAHADAY, indic_id, indic_name, begin_date,
|
2961
|
+
end_date, field)
|
2962
|
+
fetch_data api_path
|
2963
|
+
end
|
2964
|
+
|
2965
|
+
# 可包含燕京啤酒(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2966
|
+
def ecommerce_data_yanjing_beer(indic_id: '', indic_name: '',
|
2967
|
+
begin_date: '', end_date: '', field: '')
|
2968
|
+
api_path = format(ECOMMERCEDATAYANJINGBEER, indic_id, indic_name,
|
2969
|
+
begin_date, end_date, field)
|
2970
|
+
fetch_data api_path
|
2971
|
+
end
|
2972
|
+
|
2973
|
+
# 可包含麦趣尔(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年10月开始,数据频度为日度,按月更新。
|
2974
|
+
def ecommerce_data_maiquer(indic_id: '', indic_name: '', begin_date: '',
|
2975
|
+
end_date: '', field: '')
|
2976
|
+
api_path = format(ECOMMERCEDATAMAIQUER, indic_id, indic_name,
|
2977
|
+
begin_date, end_date, field)
|
2978
|
+
fetch_data api_path
|
2979
|
+
end
|
2980
|
+
|
2981
|
+
# 可包含中葡股份(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
2982
|
+
def ecommerce_data_citic_guoan_wine(indic_id: '', indic_name: '',
|
2983
|
+
begin_date: '', end_date: '',
|
2984
|
+
field: '')
|
2985
|
+
api_path = format(ECOMMERCEDATACITICGUOANWINE, indic_id, indic_name,
|
2986
|
+
begin_date, end_date, field)
|
2987
|
+
fetch_data api_path
|
2988
|
+
end
|
2989
|
+
|
2990
|
+
# 可包含青青稞酒(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年9月开始,数据频度为日度,按月更新。
|
2991
|
+
def ecommerce_data_qingqing_barley_wine(indic_id: '', indic_name: '',
|
2992
|
+
begin_date: '', end_date: '',
|
2993
|
+
field: '')
|
2994
|
+
api_path = format(ECOMMERCEDATAQINGQINGBARLEYWINE, indic_id, indic_name,
|
2995
|
+
begin_date, end_date, field)
|
2996
|
+
fetch_data api_path
|
2997
|
+
end
|
2998
|
+
|
2999
|
+
# 可包含好想你(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3000
|
+
def ecommerce_data_haoxiangni(indic_id: '', indic_name: '',
|
3001
|
+
begin_date: '', end_date: '', field: '')
|
3002
|
+
api_path = format(ECOMMERCEDATAHAOXIANGNI, indic_id, indic_name,
|
3003
|
+
begin_date, end_date, field)
|
3004
|
+
fetch_data api_path
|
3005
|
+
end
|
3006
|
+
|
3007
|
+
# 可包含涪陵榨菜(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3008
|
+
def ecommerce_data_fuling_zhacai(indic_id: '', indic_name: '',
|
3009
|
+
begin_date: '', end_date: '', field: '')
|
3010
|
+
api_path = format(ECOMMERCEDATAFULINGZHACAI, indic_id, indic_name,
|
3011
|
+
begin_date, end_date, field)
|
3012
|
+
fetch_data api_path
|
3013
|
+
end
|
3014
|
+
|
3015
|
+
# 可包含煌上煌(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3016
|
+
def ecommerce_data_huangshanghuang(indic_id: '', indic_name: '',
|
3017
|
+
begin_date: '', end_date: '',
|
3018
|
+
field: '')
|
3019
|
+
api_path = format(ECOMMERCEDATAHUANGSHANGHUANG, indic_id, indic_name,
|
3020
|
+
begin_date, end_date, field)
|
3021
|
+
fetch_data api_path
|
3022
|
+
end
|
3023
|
+
|
3024
|
+
# 可包含海南椰岛(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3025
|
+
def ecommerce_data_hainan_yedao(indic_id: '', indic_name: '',
|
3026
|
+
begin_date: '', end_date: '', field: '')
|
3027
|
+
api_path = format(ECOMMERCEDATAHAINANYEDAO, indic_id, indic_name,
|
3028
|
+
begin_date, end_date, field)
|
3029
|
+
fetch_data api_path
|
3030
|
+
end
|
3031
|
+
|
3032
|
+
# 可包含双塔食品(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3033
|
+
def ecommerce_data_shuangta_food(indic_id: '', indic_name: '',
|
3034
|
+
begin_date: '', end_date: '', field: '')
|
3035
|
+
api_path = format(ECOMMERCEDATASHUANGTAFOOD, indic_id, indic_name,
|
3036
|
+
begin_date, end_date, field)
|
3037
|
+
fetch_data api_path
|
3038
|
+
end
|
3039
|
+
|
3040
|
+
# 可包含酒鬼酒(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3041
|
+
def ecommerce_data_jiugui_liquor(indic_id: '', indic_name: '',
|
3042
|
+
begin_date: '', end_date: '', field: '')
|
3043
|
+
api_path = format(ECOMMERCEDATAJIUGUILIQUOR, indic_id, indic_name,
|
3044
|
+
begin_date, end_date, field)
|
3045
|
+
fetch_data api_path
|
3046
|
+
end
|
3047
|
+
|
3048
|
+
# 可包含黑芝麻(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3049
|
+
def ecommerce_data_black_sesame(indic_id: '', indic_name: '',
|
3050
|
+
begin_date: '', end_date: '', field: '')
|
3051
|
+
api_path = format(ECOMMERCEDATABLACKSESAME, indic_id, indic_name,
|
3052
|
+
begin_date, end_date, field)
|
3053
|
+
fetch_data api_path
|
3054
|
+
end
|
3055
|
+
|
3056
|
+
# 可包含今世缘(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3057
|
+
def ecommerce_data_kings_luck(indic_id: '', indic_name: '',
|
3058
|
+
begin_date: '', end_date: '', field: '')
|
3059
|
+
api_path = format(ECOMMERCEDATAKINGSLUCK, indic_id, indic_name,
|
3060
|
+
begin_date, end_date, field)
|
3061
|
+
fetch_data api_path
|
3062
|
+
end
|
3063
|
+
|
3064
|
+
# 可包含老白干酒(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3065
|
+
def ecommerce_data_laobaigan_liquor(indic_id: '', indic_name: '',
|
3066
|
+
begin_date: '', end_date: '',
|
3067
|
+
field: '')
|
3068
|
+
api_path = format(ECOMMERCEDATALAOBAIGANLIQUOR, indic_id, indic_name,
|
3069
|
+
begin_date, end_date, field)
|
3070
|
+
fetch_data api_path
|
3071
|
+
end
|
3072
|
+
|
3073
|
+
# 可包含双汇发展(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档。历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3074
|
+
def ecommerce_data_shuanghui_dvpt(indic_id: '', indic_name: '',
|
3075
|
+
begin_date: '', end_date: '',
|
3076
|
+
field: '')
|
3077
|
+
api_path = format(ECOMMERCEDATASHUANGHUIDVPT, indic_id, indic_name,
|
3078
|
+
begin_date, end_date, field)
|
3079
|
+
fetch_data api_path
|
3080
|
+
end
|
3081
|
+
|
3082
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3083
|
+
def ecommerce_data_wuliangye(indic_id: '', indic_name: '', begin_date: '',
|
3084
|
+
end_date: '', field: '')
|
3085
|
+
api_path = format(ECOMMERCEDATAWULIANGYE, indic_id, indic_name,
|
3086
|
+
begin_date, end_date, field)
|
3087
|
+
fetch_data api_path
|
3088
|
+
end
|
3089
|
+
|
3090
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年11月开始,数据频度为日度,按月更新。
|
3091
|
+
def ecommerce_data_gree(indic_id: '', indic_name: '', begin_date: '',
|
3092
|
+
end_date: '', field: '')
|
3093
|
+
api_path = format(ECOMMERCEDATAGREE, indic_id, indic_name, begin_date,
|
3094
|
+
end_date, field)
|
3095
|
+
fetch_data api_path
|
3096
|
+
end
|
3097
|
+
|
3098
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3099
|
+
def ecommerce_data_hisense_electric(indic_id: '', indic_name: '',
|
3100
|
+
begin_date: '', end_date: '',
|
3101
|
+
field: '')
|
3102
|
+
api_path = format(ECOMMERCEDATAHISENSEELECTRIC, indic_id, indic_name,
|
3103
|
+
begin_date, end_date, field)
|
3104
|
+
fetch_data api_path
|
3105
|
+
end
|
3106
|
+
|
3107
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3108
|
+
def ecommerce_data_hisense(indic_id: '', indic_name: '', begin_date: '',
|
3109
|
+
end_date: '', field: '')
|
3110
|
+
api_path = format(ECOMMERCEDATAHISENSE, indic_id, indic_name,
|
3111
|
+
begin_date, end_date, field)
|
3112
|
+
fetch_data api_path
|
3113
|
+
end
|
3114
|
+
|
3115
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年9月开始,数据频度为日度,按月更新。
|
3116
|
+
def ecommerce_data_jiajia_food(indic_id: '', indic_name: '',
|
3117
|
+
begin_date: '', end_date: '', field: '')
|
3118
|
+
api_path = format(ECOMMERCEDATAJIAJIAFOOD, indic_id, indic_name,
|
3119
|
+
begin_date, end_date, field)
|
3120
|
+
fetch_data api_path
|
3121
|
+
end
|
3122
|
+
|
3123
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3124
|
+
def ecommerce_data_robam(indic_id: '', indic_name: '', begin_date: '',
|
3125
|
+
end_date: '', field: '')
|
3126
|
+
api_path = format(ECOMMERCEDATAROBAM, indic_id, indic_name, begin_date,
|
3127
|
+
end_date, field)
|
3128
|
+
fetch_data api_path
|
3129
|
+
end
|
3130
|
+
|
3131
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3132
|
+
def ecommerce_data_asd(indic_id: '', indic_name: '', begin_date: '',
|
3133
|
+
end_date: '', field: '')
|
3134
|
+
api_path = format(ECOMMERCEDATAASD, indic_id, indic_name, begin_date,
|
3135
|
+
end_date, field)
|
3136
|
+
fetch_data api_path
|
3137
|
+
end
|
3138
|
+
|
3139
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3140
|
+
def ecommerce_data_macro(indic_id: '', indic_name: '', begin_date: '',
|
3141
|
+
end_date: '', field: '')
|
3142
|
+
api_path = format(ECOMMERCEDATAMACRO, indic_id, indic_name, begin_date,
|
3143
|
+
end_date, field)
|
3144
|
+
fetch_data api_path
|
3145
|
+
end
|
3146
|
+
|
3147
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3148
|
+
def ecommerce_data_elecpro(indic_id: '', indic_name: '', begin_date: '',
|
3149
|
+
end_date: '', field: '')
|
3150
|
+
api_path = format(ECOMMERCEDATAELECPRO, indic_id, indic_name,
|
3151
|
+
begin_date, end_date, field)
|
3152
|
+
fetch_data api_path
|
3153
|
+
end
|
3154
|
+
|
3155
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年10月开始,数据频度为日度,按月更新。
|
3156
|
+
def ecommerce_data_sanglejin(indic_id: '', indic_name: '', begin_date: '',
|
3157
|
+
end_date: '', field: '')
|
3158
|
+
api_path = format(ECOMMERCEDATASANGLEJIN, indic_id, indic_name,
|
3159
|
+
begin_date, end_date, field)
|
3160
|
+
fetch_data api_path
|
3161
|
+
end
|
3162
|
+
|
3163
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3164
|
+
def ecommerce_data_homa(indic_id: '', indic_name: '', begin_date: '',
|
3165
|
+
end_date: '', field: '')
|
3166
|
+
api_path = format(ECOMMERCEDATAHOMA, indic_id, indic_name, begin_date,
|
3167
|
+
end_date, field)
|
3168
|
+
fetch_data api_path
|
3169
|
+
end
|
3170
|
+
|
3171
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3172
|
+
def ecommerce_data_longda_meat(indic_id: '', indic_name: '',
|
3173
|
+
begin_date: '', end_date: '', field: '')
|
3174
|
+
api_path = format(ECOMMERCEDATALONGDAMEAT, indic_id, indic_name,
|
3175
|
+
begin_date, end_date, field)
|
3176
|
+
fetch_data api_path
|
3177
|
+
end
|
3178
|
+
|
3179
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3180
|
+
def ecommerce_data_by_health(indic_id: '', indic_name: '', begin_date: '',
|
3181
|
+
end_date: '', field: '')
|
3182
|
+
api_path = format(ECOMMERCEDATABYHEALTH, indic_id, indic_name,
|
3183
|
+
begin_date, end_date, field)
|
3184
|
+
fetch_data api_path
|
3185
|
+
end
|
3186
|
+
|
3187
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3188
|
+
def ecommerce_data_haixin(indic_id: '', indic_name: '', begin_date: '',
|
3189
|
+
end_date: '', field: '')
|
3190
|
+
api_path = format(ECOMMERCEDATAHAIXIN, indic_id, indic_name, begin_date,
|
3191
|
+
end_date, field)
|
3192
|
+
fetch_data api_path
|
3193
|
+
end
|
3194
|
+
|
3195
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3196
|
+
def ecommerce_data_vanward(indic_id: '', indic_name: '', begin_date: '',
|
3197
|
+
end_date: '', field: '')
|
3198
|
+
api_path = format(ECOMMERCEDATAVANWARD, indic_id, indic_name,
|
3199
|
+
begin_date, end_date, field)
|
3200
|
+
fetch_data api_path
|
3201
|
+
end
|
3202
|
+
|
3203
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3204
|
+
def ecommerce_data_meida(indic_id: '', indic_name: '', begin_date: '',
|
3205
|
+
end_date: '', field: '')
|
3206
|
+
api_path = format(ECOMMERCEDATAMEIDA, indic_id, indic_name, begin_date,
|
3207
|
+
end_date, field)
|
3208
|
+
fetch_data api_path
|
3209
|
+
end
|
3210
|
+
|
3211
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年9月开始,数据频度为日度,按月更新。
|
3212
|
+
def ecommerce_data_hengshun_vinegarindustry(indic_id: '', indic_name: '',
|
3213
|
+
begin_date: '', end_date: '',
|
3214
|
+
field: '')
|
3215
|
+
api_path = format(ECOMMERCEDATAHENGSHUNVINEGARINDUSTRY, indic_id,
|
3216
|
+
indic_name, begin_date, end_date, field)
|
3217
|
+
fetch_data api_path
|
3218
|
+
end
|
3219
|
+
|
3220
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年11月开始,数据频度为日度,按月更新。
|
3221
|
+
def ecommerce_data_shuijingfang(indic_id: '', indic_name: '',
|
3222
|
+
begin_date: '', end_date: '', field: '')
|
3223
|
+
api_path = format(ECOMMERCEDATASHUIJINGFANG, indic_id, indic_name,
|
3224
|
+
begin_date, end_date, field)
|
3225
|
+
fetch_data api_path
|
3226
|
+
end
|
3227
|
+
|
3228
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年11月开始,数据频度为日度,按月更新。
|
3229
|
+
def ecommerce_data_chunlan(indic_id: '', indic_name: '', begin_date: '',
|
3230
|
+
end_date: '', field: '')
|
3231
|
+
api_path = format(ECOMMERCEDATACHUNLAN, indic_id, indic_name,
|
3232
|
+
begin_date, end_date, field)
|
3233
|
+
fetch_data api_path
|
3234
|
+
end
|
3235
|
+
|
3236
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3237
|
+
def ecommerce_data_yilite(indic_id: '', indic_name: '', begin_date: '',
|
3238
|
+
end_date: '', field: '')
|
3239
|
+
api_path = format(ECOMMERCEDATAYILITE, indic_id, indic_name, begin_date,
|
3240
|
+
end_date, field)
|
3241
|
+
fetch_data api_path
|
3242
|
+
end
|
3243
|
+
|
3244
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3245
|
+
def ecommerce_data_huangshi(indic_id: '', indic_name: '', begin_date: '',
|
3246
|
+
end_date: '', field: '')
|
3247
|
+
api_path = format(ECOMMERCEDATAHUANGSHI, indic_id, indic_name,
|
3248
|
+
begin_date, end_date, field)
|
3249
|
+
fetch_data api_path
|
3250
|
+
end
|
3251
|
+
|
3252
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3253
|
+
def ecommerce_data_yanghe(indic_id: '', indic_name: '', begin_date: '',
|
3254
|
+
end_date: '', field: '')
|
3255
|
+
api_path = format(ECOMMERCEDATAYANGHE, indic_id, indic_name, begin_date,
|
3256
|
+
end_date, field)
|
3257
|
+
fetch_data api_path
|
3258
|
+
end
|
3259
|
+
|
3260
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3261
|
+
def ecommerce_data_sanyuan(indic_id: '', indic_name: '', begin_date: '',
|
3262
|
+
end_date: '', field: '')
|
3263
|
+
api_path = format(ECOMMERCEDATASANYUAN, indic_id, indic_name,
|
3264
|
+
begin_date, end_date, field)
|
3265
|
+
fetch_data api_path
|
3266
|
+
end
|
3267
|
+
|
3268
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3269
|
+
def ecommerce_data_tuopai_shede(indic_id: '', indic_name: '',
|
3270
|
+
begin_date: '', end_date: '', field: '')
|
3271
|
+
api_path = format(ECOMMERCEDATATUOPAISHEDE, indic_id, indic_name,
|
3272
|
+
begin_date, end_date, field)
|
3273
|
+
fetch_data api_path
|
3274
|
+
end
|
3275
|
+
|
3276
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3277
|
+
def ecommerce_data_kuaijishan(indic_id: '', indic_name: '',
|
3278
|
+
begin_date: '', end_date: '', field: '')
|
3279
|
+
api_path = format(ECOMMERCEDATAKUAIJISHAN, indic_id, indic_name,
|
3280
|
+
begin_date, end_date, field)
|
3281
|
+
fetch_data api_path
|
3282
|
+
end
|
3283
|
+
|
3284
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2015年1月开始,数据频度为日度,按月更新。
|
3285
|
+
def ecommerce_data_tonghua(indic_id: '', indic_name: '', begin_date: '',
|
3286
|
+
end_date: '', field: '')
|
3287
|
+
api_path = format(ECOMMERCEDATATONGHUA, indic_id, indic_name,
|
3288
|
+
begin_date, end_date, field)
|
3289
|
+
fetch_data api_path
|
3290
|
+
end
|
3291
|
+
|
3292
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3293
|
+
def ecommerce_data_kweichow_moutai_group(indic_id: '', indic_name: '',
|
3294
|
+
begin_date: '', end_date: '',
|
3295
|
+
field: '')
|
3296
|
+
api_path = format(ECOMMERCEDATAKWEICHOWMOUTAIGROUP, indic_id,
|
3297
|
+
indic_name, begin_date, end_date, field)
|
3298
|
+
fetch_data api_path
|
3299
|
+
end
|
3300
|
+
|
3301
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3302
|
+
def ecommerce_data_tsing_tao(indic_id: '', indic_name: '', begin_date: '',
|
3303
|
+
end_date: '', field: '')
|
3304
|
+
api_path = format(ECOMMERCEDATATSINGTAO, indic_id, indic_name,
|
3305
|
+
begin_date, end_date, field)
|
3306
|
+
fetch_data api_path
|
3307
|
+
end
|
3308
|
+
|
3309
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年11月开始,数据频度为日度,按月更新。
|
3310
|
+
def ecommerce_data_gujing(indic_id: '', indic_name: '', begin_date: '',
|
3311
|
+
end_date: '', field: '')
|
3312
|
+
api_path = format(ECOMMERCEDATAGUJING, indic_id, indic_name, begin_date,
|
3313
|
+
end_date, field)
|
3314
|
+
fetch_data api_path
|
3315
|
+
end
|
3316
|
+
|
3317
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3318
|
+
def ecommerce_data_luzhou_laojiao(indic_id: '', indic_name: '',
|
3319
|
+
begin_date: '', end_date: '',
|
3320
|
+
field: '')
|
3321
|
+
api_path = format(ECOMMERCEDATALUZHOULAOJIAO, indic_id, indic_name,
|
3322
|
+
begin_date, end_date, field)
|
3323
|
+
fetch_data api_path
|
3324
|
+
end
|
3325
|
+
|
3326
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年8月开始,数据频度为日度,按月更新。
|
3327
|
+
def ecommerce_data_shanghai_maling(indic_id: '', indic_name: '',
|
3328
|
+
begin_date: '', end_date: '',
|
3329
|
+
field: '')
|
3330
|
+
api_path = format(ECOMMERCEDATASHANGHAIMALING, indic_id, indic_name,
|
3331
|
+
begin_date, end_date, field)
|
3332
|
+
fetch_data api_path
|
3333
|
+
end
|
3334
|
+
|
3335
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2015年1月开始,数据频度为日度,按月更新。
|
3336
|
+
def ecommerce_data_black_cattle_food(indic_id: '', indic_name: '',
|
3337
|
+
begin_date: '', end_date: '',
|
3338
|
+
field: '')
|
3339
|
+
api_path = format(ECOMMERCEDATABLACKCATTLEFOOD, indic_id, indic_name,
|
3340
|
+
begin_date, end_date, field)
|
3341
|
+
fetch_data api_path
|
3342
|
+
end
|
3343
|
+
|
3344
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2015年1月开始,数据频度为日度,按月更新。
|
3345
|
+
def ecommerce_data_delisi(indic_id: '', indic_name: '', begin_date: '',
|
3346
|
+
end_date: '', field: '')
|
3347
|
+
api_path = format(ECOMMERCEDATADELISI, indic_id, indic_name, begin_date,
|
3348
|
+
end_date, field)
|
3349
|
+
fetch_data api_path
|
3350
|
+
end
|
3351
|
+
|
3352
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2015年1月开始,数据频度为日度,按月更新。
|
3353
|
+
def ecommerce_data_star_lake_bioscience(indic_id: '', indic_name: '',
|
3354
|
+
begin_date: '', end_date: '',
|
3355
|
+
field: '')
|
3356
|
+
api_path = format(ECOMMERCEDATASTARLAKEBIOSCIENCE, indic_id, indic_name,
|
3357
|
+
begin_date, end_date, field)
|
3358
|
+
fetch_data api_path
|
3359
|
+
end
|
3360
|
+
|
3361
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2015年1月开始,数据频度为日度,按月更新。
|
3362
|
+
def ecommerce_data_jonjee_hi_tech(indic_id: '', indic_name: '',
|
3363
|
+
begin_date: '', end_date: '',
|
3364
|
+
field: '')
|
3365
|
+
api_path = format(ECOMMERCEDATAJONJEEHITECH, indic_id, indic_name,
|
3366
|
+
begin_date, end_date, field)
|
3367
|
+
fetch_data api_path
|
3368
|
+
end
|
3369
|
+
|
3370
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年11月开始,数据频度为日度,按月更新。
|
3371
|
+
def ecommerce_data_cr_sanjiu(indic_id: '', indic_name: '', begin_date: '',
|
3372
|
+
end_date: '', field: '')
|
3373
|
+
api_path = format(ECOMMERCEDATACRSANJIU, indic_id, indic_name,
|
3374
|
+
begin_date, end_date, field)
|
3375
|
+
fetch_data api_path
|
3376
|
+
end
|
3377
|
+
|
3378
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年11月开始,数据频度为日度,按月更新。
|
3379
|
+
def ecommerce_data_jiuzhitang(indic_id: '', indic_name: '',
|
3380
|
+
begin_date: '', end_date: '', field: '')
|
3381
|
+
api_path = format(ECOMMERCEDATAJIUZHITANG, indic_id, indic_name,
|
3382
|
+
begin_date, end_date, field)
|
3383
|
+
fetch_data api_path
|
3384
|
+
end
|
3385
|
+
|
3386
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2015年1月开始,数据频度为日度,按月更新。
|
3387
|
+
def ecommerce_data_fuanna(indic_id: '', indic_name: '', begin_date: '',
|
3388
|
+
end_date: '', field: '')
|
3389
|
+
api_path = format(ECOMMERCEDATAFUANNA, indic_id, indic_name, begin_date,
|
3390
|
+
end_date, field)
|
3391
|
+
fetch_data api_path
|
3392
|
+
end
|
3393
|
+
|
3394
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2015年1月开始,数据频度为日度,按月更新。
|
3395
|
+
def ecommerce_data_luolai(indic_id: '', indic_name: '', begin_date: '',
|
3396
|
+
end_date: '', field: '')
|
3397
|
+
api_path = format(ECOMMERCEDATALUOLAI, indic_id, indic_name, begin_date,
|
3398
|
+
end_date, field)
|
3399
|
+
fetch_data api_path
|
3400
|
+
end
|
3401
|
+
|
3402
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2015年1月开始,数据频度为日度,按月更新。
|
3403
|
+
def ecommerce_data_guirenniao(indic_id: '', indic_name: '',
|
3404
|
+
begin_date: '', end_date: '', field: '')
|
3405
|
+
api_path = format(ECOMMERCEDATAGUIRENNIAO, indic_id, indic_name,
|
3406
|
+
begin_date, end_date, field)
|
3407
|
+
fetch_data api_path
|
3408
|
+
end
|
3409
|
+
|
3410
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3411
|
+
def ecommerce_data_baoxiniao(indic_id: '', indic_name: '', begin_date: '',
|
3412
|
+
end_date: '', field: '')
|
3413
|
+
api_path = format(ECOMMERCEDATABAOXINIAO, indic_id, indic_name,
|
3414
|
+
begin_date, end_date, field)
|
3415
|
+
fetch_data api_path
|
3416
|
+
end
|
3417
|
+
|
3418
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2015年1月开始,数据频度为日度,按月更新。
|
3419
|
+
def ecommerce_data_laofengxiang(indic_id: '', indic_name: '',
|
3420
|
+
begin_date: '', end_date: '', field: '')
|
3421
|
+
api_path = format(ECOMMERCEDATALAOFENGXIANG, indic_id, indic_name,
|
3422
|
+
begin_date, end_date, field)
|
3423
|
+
fetch_data api_path
|
3424
|
+
end
|
3425
|
+
|
3426
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3427
|
+
def ecommerce_data_fiyta_a(indic_id: '', indic_name: '', begin_date: '',
|
3428
|
+
end_date: '', field: '')
|
3429
|
+
api_path = format(ECOMMERCEDATAFIYTAA, indic_id, indic_name, begin_date,
|
3430
|
+
end_date, field)
|
3431
|
+
fetch_data api_path
|
3432
|
+
end
|
3433
|
+
|
3434
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3435
|
+
def ecommerce_data_goldleaf_jewelry(indic_id: '', indic_name: '',
|
3436
|
+
begin_date: '', end_date: '',
|
3437
|
+
field: '')
|
3438
|
+
api_path = format(ECOMMERCEDATAGOLDLEAFJEWELRY, indic_id, indic_name,
|
3439
|
+
begin_date, end_date, field)
|
3440
|
+
fetch_data api_path
|
3441
|
+
end
|
3442
|
+
|
3443
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3444
|
+
def ecommerce_data_comix_group(indic_id: '', indic_name: '',
|
3445
|
+
begin_date: '', end_date: '', field: '')
|
3446
|
+
api_path = format(ECOMMERCEDATACOMIXGROUP, indic_id, indic_name,
|
3447
|
+
begin_date, end_date, field)
|
3448
|
+
fetch_data api_path
|
3449
|
+
end
|
3450
|
+
|
3451
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2015年1月开始,数据频度为日度,按月更新。
|
3452
|
+
def ecommerce_data_yaoji_playing_card(indic_id: '', indic_name: '',
|
3453
|
+
begin_date: '', end_date: '',
|
3454
|
+
field: '')
|
3455
|
+
api_path = format(ECOMMERCEDATAYAOJIPLAYINGCARD, indic_id, indic_name,
|
3456
|
+
begin_date, end_date, field)
|
3457
|
+
fetch_data api_path
|
3458
|
+
end
|
3459
|
+
|
3460
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2015年1月开始,数据频度为日度,按月更新。
|
3461
|
+
def ecommerce_data_mg_stationery(indic_id: '', indic_name: '',
|
3462
|
+
begin_date: '', end_date: '', field: '')
|
3463
|
+
api_path = format(ECOMMERCEDATAMGSTATIONERY, indic_id, indic_name,
|
3464
|
+
begin_date, end_date, field)
|
3465
|
+
fetch_data api_path
|
3466
|
+
end
|
3467
|
+
|
3468
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2015年1月开始,数据频度为日度,按月更新。
|
3469
|
+
def ecommerce_data_cs(indic_id: '', indic_name: '', begin_date: '',
|
3470
|
+
end_date: '', field: '')
|
3471
|
+
api_path = format(ECOMMERCEDATACS, indic_id, indic_name, begin_date,
|
3472
|
+
end_date, field)
|
3473
|
+
fetch_data api_path
|
3474
|
+
end
|
3475
|
+
|
3476
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3477
|
+
def ecommerce_data_edifier(indic_id: '', indic_name: '', begin_date: '',
|
3478
|
+
end_date: '', field: '')
|
3479
|
+
api_path = format(ECOMMERCEDATAEDIFIER, indic_id, indic_name,
|
3480
|
+
begin_date, end_date, field)
|
3481
|
+
fetch_data api_path
|
3482
|
+
end
|
3483
|
+
|
3484
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3485
|
+
def ecommerce_data_hik_vision(indic_id: '', indic_name: '',
|
3486
|
+
begin_date: '', end_date: '', field: '')
|
3487
|
+
api_path = format(ECOMMERCEDATAHIKVISION, indic_id, indic_name,
|
3488
|
+
begin_date, end_date, field)
|
3489
|
+
fetch_data api_path
|
3490
|
+
end
|
3491
|
+
|
3492
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3493
|
+
def ecommerce_data_solareast(indic_id: '', indic_name: '', begin_date: '',
|
3494
|
+
end_date: '', field: '')
|
3495
|
+
api_path = format(ECOMMERCEDATASOLAREAST, indic_id, indic_name,
|
3496
|
+
begin_date, end_date, field)
|
3497
|
+
fetch_data api_path
|
3498
|
+
end
|
3499
|
+
|
3500
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2014年12月开始,数据频度为日度,按月更新。
|
3501
|
+
def ecommerce_data_chigo(indic_id: '', indic_name: '', begin_date: '',
|
3502
|
+
end_date: '', field: '')
|
3503
|
+
api_path = format(ECOMMERCEDATACHIGO, indic_id, indic_name, begin_date,
|
3504
|
+
end_date, field)
|
3505
|
+
fetch_data api_path
|
3506
|
+
end
|
3507
|
+
|
3508
|
+
# 可包含(公司、业务、产品等维度)电商(淘宝及天猫)数据,具体指标可参见API文档;历史数据从2015年1月开始,数据频度为日度,按月更新。
|
3509
|
+
def ecommerce_data_aucma(indic_id: '', indic_name: '', begin_date: '',
|
3510
|
+
end_date: '', field: '')
|
3511
|
+
api_path = format(ECOMMERCEDATAAUCMA, indic_id, indic_name, begin_date,
|
3512
|
+
end_date, field)
|
3513
|
+
fetch_data api_path
|
3514
|
+
end
|
3515
|
+
end
|
3516
|
+
end
|
3517
|
+
end
|