1
- # openapi_client.FinancialNewsApi
1
+ # Intelligent Stock Market API
2
2
3
- All URIs are relative to * http://https://gateway.eod-stock-api.site/api *
4
-
5
- Method | HTTP request | Description
6
- ------------- | ------------- | -------------
7
- [ ** v1_news_article_uuid_get** ] ( FinancialNewsApi.md#v1_news_article_uuid_get ) | ** GET** /v1/news/article/{uuid} |
8
- [ ** v1_news_articles_bounded_upper_bound_get** ] ( FinancialNewsApi.md#v1_news_articles_bounded_upper_bound_get ) | ** GET** /v1/news/articles-bounded/{upper_bound} |
9
- [ ** v1_news_articles_by_date_date_get** ] ( FinancialNewsApi.md#v1_news_articles_by_date_date_get ) | ** GET** /v1/news/articles-by-date/{_ date} |
10
- [ ** v1_news_articles_by_publisher_publisher_get** ] ( FinancialNewsApi.md#v1_news_articles_by_publisher_publisher_get ) | ** GET** /v1/news/articles-by-publisher/{publisher} |
11
- [ ** v1_news_articles_by_ticker_stock_code_get** ] ( FinancialNewsApi.md#v1_news_articles_by_ticker_stock_code_get ) | ** GET** /v1/news/articles-by-ticker/{stock_code} |
3
+ All URIs are relative to * https://gateway.eod-stock-api.site/api *
12
4
5
+ | Method | HTTP request | Description |
6
+ | --------------------------------------------------------------------------------------------------------------------| ----------------------------------------------------| -------------|
7
+ | [ ** v1_news_article_uuid_get** ] ( FinancialNewsApi.md#v1_news_article_uuid_get ) | ** GET** /v1/news/article/{uuid} | |
8
+ | [ ** v1_news_articles_bounded_upper_bound_get** ] ( FinancialNewsApi.md#v1_news_articles_bounded_upper_bound_get ) | ** GET** /v1/news/articles-bounded/{upper_bound} | |
9
+ | [ ** v1_news_articles_by_date_date_get** ] ( FinancialNewsApi.md#v1_news_articles_by_date_date_get ) | ** GET** /v1/news/articles-by-date/{_ date} | |
10
+ | [ ** v1_news_articles_by_publisher_publisher_get** ] ( FinancialNewsApi.md#v1_news_articles_by_publisher_publisher_get ) | ** GET** /v1/news/articles-by-publisher/{publisher} | |
11
+ | [ ** v1_news_articles_by_ticker_stock_code_get** ] ( FinancialNewsApi.md#v1_news_articles_by_ticker_stock_code_get ) | ** GET** /v1/news/articles-by-ticker/{stock_code} | |
13
12
14
13
# ** v1_news_article_uuid_get**
15
14
> News v1_news_article_uuid_get(uuid)
@@ -23,20 +22,20 @@ Obtain Financial News Information related to listed companies
23
22
``` python
24
23
from __future__ import print_function
25
24
import time
26
- import openapi_client
27
- from openapi_client .rest import ApiException
25
+ import IntelligentStockMarketAPI
26
+ from IntelligentStockMarketAPI .rest import ApiException
28
27
from pprint import pprint
29
- # Defining the host is optional and defaults to http:// https://gateway.eod-stock-api.site/api
28
+ # Defining the host is optional and defaults to https://gateway.eod-stock-api.site/api
30
29
# See configuration.py for a list of all supported configuration parameters.
31
- configuration = openapi_client .Configuration(
32
- host = " http:// https://gateway.eod-stock-api.site/api"
30
+ configuration = IntelligentStockMarketAPI .Configuration(
31
+ host = " https://gateway.eod-stock-api.site/api"
33
32
)
34
33
35
34
36
35
# Enter a context with an instance of the API client
37
- with openapi_client .ApiClient() as api_client:
36
+ with IntelligentStockMarketAPI .ApiClient() as api_client:
38
37
# Create an instance of the API class
39
- api_instance = openapi_client .FinancialNewsApi(api_client)
38
+ api_instance = IntelligentStockMarketAPI .FinancialNewsApi(api_client)
40
39
uuid = ' uuid_example' # str |
41
40
42
41
try :
@@ -84,20 +83,20 @@ Get list of all News Upper Bound is an Integer indicating a total number of arti
84
83
``` python
85
84
from __future__ import print_function
86
85
import time
87
- import openapi_client
88
- from openapi_client .rest import ApiException
86
+ import IntelligentStockMarketAPI
87
+ from IntelligentStockMarketAPI .rest import ApiException
89
88
from pprint import pprint
90
- # Defining the host is optional and defaults to http:// https://gateway.eod-stock-api.site/api
89
+ # Defining the host is optional and defaults to https://gateway.eod-stock-api.site/api
91
90
# See configuration.py for a list of all supported configuration parameters.
92
- configuration = openapi_client .Configuration(
93
- host = " http:// https://gateway.eod-stock-api.site/api"
91
+ configuration = IntelligentStockMarketAPI .Configuration(
92
+ host = " https://gateway.eod-stock-api.site/api"
94
93
)
95
94
96
95
97
96
# Enter a context with an instance of the API client
98
- with openapi_client .ApiClient() as api_client:
97
+ with IntelligentStockMarketAPI .ApiClient() as api_client:
99
98
# Create an instance of the API class
100
- api_instance = openapi_client .FinancialNewsApi(api_client)
99
+ api_instance = IntelligentStockMarketAPI .FinancialNewsApi(api_client)
101
100
upper_bound = 56 # int |
102
101
103
102
try :
@@ -145,20 +144,20 @@ Get Articles Financial News By Date
145
144
``` python
146
145
from __future__ import print_function
147
146
import time
148
- import openapi_client
149
- from openapi_client .rest import ApiException
147
+ import IntelligentStockMarketAPI
148
+ from IntelligentStockMarketAPI .rest import ApiException
150
149
from pprint import pprint
151
- # Defining the host is optional and defaults to http:// https://gateway.eod-stock-api.site/api
150
+ # Defining the host is optional and defaults to https://gateway.eod-stock-api.site/api
152
151
# See configuration.py for a list of all supported configuration parameters.
153
- configuration = openapi_client .Configuration(
154
- host = " http:// https://gateway.eod-stock-api.site/api"
152
+ configuration = IntelligentStockMarketAPI .Configuration(
153
+ host = " https://gateway.eod-stock-api.site/api"
155
154
)
156
155
157
156
158
157
# Enter a context with an instance of the API client
159
- with openapi_client .ApiClient() as api_client:
158
+ with IntelligentStockMarketAPI .ApiClient() as api_client:
160
159
# Create an instance of the API class
161
- api_instance = openapi_client .FinancialNewsApi(api_client)
160
+ api_instance = IntelligentStockMarketAPI .FinancialNewsApi(api_client)
162
161
date = ' date_example' # str |
163
162
164
163
try :
@@ -206,20 +205,20 @@ Get News Financial News by publisher
206
205
``` python
207
206
from __future__ import print_function
208
207
import time
209
- import openapi_client
210
- from openapi_client .rest import ApiException
208
+ import IntelligentStockMarketAPI
209
+ from IntelligentStockMarketAPI .rest import ApiException
211
210
from pprint import pprint
212
- # Defining the host is optional and defaults to http:// https://gateway.eod-stock-api.site/api
211
+ # Defining the host is optional and defaults to https://gateway.eod-stock-api.site/api
213
212
# See configuration.py for a list of all supported configuration parameters.
214
- configuration = openapi_client .Configuration(
215
- host = " http:// https://gateway.eod-stock-api.site/api"
213
+ configuration = IntelligentStockMarketAPI .Configuration(
214
+ host = " https://gateway.eod-stock-api.site/api"
216
215
)
217
216
218
217
219
218
# Enter a context with an instance of the API client
220
- with openapi_client .ApiClient() as api_client:
219
+ with IntelligentStockMarketAPI .ApiClient() as api_client:
221
220
# Create an instance of the API class
222
- api_instance = openapi_client .FinancialNewsApi(api_client)
221
+ api_instance = IntelligentStockMarketAPI .FinancialNewsApi(api_client)
223
222
publisher = ' publisher_example' # str |
224
223
225
224
try :
@@ -267,20 +266,20 @@ Get Financial News Articles By Ticker
267
266
``` python
268
267
from __future__ import print_function
269
268
import time
270
- import openapi_client
271
- from openapi_client .rest import ApiException
269
+ import IntelligentStockMarketAPI
270
+ from IntelligentStockMarketAPI .rest import ApiException
272
271
from pprint import pprint
273
- # Defining the host is optional and defaults to http:// https://gateway.eod-stock-api.site/api
272
+ # Defining the host is optional and defaults to https://gateway.eod-stock-api.site/api
274
273
# See configuration.py for a list of all supported configuration parameters.
275
- configuration = openapi_client .Configuration(
276
- host = " http:// https://gateway.eod-stock-api.site/api"
274
+ configuration = IntelligentStockMarketAPI .Configuration(
275
+ host = " https://gateway.eod-stock-api.site/api"
277
276
)
278
277
279
278
280
279
# Enter a context with an instance of the API client
281
- with openapi_client .ApiClient() as api_client:
280
+ with IntelligentStockMarketAPI .ApiClient() as api_client:
282
281
# Create an instance of the API class
283
- api_instance = openapi_client .FinancialNewsApi(api_client)
282
+ api_instance = IntelligentStockMarketAPI .FinancialNewsApi(api_client)
284
283
stock_code = ' stock_code_example' # str |
285
284
286
285
try :
0 commit comments