معرفی شرکت ها


fds.sdk.NewsAPIforDigitalPortals-0.9.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

News API for Digital Portals client library for Python
ویژگی مقدار
سیستم عامل -
نام فایل fds.sdk.NewsAPIforDigitalPortals-0.9.1
نام fds.sdk.NewsAPIforDigitalPortals
نسخه کتابخانه 0.9.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده FactSet Research Systems
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/FactSet/enterprise-sdk/tree/main/code/python/NewsAPIforDigitalPortals/v2
آدرس اینترنتی https://pypi.org/project/fds.sdk.NewsAPIforDigitalPortals/
مجوز Apache License, Version 2.0
[![FactSet](https://raw.githubusercontent.com/factset/enterprise-sdk/main/docs/images/factset-logo.svg)](https://www.factset.com) # News API for Digital Portals client library for Python [![PyPi](https://img.shields.io/pypi/v/fds.sdk.NewsAPIforDigitalPortals)](https://pypi.org/project/fds.sdk.NewsAPIforDigitalPortals/) [![Apache-2 license](https://img.shields.io/badge/license-Apache2-brightgreen.svg)](https://www.apache.org/licenses/LICENSE-2.0) Consume FactSet’s StreetAccount news and 3rd party content through an API that seamlessly integrates with [quotes](https://developer.factset.com/api-catalog/quotes-api-digital-portals), [time series](https://developer.factset.com/api-catalog/time-series-api-digital-portals), [watchlists](https://developer.factset.com/api-catalog/watchlist-api-digital-portals), 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](https://developer.factset.com/api-catalog/quotes-api-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](https://openapi-generator.tech) project: - API version: 2 - Package version: 0.10.4 - Build package: org.openapitools.codegen.languages.PythonClientCodegen ## Requirements * Python >= 3.7 ## Installation ### Poetry ```shell poetry add fds.sdk.utils fds.sdk.NewsAPIforDigitalPortals ``` ### pip ```shell pip install fds.sdk.utils fds.sdk.NewsAPIforDigitalPortals ``` ## Usage 1. [Generate authentication credentials](../../../../README.md#authentication). 2. Setup Python environment. 1. Install and activate python 3.7+. If you're using [pyenv](https://github.com/pyenv/pyenv): ```sh pyenv install 3.9.7 pyenv shell 3.9.7 ``` 2. (optional) [Install poetry](https://python-poetry.org/docs/#installation). 3. [Install dependencies](#installation). 4. Run the following: ```python 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) ``` ### Using Pandas To convert an API response to a Pandas DataFrame, it is necessary to transform it first to a dictionary. ```python import pandas as pd response_dict = api_response.to_dict()['data'] simple_json_response = pd.DataFrame(response_dict) nested_json_response = pd.json_normalize(response_dict) ``` ### Debugging The SDK uses the standard library [`logging`](https://docs.python.org/3/library/logging.html#module-logging) module. Setting `debug` to `True` on an instance of the `Configuration` class sets the log-level of related packages to `DEBUG` and enables additional logging in Pythons [HTTP Client](https://docs.python.org/3/library/http.client.html). **Note**: This prints out sensitive information (e.g. the full request and response). Use with care. ```python import logging import fds.sdk.NewsAPIforDigitalPortals logging.basicConfig(level=logging.DEBUG) configuration = fds.sdk.NewsAPIforDigitalPortals.Configuration(...) configuration.debug = True ``` ## 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**](docs/NewsApi.md#get_news_article_get) | **GET** /news/article/get | Details for a news article. *NewsApi* | [**get_news_article_type_get**](docs/NewsApi.md#get_news_article_type_get) | **GET** /news/article/type/get | Details for a news article type. *NewsApi* | [**get_news_article_type_list**](docs/NewsApi.md#get_news_article_type_list) | **GET** /news/article/type/list | List of news article types. *NewsApi* | [**get_news_distributor_get**](docs/NewsApi.md#get_news_distributor_get) | **GET** /news/distributor/get | Details of a distributor. *NewsApi* | [**get_news_distributor_list**](docs/NewsApi.md#get_news_distributor_list) | **GET** /news/distributor/list | List of distributors. *NewsApi* | [**get_news_publisher_get**](docs/NewsApi.md#get_news_publisher_get) | **GET** /news/publisher/get | Details of a publisher. *NewsApi* | [**get_news_publisher_list**](docs/NewsApi.md#get_news_publisher_list) | **GET** /news/publisher/list | List of publishers. *NewsApi* | [**get_news_publisher_list_by_distributor**](docs/NewsApi.md#get_news_publisher_list_by_distributor) | **GET** /news/publisher/listByDistributor | List of publishers provided by the given distributor. *NewsApi* | [**post_news_article_list**](docs/NewsApi.md#post_news_article_list) | **POST** /news/article/list | List of news articles. *NewsApi* | [**post_news_article_list_by_chain**](docs/NewsApi.md#post_news_article_list_by_chain) | **POST** /news/article/listByChain | List news articles of an article chain. *NewsApi* | [**post_news_article_list_by_index**](docs/NewsApi.md#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**](docs/NewsApi.md#post_news_article_list_by_instrument) | **POST** /news/article/listByInstrument | News articles for instruments. *NewsApi* | [**post_news_article_list_by_media_kind**](docs/NewsApi.md#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**](docs/NewsApi.md#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**](docs/NewsApi.md#post_news_publisher_search_by_name) | **POST** /news/publisher/searchByName | Search for publishers. ## Documentation For Models - [AttributesMember](docs/AttributesMember.md) - [CursorBasedPaginationOutputObject](docs/CursorBasedPaginationOutputObject.md) - [CursorBasedPaginationOutputObjectWithoutTotal](docs/CursorBasedPaginationOutputObjectWithoutTotal.md) - [ErrorMetaObject](docs/ErrorMetaObject.md) - [ErrorObject](docs/ErrorObject.md) - [InlineResponse200](docs/InlineResponse200.md) - [InlineResponse2001](docs/InlineResponse2001.md) - [InlineResponse20010](docs/InlineResponse20010.md) - [InlineResponse20010Data](docs/InlineResponse20010Data.md) - [InlineResponse20010Meta](docs/InlineResponse20010Meta.md) - [InlineResponse20011](docs/InlineResponse20011.md) - [InlineResponse20011Data](docs/InlineResponse20011Data.md) - [InlineResponse2001Categories](docs/InlineResponse2001Categories.md) - [InlineResponse2001Chain](docs/InlineResponse2001Chain.md) - [InlineResponse2001Data](docs/InlineResponse2001Data.md) - [InlineResponse2001Distributor](docs/InlineResponse2001Distributor.md) - [InlineResponse2001Fsym](docs/InlineResponse2001Fsym.md) - [InlineResponse2001FsymSecurity](docs/InlineResponse2001FsymSecurity.md) - [InlineResponse2001Instruments](docs/InlineResponse2001Instruments.md) - [InlineResponse2001Language](docs/InlineResponse2001Language.md) - [InlineResponse2001Meta](docs/InlineResponse2001Meta.md) - [InlineResponse2001Publisher](docs/InlineResponse2001Publisher.md) - [InlineResponse2001Types](docs/InlineResponse2001Types.md) - [InlineResponse2002](docs/InlineResponse2002.md) - [InlineResponse2002Data](docs/InlineResponse2002Data.md) - [InlineResponse2002DataArticles](docs/InlineResponse2002DataArticles.md) - [InlineResponse2002DataDistributor](docs/InlineResponse2002DataDistributor.md) - [InlineResponse2003](docs/InlineResponse2003.md) - [InlineResponse2003Data](docs/InlineResponse2003Data.md) - [InlineResponse2003DataIdentifiers](docs/InlineResponse2003DataIdentifiers.md) - [InlineResponse2003DataStatus](docs/InlineResponse2003DataStatus.md) - [InlineResponse2004](docs/InlineResponse2004.md) - [InlineResponse2004Data](docs/InlineResponse2004Data.md) - [InlineResponse2004DataIdentifiers](docs/InlineResponse2004DataIdentifiers.md) - [InlineResponse2004DataStatus](docs/InlineResponse2004DataStatus.md) - [InlineResponse2005](docs/InlineResponse2005.md) - [InlineResponse2005Data](docs/InlineResponse2005Data.md) - [InlineResponse2006](docs/InlineResponse2006.md) - [InlineResponse2006Data](docs/InlineResponse2006Data.md) - [InlineResponse2007](docs/InlineResponse2007.md) - [InlineResponse2007Data](docs/InlineResponse2007Data.md) - [InlineResponse2007DataDelivery](docs/InlineResponse2007DataDelivery.md) - [InlineResponse2008](docs/InlineResponse2008.md) - [InlineResponse2008Data](docs/InlineResponse2008Data.md) - [InlineResponse2009](docs/InlineResponse2009.md) - [InlineResponse2009Data](docs/InlineResponse2009Data.md) - [InlineResponse2009DataDistributor](docs/InlineResponse2009DataDistributor.md) - [InlineResponse200Data](docs/InlineResponse200Data.md) - [InlineResponse200DataCategories](docs/InlineResponse200DataCategories.md) - [InlineResponse200DataDistributor](docs/InlineResponse200DataDistributor.md) - [InlineResponse200DataFsym](docs/InlineResponse200DataFsym.md) - [InlineResponse200DataFsymSecurity](docs/InlineResponse200DataFsymSecurity.md) - [InlineResponse200DataInstruments](docs/InlineResponse200DataInstruments.md) - [InlineResponse200DataLanguage](docs/InlineResponse200DataLanguage.md) - [InlineResponse200DataMedia](docs/InlineResponse200DataMedia.md) - [InlineResponse200DataPublisher](docs/InlineResponse200DataPublisher.md) - [InlineResponse200DataTypes](docs/InlineResponse200DataTypes.md) - [InlineResponse200Meta](docs/InlineResponse200Meta.md) - [LanguageMember](docs/LanguageMember.md) - [OffsetBasedPaginationOutputObject](docs/OffsetBasedPaginationOutputObject.md) - [OffsetBasedPaginationOutputObjectWithoutTotal](docs/OffsetBasedPaginationOutputObjectWithoutTotal.md) - [PartialOutputObject](docs/PartialOutputObject.md) - [PostNewsArticleListByChainRequest](docs/PostNewsArticleListByChainRequest.md) - [PostNewsArticleListByChainRequestData](docs/PostNewsArticleListByChainRequestData.md) - [PostNewsArticleListByChainRequestDataFilter](docs/PostNewsArticleListByChainRequestDataFilter.md) - [PostNewsArticleListByIndexRequest](docs/PostNewsArticleListByIndexRequest.md) - [PostNewsArticleListByIndexRequestData](docs/PostNewsArticleListByIndexRequestData.md) - [PostNewsArticleListByIndexRequestDataIdentifier](docs/PostNewsArticleListByIndexRequestDataIdentifier.md) - [PostNewsArticleListByInstrumentRequest](docs/PostNewsArticleListByInstrumentRequest.md) - [PostNewsArticleListByInstrumentRequestData](docs/PostNewsArticleListByInstrumentRequestData.md) - [PostNewsArticleListByInstrumentRequestDataIdentifier](docs/PostNewsArticleListByInstrumentRequestDataIdentifier.md) - [PostNewsArticleListByMediaKindRequest](docs/PostNewsArticleListByMediaKindRequest.md) - [PostNewsArticleListByMediaKindRequestData](docs/PostNewsArticleListByMediaKindRequestData.md) - [PostNewsArticleListRequest](docs/PostNewsArticleListRequest.md) - [PostNewsArticleListRequestData](docs/PostNewsArticleListRequestData.md) - [PostNewsArticleListRequestDataFilter](docs/PostNewsArticleListRequestDataFilter.md) - [PostNewsArticleListRequestDataFilterCategories](docs/PostNewsArticleListRequestDataFilterCategories.md) - [PostNewsArticleListRequestDataFilterDistributor](docs/PostNewsArticleListRequestDataFilterDistributor.md) - [PostNewsArticleListRequestDataFilterLanguage](docs/PostNewsArticleListRequestDataFilterLanguage.md) - [PostNewsArticleListRequestDataFilterPublisher](docs/PostNewsArticleListRequestDataFilterPublisher.md) - [PostNewsArticleListRequestDataFilterRange](docs/PostNewsArticleListRequestDataFilterRange.md) - [PostNewsArticleListRequestDataFilterRegions](docs/PostNewsArticleListRequestDataFilterRegions.md) - [PostNewsArticleListRequestDataFilterTypes](docs/PostNewsArticleListRequestDataFilterTypes.md) - [PostNewsArticleListRequestMeta](docs/PostNewsArticleListRequestMeta.md) - [PostNewsArticleListRequestMetaPagination](docs/PostNewsArticleListRequestMetaPagination.md) - [PostNewsArticleListRequestMetaSubscription](docs/PostNewsArticleListRequestMetaSubscription.md) - [PostNewsArticleSearchByTextRequest](docs/PostNewsArticleSearchByTextRequest.md) - [PostNewsArticleSearchByTextRequestData](docs/PostNewsArticleSearchByTextRequestData.md) - [PostNewsArticleSearchByTextRequestDataCategories](docs/PostNewsArticleSearchByTextRequestDataCategories.md) - [PostNewsArticleSearchByTextRequestDataCriteria](docs/PostNewsArticleSearchByTextRequestDataCriteria.md) - [PostNewsArticleSearchByTextRequestDataDistributor](docs/PostNewsArticleSearchByTextRequestDataDistributor.md) - [PostNewsArticleSearchByTextRequestDataIndices](docs/PostNewsArticleSearchByTextRequestDataIndices.md) - [PostNewsArticleSearchByTextRequestDataInstruments](docs/PostNewsArticleSearchByTextRequestDataInstruments.md) - [PostNewsArticleSearchByTextRequestDataLanguage](docs/PostNewsArticleSearchByTextRequestDataLanguage.md) - [PostNewsArticleSearchByTextRequestDataPublisher](docs/PostNewsArticleSearchByTextRequestDataPublisher.md) - [PostNewsArticleSearchByTextRequestDataRegions](docs/PostNewsArticleSearchByTextRequestDataRegions.md) - [PostNewsArticleSearchByTextRequestDataText](docs/PostNewsArticleSearchByTextRequestDataText.md) - [PostNewsArticleSearchByTextRequestDataTextCriteria](docs/PostNewsArticleSearchByTextRequestDataTextCriteria.md) - [PostNewsArticleSearchByTextRequestDataTypes](docs/PostNewsArticleSearchByTextRequestDataTypes.md) - [PostNewsPublisherSearchByNameRequest](docs/PostNewsPublisherSearchByNameRequest.md) - [PostNewsPublisherSearchByNameRequestData](docs/PostNewsPublisherSearchByNameRequestData.md) - [PostNewsPublisherSearchByNameRequestDataFilter](docs/PostNewsPublisherSearchByNameRequestDataFilter.md) - [PostNewsPublisherSearchByNameRequestDataFilterDelivery](docs/PostNewsPublisherSearchByNameRequestDataFilterDelivery.md) - [PostNewsPublisherSearchByNameRequestDataFilterDistributor](docs/PostNewsPublisherSearchByNameRequestDataFilterDistributor.md) - [PostNewsPublisherSearchByNameRequestMeta](docs/PostNewsPublisherSearchByNameRequestMeta.md) - [StatusObject](docs/StatusObject.md) ## 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](../../../../CONTRIBUTING.md). ## 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.


نیازمندی

مقدار نام
>=1.25.3 urllib3
- python-dateutil
>=1.0.0 fds.sdk.utils


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl fds.sdk.NewsAPIforDigitalPortals-0.9.1:

    pip install fds.sdk.NewsAPIforDigitalPortals-0.9.1.whl


نصب پکیج tar.gz fds.sdk.NewsAPIforDigitalPortals-0.9.1:

    pip install fds.sdk.NewsAPIforDigitalPortals-0.9.1.tar.gz