@@ -73,22 +73,22 @@ def main():
73
73
result_list .append (json .dumps (result ))
74
74
result = None
75
75
76
- result = api_youtube .obtains (term , entity_type )
76
+ result = api_youtube .obtain (term , entity_type )
77
77
if result is not None :
78
78
result_list .append (json .dumps (result ))
79
79
result = None
80
80
81
- result = api_yelp .obtains (term , entity_type )
81
+ result = api_yelp .obtain (term , entity_type )
82
82
if result is not None :
83
83
result_list .append (json .dumps (result ))
84
84
result = None
85
85
86
- result = api_twitter .obtains (term , entity_type )
86
+ result = api_twitter .obtain (term , entity_type )
87
87
if result is not None :
88
88
result_list .append (json .dumps (result ))
89
89
result = None
90
90
91
- result = api_wikipedia .obtains (term , entity_type )
91
+ result = api_wikipedia .obtain (term , entity_type )
92
92
if result is not None :
93
93
result_list .append (json .dumps (result ))
94
94
result = None
@@ -105,12 +105,12 @@ def main():
105
105
result_list .append (json .dumps (result ))
106
106
result = None
107
107
108
- result = api_youtube .obtains (term , entity_type )
108
+ result = api_youtube .obtain (term , entity_type )
109
109
if result is not None :
110
110
result_list .append (json .dumps (result ))
111
111
result = None
112
112
113
- result = api_wikipedia .obtains (term , entity_type )
113
+ result = api_wikipedia .obtain (term , entity_type )
114
114
if result is not None :
115
115
result_list .append (json .dumps (result ))
116
116
result = None
0 commit comments