News API for Digital Portals client library for Python
Project description
News API for Digital Portals client library for Python
Consume FactSet’s StreetAccount news and 3rd party content through an API that seamlessly integrates with quotes, time series, watchlists, and other Functional APIs.
Search for news articles from various news distributors and publishers. Incorporate a multitude of search parameters such as region, category, source, article type and provider-specific meta data, to easily filter out the noise.
All search and list endpoints can be subscribed to receive streamed updates.
News providers include:
- APA
- AWP
- Businesswire
- Cercle Finance
- Direkt News SE
- Dow Jones News
- dpa
- dpa-AFX
- EUWAX
- GlobenewsWire
- Kauppalehti
- Midnight Trader
- MoneyAM
- newsaktuell
- OMX
- PR Newswire
- Ritzau Finans
- StreetAccount News
- TDN News
See the Quotes API for Digital Portals for access to detailed price and performance information, plus basic support for security identifier cross-reference.
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 2
- Package version: 0.10.2
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Requirements
- Python >= 3.7
Installation
Poetry
poetry add fds.sdk.utils fds.sdk.NewsAPIforDigitalPortals
pip
pip install fds.sdk.utils fds.sdk.NewsAPIforDigitalPortals
Usage
- Generate authentication credentials.
- Setup Python environment.
-
Install and activate python 3.7+. If you're using pyenv:
pyenv install 3.9.7 pyenv shell 3.9.7
-
(optional) Install poetry.
-
- Install dependencies.
- Run the following:
from fds.sdk.utils.authentication import ConfidentialClient
import fds.sdk.NewsAPIforDigitalPortals
from fds.sdk.NewsAPIforDigitalPortals.api import news_api
from fds.sdk.NewsAPIforDigitalPortals.models import *
from dateutil.parser import parse as dateutil_parser
from pprint import pprint
# See configuration.py for a list of all supported configuration parameters.
# Examples for each supported authentication method are below,
# choose one that satisfies your use case.
# (Preferred) OAuth 2.0: FactSetOAuth2
# See https://github.com/FactSet/enterprise-sdk#oauth-20
# for information on how to create the app-config.json file
# See https://github.com/FactSet/enterprise-sdk-utils-python#authentication
# for more information on using the ConfidentialClient class
configuration = fds.sdk.NewsAPIforDigitalPortals.Configuration(
fds_oauth_client=ConfidentialClient('/path/to/app-config.json')
)
# Basic authentication: FactSetApiKey
# See https://github.com/FactSet/enterprise-sdk#api-key
# for information how to create an API key
# configuration = fds.sdk.NewsAPIforDigitalPortals.Configuration(
# username='USERNAME-SERIAL',
# password='API-KEY'
# )
# Enter a context with an instance of the API client
with fds.sdk.NewsAPIforDigitalPortals.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = news_api.NewsApi(api_client)
code = "0" # str |
include_media = False # bool | (optional) if omitted the server will use the default value of False
attributes = [
"_attributes_example",
] # [str] | Limit the attributes returned in the response to the specified set. (optional)
language = "_language_example" # str | (optional)
try:
# Details for a news article.
api_response = api_instance.get_news_article_get(code, include_media=include_media, attributes=attributes, language=language)
pprint(api_response)
except fds.sdk.NewsAPIforDigitalPortals.ApiException as e:
print("Exception when calling NewsApi->get_news_article_get: %s\n" % e)
# Get response, http status code and response headers
# try:
# # Details for a news article.
# api_response, http_status_code, response_headers = api_instance.get_news_article_get_with_http_info(code, include_media=include_media, attributes=attributes, language=language)
# pprint(api_response)
# pprint(http_status_code)
# pprint(response_headers)
# except fds.sdk.NewsAPIforDigitalPortals.ApiException as e:
# print("Exception when calling NewsApi->get_news_article_get: %s\n" % e)
# Get response asynchronous
# try:
# # Details for a news article.
# async_result = api_instance.get_news_article_get_async(code, include_media=include_media, attributes=attributes, language=language)
# api_response = async_result.get()
# pprint(api_response)
# except fds.sdk.NewsAPIforDigitalPortals.ApiException as e:
# print("Exception when calling NewsApi->get_news_article_get: %s\n" % e)
# Get response, http status code and response headers asynchronous
# try:
# # Details for a news article.
# async_result = api_instance.get_news_article_get_with_http_info_async(code, include_media=include_media, attributes=attributes, language=language)
# api_response, http_status_code, response_headers = async_result.get()
# pprint(api_response)
# pprint(http_status_code)
# pprint(response_headers)
# except fds.sdk.NewsAPIforDigitalPortals.ApiException as e:
# print("Exception when calling NewsApi->get_news_article_get: %s\n" % e)
Documentation for API Endpoints
All URIs are relative to https://api.factset.com/wealth/v1
Class | Method | HTTP request | Description |
---|---|---|---|
NewsApi | get_news_article_get | GET /news/article/get | Details for a news article. |
NewsApi | get_news_article_type_get | GET /news/article/type/get | Details for a news article type. |
NewsApi | get_news_article_type_list | GET /news/article/type/list | List of news article types. |
NewsApi | get_news_distributor_get | GET /news/distributor/get | Details of a distributor. |
NewsApi | get_news_distributor_list | GET /news/distributor/list | List of distributors. |
NewsApi | get_news_publisher_get | GET /news/publisher/get | Details of a publisher. |
NewsApi | get_news_publisher_list | GET /news/publisher/list | List of publishers. |
NewsApi | get_news_publisher_list_by_distributor | GET /news/publisher/listByDistributor | List of publishers provided by the given distributor. |
NewsApi | post_news_article_list | POST /news/article/list | List of news articles. |
NewsApi | post_news_article_list_by_chain | POST /news/article/listByChain | List news articles of an article chain. |
NewsApi | post_news_article_list_by_index | POST /news/article/listByIndex | News articles for instruments that are constituents of the given indices. |
NewsApi | post_news_article_list_by_instrument | POST /news/article/listByInstrument | News articles for instruments. |
NewsApi | post_news_article_list_by_media_kind | POST /news/article/listByMediaKind | List news articles which contain media of specific media kinds. |
NewsApi | post_news_article_search_by_text | POST /news/article/searchByText | Search for news articles using a fulltext search. |
NewsApi | post_news_publisher_search_by_name | POST /news/publisher/searchByName | Search for publishers. |
Documentation For Models
- AttributesMember
- CursorBasedPaginationOutputObject
- CursorBasedPaginationOutputObjectWithoutTotal
- ErrorMetaObject
- ErrorObject
- InlineObject
- InlineObject1
- InlineObject2
- InlineObject3
- InlineObject4
- InlineObject5
- InlineObject6
- InlineResponse200
- InlineResponse2001
- InlineResponse2001Categories
- InlineResponse2001Chain
- InlineResponse2001Data
- InlineResponse2001Distributor
- InlineResponse2001Fsym
- InlineResponse2001FsymSecurity
- InlineResponse2001Instruments
- InlineResponse2001Language
- InlineResponse2001Meta
- InlineResponse2001Publisher
- InlineResponse2001Types
- InlineResponse2002
- InlineResponse2002Data
- InlineResponse2002DataArticles
- InlineResponse2002DataDistributor
- InlineResponse2003
- InlineResponse2003Data
- InlineResponse2004
- InlineResponse2004Data
- InlineResponse2005
- InlineResponse2005Data
- InlineResponse2005DataDelivery
- InlineResponse2006
- InlineResponse2006Data
- InlineResponse2007
- InlineResponse2007Data
- InlineResponse2007DataDistributor
- InlineResponse2008
- InlineResponse2008Data
- InlineResponse2008Meta
- InlineResponse2009
- InlineResponse2009Data
- InlineResponse200Data
- InlineResponse200DataCategories
- InlineResponse200DataDistributor
- InlineResponse200DataFsym
- InlineResponse200DataFsymSecurity
- InlineResponse200DataInstruments
- InlineResponse200DataLanguage
- InlineResponse200DataMedia
- InlineResponse200DataPublisher
- InlineResponse200DataTypes
- InlineResponse200Meta
- LanguageMember
- NewsArticleListByChainData
- NewsArticleListByChainDataFilter
- NewsArticleListByIndexData
- NewsArticleListByInstrumentData
- NewsArticleListByMediaKindData
- NewsArticleListData
- NewsArticleListDataFilter
- NewsArticleListDataFilterCategories
- NewsArticleListDataFilterDistributor
- NewsArticleListDataFilterLanguage
- NewsArticleListDataFilterPublisher
- NewsArticleListDataFilterRange
- NewsArticleListDataFilterRegions
- NewsArticleListDataFilterTypes
- NewsArticleListMeta
- NewsArticleListMetaPagination
- NewsArticleListMetaSubscription
- NewsArticleSearchByTextData
- NewsArticleSearchByTextDataCategories
- NewsArticleSearchByTextDataCriteria
- NewsArticleSearchByTextDataDistributor
- NewsArticleSearchByTextDataIndices
- NewsArticleSearchByTextDataInstruments
- NewsArticleSearchByTextDataLanguage
- NewsArticleSearchByTextDataPublisher
- NewsArticleSearchByTextDataRegions
- NewsArticleSearchByTextDataText
- NewsArticleSearchByTextDataTextCriteria
- NewsArticleSearchByTextDataTypes
- NewsPublisherSearchByNameData
- NewsPublisherSearchByNameDataFilter
- NewsPublisherSearchByNameDataFilterDelivery
- NewsPublisherSearchByNameDataFilterDistributor
- NewsPublisherSearchByNameMeta
- OffsetBasedPaginationOutputObject
- OffsetBasedPaginationOutputObjectWithoutTotal
- PartialOutputObject
- StatusObject
Documentation For Authorization
FactSetApiKey
- Type: HTTP basic authentication
FactSetOAuth2
- Type: OAuth
- Flow: application
- Authorization URL:
- Scopes: N/A
Notes for Large OpenAPI documents
If the OpenAPI document is large, imports in fds.sdk.NewsAPIforDigitalPortals.apis and fds.sdk.NewsAPIforDigitalPortals.models may fail with a RecursionError indicating the maximum recursion limit has been exceeded. In that case, there are a couple of solutions:
Solution 1: Use specific imports for apis and models like:
from fds.sdk.NewsAPIforDigitalPortals.api.default_api import DefaultApi
from fds.sdk.NewsAPIforDigitalPortals.model.pet import Pet
Solution 2: Before importing the package, adjust the maximum recursion limit as shown below:
import sys
sys.setrecursionlimit(1500)
import fds.sdk.NewsAPIforDigitalPortals
from fds.sdk.NewsAPIforDigitalPortals.apis import *
from fds.sdk.NewsAPIforDigitalPortals.models import *
Contributing
Please refer to the contributing guide.
Copyright
Copyright 2022 FactSet Research Systems Inc
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file fds.sdk.NewsAPIforDigitalPortals-0.10.2-py3-none-any.whl
.
File metadata
- Download URL: fds.sdk.NewsAPIforDigitalPortals-0.10.2-py3-none-any.whl
- Upload date:
- Size: 355.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.12 tqdm/4.64.0 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a884bfa0527d276f061bd30ceb0d13438b770cfd9cc795b3a5f0f9833e8f1bbc |
|
MD5 | 74ce30ce948eff6beca7abe2328cc40d |
|
BLAKE2b-256 | cf0b2519975a84d58e7e3d1956e5a41bd789d8b0c80c91819c3de1451b211a98 |