Real-Time News client library for Python
Project description
Real-Time News 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
- MT Newswires
- MoneyAM
- newsaktuell
- OMX
- PR Newswire
- Ritzau Finans
- StreetAccount News
- TDN News
See the Real-Time Quotes API 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: 4.0.0
- SDK version: 0.20.1
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
For more information, please visit https://developer.factset.com/contact
Requirements
- Python >= 3.7
Installation
Poetry
poetry add fds.sdk.utils fds.sdk.RealTimeNews==0.20.1
pip
pip install fds.sdk.utils fds.sdk.RealTimeNews==0.20.1
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:
[!IMPORTANT] The parameter variables defined below are just examples and may potentially contain non valid values. Please replace them with valid values.
Example Code
from fds.sdk.utils.authentication import ConfidentialClient
import fds.sdk.RealTimeNews
from fds.sdk.RealTimeNews.api import basic_api
from fds.sdk.RealTimeNews.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
#
# The confidential client instance should be reused in production environments.
# See https://github.com/FactSet/enterprise-sdk-utils-python#authentication
# for more information on using the ConfidentialClient class
configuration = fds.sdk.RealTimeNews.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.RealTimeNews.Configuration(
# username='USERNAME-SERIAL',
# password='API-KEY'
# )
# Enter a context with an instance of the API client
with fds.sdk.RealTimeNews.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = basic_api.BasicApi(api_client)
attributes = [
"_attributes_example",
] # [str] | Limit the attributes returned in the response to the specified set. (optional)
try:
# List of asset classes.
# example passing only required values which don't have defaults set
# and optional values
api_response = api_instance.get_basic_asset_class_list(attributes=attributes)
pprint(api_response)
except fds.sdk.RealTimeNews.ApiException as e:
print("Exception when calling BasicApi->get_basic_asset_class_list: %s\n" % e)
# # Get response, http status code and response headers
# try:
# # List of asset classes.
# api_response, http_status_code, response_headers = api_instance.get_basic_asset_class_list_with_http_info(attributes=attributes)
# pprint(api_response)
# pprint(http_status_code)
# pprint(response_headers)
# except fds.sdk.RealTimeNews.ApiException as e:
# print("Exception when calling BasicApi->get_basic_asset_class_list: %s\n" % e)
# # Get response asynchronous
# try:
# # List of asset classes.
# async_result = api_instance.get_basic_asset_class_list_async(attributes=attributes)
# api_response = async_result.get()
# pprint(api_response)
# except fds.sdk.RealTimeNews.ApiException as e:
# print("Exception when calling BasicApi->get_basic_asset_class_list: %s\n" % e)
# # Get response, http status code and response headers asynchronous
# try:
# # List of asset classes.
# async_result = api_instance.get_basic_asset_class_list_with_http_info_async(attributes=attributes)
# api_response, http_status_code, response_headers = async_result.get()
# pprint(api_response)
# pprint(http_status_code)
# pprint(response_headers)
# except fds.sdk.RealTimeNews.ApiException as e:
# print("Exception when calling BasicApi->get_basic_asset_class_list: %s\n" % e)
Using Pandas
To convert an API response to a Pandas DataFrame, it is necessary to transform it first to a dictionary.
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 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.
Note: This prints out sensitive information (e.g. the full request and response). Use with care.
import logging
import fds.sdk.RealTimeNews
logging.basicConfig(level=logging.DEBUG)
configuration = fds.sdk.RealTimeNews.Configuration(...)
configuration.debug = True
Configure a Proxy
You can pass proxy settings to the Configuration class:
proxy: The URL of the proxy to use.proxy_headers: a dictionary to pass additional headers to the proxy (e.g.Proxy-Authorization).
import fds.sdk.RealTimeNews
configuration = fds.sdk.RealTimeNews.Configuration(
# ...
proxy="http://secret:password@localhost:5050",
proxy_headers={
"Custom-Proxy-Header": "Custom-Proxy-Header-Value"
}
)
Custom SSL Certificate
TLS/SSL certificate verification can be configured with the following Configuration parameters:
ssl_ca_cert: a path to the certificate to use for verification inPEMformat.verify_ssl: setting this toFalsedisables the verification of certificates. Disabling the verification is not recommended, but it might be useful during local development or testing.
import fds.sdk.RealTimeNews
configuration = fds.sdk.RealTimeNews.Configuration(
# ...
ssl_ca_cert='/path/to/ca.pem'
)
Request Retries
In case the request retry behaviour should be customized, it is possible to pass a urllib3.Retry object to the retry property of the Configuration.
from urllib3 import Retry
import fds.sdk.RealTimeNews
configuration = fds.sdk.RealTimeNews.Configuration(
# ...
)
configuration.retries = Retry(total=3, status_forcelist=[500, 502, 503, 504])
Documentation for API Endpoints
All URIs are relative to https://api.factset.com/wealth/v4
| Class | Method | HTTP request | Description |
|---|---|---|---|
| BasicApi | get_basic_asset_class_list | GET /basic/asset-class/list | List of asset classes. |
| BasicApi | get_basic_benchmark_type_list | GET /basic/benchmark/type/list | List of benchmark types. |
| BasicApi | get_basic_frequency_type_list | GET /basic/frequency/type/list | List of frequency types. |
| BasicApi | get_basic_language_get | GET /basic/language/get | Details for a language. |
| BasicApi | get_basic_language_get_by_code | GET /basic/language/get-by-code | Details for a language identified by code. |
| BasicApi | get_basic_language_list | GET /basic/language/list | List of languages. |
| BasicApi | get_basic_market_get | GET /basic/market/get | Details of a market. |
| BasicApi | get_basic_market_group_list | GET /basic/market/group/list | List of market groups. |
| BasicApi | get_basic_market_type_list | GET /basic/market/type/list | List of market types. |
| BasicApi | get_basic_media_kind_list | GET /basic/media/kind/list | List of media kinds. |
| BasicApi | get_basic_region_continent_get | GET /basic/region/continent/get | Details for a continent. |
| BasicApi | get_basic_region_continent_list | GET /basic/region/continent/list | List of continents. |
| BasicApi | get_basic_region_country_get | GET /basic/region/country/get | Details for a country. |
| BasicApi | get_basic_region_country_get_by_code | GET /basic/region/country/get-by-code | Details for a country identified by code. |
| BasicApi | get_basic_region_country_list | GET /basic/region/country/list | List of countries. |
| BasicApi | get_basic_region_get | GET /basic/region/get | Details for a region. |
| BasicApi | get_basic_region_list | GET /basic/region/list | List of regions. |
| BasicApi | get_basic_timezone_get | GET /basic/timezone/get | Details of a timezone. |
| BasicApi | get_basic_timezone_get_by_name | GET /basic/timezone/get-by-name | Details of a timezone identified by name. |
| BasicApi | get_basic_value_unit_alternative_list | GET /basic/value-unit/alternative/list | List of alternative units. |
| BasicApi | get_basic_value_unit_currency_fractional_get | GET /basic/value-unit/currency/fractional/get | Details of a fractional currency. |
| BasicApi | get_basic_value_unit_currency_fractional_list | GET /basic/value-unit/currency/fractional/list | List of fractional currencies. |
| BasicApi | get_basic_value_unit_get | GET /basic/value-unit/get | Details of a value unit. |
| BasicApi | post_basic_background_text_type_list | POST /basic/background-text/type/list | List of background text types. |
| BasicApi | post_basic_delivery_list | POST /basic/delivery/list | List of deliveries. |
| BasicApi | post_basic_market_list | POST /basic/market/list | List of markets. |
| BasicApi | post_basic_media_type_list | POST /basic/media/type/list | List of Internet media types. |
| BasicApi | post_basic_mic_operating_list | POST /basic/mic/operating/list | List of operating market identifier codes (MIC). |
| BasicApi | post_basic_timezone_list | POST /basic/timezone/list | List of timezones. |
| BasicApi | post_basic_value_unit_currency_list | POST /basic/value-unit/currency/list | List of currencies. |
| BasicApi | post_basic_value_unit_currency_main_list | POST /basic/value-unit/currency/main/list | List of main currencies. |
| BasicApi | post_basic_value_unit_list | POST /basic/value-unit/list | List of value units. |
| CategoryApi | get_category_dataset_list | GET /category/dataset/list | List of entitled category datasets. |
| CategoryApi | get_category_get | GET /category/get | Details of a category. |
| CategoryApi | get_category_instrument_list | GET /category/instrument/list | List of instruments where a specific dataset has assigned a given category. |
| CategoryApi | get_category_level_get | GET /category/level/get | Details of a category level. |
| CategoryApi | get_category_list | GET /category/list | List of categories. |
| CategoryApi | get_category_list_by_level | GET /category/list-by-level | List of categories assigned to a category level. |
| CategoryApi | get_category_list_by_system | GET /category/list-by-system | List of categories assigned to a category system. |
| CategoryApi | get_category_path_get | GET /category/path/get | Path from the first level to the level of a specific category. |
| CategoryApi | get_category_system_get | GET /category/system/get | Details of an entitled category system. |
| CategoryApi | get_category_system_list | GET /category/system/list | List of entitled category systems. |
| CategoryApi | get_category_system_type_list | GET /category/system/type/list | List of category system types. |
| 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/list-by-distributor | 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/list-by-chain | List news articles of an article chain. |
| NewsApi | post_news_article_list_by_index | POST /news/article/list-by-index | News articles for instruments that are constituents of the given indices. |
| NewsApi | post_news_article_list_by_instrument | POST /news/article/list-by-instrument | News articles for instruments. |
| NewsApi | post_news_article_list_by_media_kind | POST /news/article/list-by-media-kind | List news articles which contain media of specific media kinds. |
| NewsApi | post_news_article_search_by_text | POST /news/article/search-by-text | Search for news articles using a fulltext search. |
| NewsApi | post_news_publisher_search_by_name | POST /news/publisher/search-by-name | Search for publishers. |
Documentation For Models
- AttributesMember
- CursorBasedPaginationOutputObjectWithoutTotal
- GetBasicAssetClassListDataItems
- GetBasicBenchmarkTypeListDataItems
- GetBasicFrequencyTypeListDataItems
- GetBasicLanguageListDataItems
- GetBasicMarketGroupListDataItems
- GetBasicMarketTypeListDataItems
- GetBasicMediaKindListDataItems
- GetBasicRegionContinentGetDataCountriesItems
- GetBasicRegionContinentListDataItems
- GetBasicRegionCountryGetByCodeDataSubdivisionsItems
- GetBasicRegionCountryGetDataSubdivisionsItems
- GetBasicRegionCountryListDataItems
- GetBasicRegionGetDataNestedRegionsItems
- GetBasicRegionListDataItems
- GetBasicValueUnitAlternativeListDataItems
- GetBasicValueUnitCurrencyFractionalListDataItems
- GetBasicValueUnitCurrencyFractionalListDataItemsMainCurrency
- GetCategoryDatasetListDataItems
- GetCategoryDatasetListDataItemsDelivery
- GetCategoryDatasetListDataItemsSystem
- GetCategoryInstrumentListDataItems
- GetCategoryListByLevelDataCategoriesItems
- GetCategoryListByLevelDataCategoriesItemsParent
- GetCategoryListBySystemDataCategoriesItems
- GetCategoryListBySystemDataCategoriesItemsLevel
- GetCategoryListBySystemDataCategoriesItemsParent
- GetCategoryListDataCategoriesItems
- GetCategoryListDataCategoriesItemsLevel
- GetCategoryListDataCategoriesItemsParent
- GetCategoryPathGetDataCategoriesItems
- GetCategorySystemGetDataLevelsItems
- GetCategorySystemListDataItems
- GetCategorySystemListDataItemsType
- GetCategorySystemTypeListDataItems
- GetNewsArticleGetDataCategoriesItems
- GetNewsArticleGetDataInstrumentsItems
- GetNewsArticleGetDataMediaItems
- GetNewsArticleGetDataTypesItems
- GetNewsArticleTypeListDataItems
- GetNewsDistributorListDataItems
- GetNewsDistributorListDataItemsDelivery
- GetNewsPublisherListByDistributorDataItems
- GetNewsPublisherListDataItems
- GetNewsPublisherListDataItemsDistributor
- InlineResponse200
- InlineResponse2001
- InlineResponse20010
- InlineResponse20011
- InlineResponse20012
- InlineResponse20013
- InlineResponse20014
- InlineResponse20015
- InlineResponse20015Data
- InlineResponse20016
- InlineResponse20017
- InlineResponse20017Data
- InlineResponse20018
- InlineResponse20019
- InlineResponse20019Data
- InlineResponse2002
- InlineResponse20020
- InlineResponse20020Data
- InlineResponse20021
- InlineResponse20022
- InlineResponse20022Data
- InlineResponse20023
- InlineResponse20023Data
- InlineResponse20024
- InlineResponse20025
- InlineResponse20025Data
- InlineResponse20026
- InlineResponse20027
- InlineResponse20028
- InlineResponse20029
- InlineResponse20029Data
- InlineResponse20029DataMainCurrency
- InlineResponse2003
- InlineResponse20030
- InlineResponse20031
- InlineResponse20032
- InlineResponse20032Data
- InlineResponse20032DataLevel
- InlineResponse20032DataParent
- InlineResponse20032DataParentLevel
- InlineResponse20032DataSystem
- InlineResponse20033
- InlineResponse20033Data
- InlineResponse20033DataSystem
- InlineResponse20034
- InlineResponse20034Data
- InlineResponse20034DataParent
- InlineResponse20034DataSystem
- InlineResponse20034Meta
- InlineResponse20035
- InlineResponse20035Data
- InlineResponse20036
- InlineResponse20037
- InlineResponse20037Meta
- InlineResponse20038
- InlineResponse20038Data
- InlineResponse20038DataSystem
- InlineResponse20039
- InlineResponse20039Data
- InlineResponse2004
- InlineResponse20040
- InlineResponse20040Data
- InlineResponse20040DataType
- InlineResponse20041
- InlineResponse20042
- InlineResponse20043
- InlineResponse20043Data
- InlineResponse20043DataDistributor
- InlineResponse20043DataLanguage
- InlineResponse20043DataPublisher
- InlineResponse20044
- InlineResponse20044Meta
- InlineResponse20045
- InlineResponse20045Data
- InlineResponse20045DataDistributor
- InlineResponse20045DataPublisher
- InlineResponse20046
- InlineResponse20046Data
- InlineResponse20047
- InlineResponse20047Data
- InlineResponse20048
- InlineResponse20049
- InlineResponse2005
- InlineResponse20050
- InlineResponse20050Data
- InlineResponse20051
- InlineResponse20052
- InlineResponse20052Data
- InlineResponse20052DataDelivery
- InlineResponse20053
- InlineResponse20054
- InlineResponse20054Data
- InlineResponse20054DataDistributor
- InlineResponse20055
- InlineResponse20056
- InlineResponse20057
- InlineResponse2005Data
- InlineResponse2006
- InlineResponse2006Data
- InlineResponse2007
- InlineResponse2008
- InlineResponse2008Data
- InlineResponse2008DataCountry
- InlineResponse2008DataGroup
- InlineResponse2008DataTimezone
- InlineResponse2008DataType
- InlineResponse2009
- InlineResponse2009Meta
- InlineResponse200Meta
- LanguageMember
- OffsetBasedPaginationOutputObject
- OffsetBasedPaginationOutputObjectWithoutTotal
- PartialOutputObject
- PostBasicBackgroundTextTypeListDataItems
- PostBasicBackgroundTextTypeListRequest
- PostBasicBackgroundTextTypeListRequestData
- PostBasicBackgroundTextTypeListRequestDataFilter
- PostBasicBackgroundTextTypeListRequestMeta
- PostBasicDeliveryListDataItems
- PostBasicDeliveryListRequest
- PostBasicDeliveryListRequestData
- PostBasicDeliveryListRequestDataFilter
- PostBasicDeliveryListRequestMeta
- PostBasicMarketListDataItems
- PostBasicMarketListDataItemsCountry
- PostBasicMarketListDataItemsGroup
- PostBasicMarketListDataItemsTimezone
- PostBasicMarketListDataItemsType
- PostBasicMarketListRequest
- PostBasicMarketListRequestData
- PostBasicMarketListRequestDataFilter
- PostBasicMarketListRequestDataFilterMarkets
- PostBasicMarketListRequestMeta
- PostBasicMarketListRequestMetaPagination
- PostBasicMediaTypeListDataItems
- PostBasicMediaTypeListDataItemsKind
- PostBasicMediaTypeListRequest
- PostBasicMediaTypeListRequestData
- PostBasicMediaTypeListRequestDataFilter
- PostBasicMediaTypeListRequestMeta
- PostBasicMicOperatingListDataItems
- PostBasicMicOperatingListRequest
- PostBasicMicOperatingListRequestData
- PostBasicMicOperatingListRequestDataFilter
- PostBasicMicOperatingListRequestMeta
- PostBasicTimezoneListDataItems
- PostBasicTimezoneListRequest
- PostBasicTimezoneListRequestData
- PostBasicTimezoneListRequestDataFilter
- PostBasicValueUnitCurrencyListDataItems
- PostBasicValueUnitCurrencyListRequest
- PostBasicValueUnitCurrencyListRequestMeta
- PostBasicValueUnitCurrencyMainListDataItems
- PostBasicValueUnitCurrencyMainListRequest
- PostBasicValueUnitCurrencyMainListRequestData
- PostBasicValueUnitCurrencyMainListRequestDataFilter
- PostBasicValueUnitListDataItems
- PostBasicValueUnitListRequest
- PostBasicValueUnitListRequestData
- PostBasicValueUnitListRequestDataFilter
- PostBasicValueUnitListRequestMeta
- PostNewsArticleListByChainDataArticlesCategoriesItems
- PostNewsArticleListByChainDataArticlesInstrumentsItems
- PostNewsArticleListByChainDataArticlesItems
- PostNewsArticleListByChainDataArticlesItemsLanguage
- PostNewsArticleListByChainDataArticlesTypesItems
- PostNewsArticleListByChainRequest
- PostNewsArticleListByChainRequestData
- PostNewsArticleListByChainRequestDataFilter
- PostNewsArticleListByChainRequestDataFilterRange
- PostNewsArticleListByChainRequestMeta
- PostNewsArticleListByChainRequestMetaSubscription
- PostNewsArticleListByIndexDataArticlesCategoriesItems
- PostNewsArticleListByIndexDataArticlesInstrumentsItems
- PostNewsArticleListByIndexDataArticlesItems
- PostNewsArticleListByIndexDataArticlesItemsChain
- PostNewsArticleListByIndexDataArticlesItemsDistributor
- PostNewsArticleListByIndexDataArticlesItemsLanguage
- PostNewsArticleListByIndexDataArticlesItemsPublisher
- PostNewsArticleListByIndexDataArticlesTypesItems
- PostNewsArticleListByIndexDataIdentifiersItems
- PostNewsArticleListByIndexDataIdentifiersItemsStatus
- PostNewsArticleListByIndexRequest
- PostNewsArticleListByIndexRequestData
- PostNewsArticleListByIndexRequestDataFilter
- PostNewsArticleListByIndexRequestDataFilterCategories
- PostNewsArticleListByIndexRequestDataFilterDistributor
- PostNewsArticleListByIndexRequestDataFilterLanguage
- PostNewsArticleListByIndexRequestDataFilterPublisher
- PostNewsArticleListByIndexRequestDataFilterRegions
- PostNewsArticleListByIndexRequestDataFilterTypes
- PostNewsArticleListByIndexRequestDataIdentifier
- PostNewsArticleListByIndexRequestMeta
- PostNewsArticleListByIndexRequestMetaSubscription
- PostNewsArticleListByInstrumentDataArticlesCategoriesItems
- PostNewsArticleListByInstrumentDataArticlesInstrumentsItems
- PostNewsArticleListByInstrumentDataArticlesInstrumentsItemsFsym
- PostNewsArticleListByInstrumentDataArticlesInstrumentsItemsFsymSecurity
- PostNewsArticleListByInstrumentDataArticlesItems
- PostNewsArticleListByInstrumentDataArticlesItemsChain
- PostNewsArticleListByInstrumentDataArticlesItemsDistributor
- PostNewsArticleListByInstrumentDataArticlesItemsLanguage
- PostNewsArticleListByInstrumentDataArticlesItemsPublisher
- PostNewsArticleListByInstrumentDataArticlesTypesItems
- PostNewsArticleListByInstrumentDataIdentifiersItems
- PostNewsArticleListByInstrumentDataIdentifiersItemsStatus
- PostNewsArticleListByInstrumentRequest
- PostNewsArticleListByInstrumentRequestData
- PostNewsArticleListByInstrumentRequestDataFilter
- PostNewsArticleListByInstrumentRequestDataFilterCategories
- PostNewsArticleListByInstrumentRequestDataFilterDistributor
- PostNewsArticleListByInstrumentRequestDataFilterPublisher
- PostNewsArticleListByInstrumentRequestDataFilterRange
- PostNewsArticleListByInstrumentRequestDataIdentifier
- PostNewsArticleListByInstrumentRequestMeta
- PostNewsArticleListByInstrumentRequestMetaSubscription
- PostNewsArticleListByMediaKindDataCategoriesItems
- PostNewsArticleListByMediaKindDataInstrumentsItems
- PostNewsArticleListByMediaKindDataItems
- PostNewsArticleListByMediaKindDataItemsChain
- PostNewsArticleListByMediaKindDataItemsDistributor
- PostNewsArticleListByMediaKindDataItemsLanguage
- PostNewsArticleListByMediaKindDataItemsPublisher
- PostNewsArticleListByMediaKindDataTypesItems
- PostNewsArticleListByMediaKindRequest
- PostNewsArticleListByMediaKindRequestData
- PostNewsArticleListByMediaKindRequestDataFilter
- PostNewsArticleListByMediaKindRequestDataFilterDistributor
- PostNewsArticleListByMediaKindRequestDataFilterLanguage
- PostNewsArticleListByMediaKindRequestDataFilterPublisher
- PostNewsArticleListByMediaKindRequestDataFilterTypes
- PostNewsArticleListByMediaKindRequestMeta
- PostNewsArticleListByMediaKindRequestMetaSubscription
- PostNewsArticleListDataCategoriesItems
- PostNewsArticleListDataInstrumentsItems
- PostNewsArticleListDataItems
- PostNewsArticleListDataItemsChain
- PostNewsArticleListDataTypesItems
- PostNewsArticleListRequest
- PostNewsArticleListRequestData
- PostNewsArticleListRequestDataFilter
- PostNewsArticleListRequestDataFilterCategories
- PostNewsArticleListRequestDataFilterDistributor
- PostNewsArticleListRequestDataFilterLanguage
- PostNewsArticleListRequestDataFilterPublisher
- PostNewsArticleListRequestDataFilterRange
- PostNewsArticleListRequestDataFilterRegions
- PostNewsArticleListRequestDataFilterTypes
- PostNewsArticleListRequestMeta
- PostNewsArticleListRequestMetaPagination
- PostNewsArticleListRequestMetaSubscription
- PostNewsArticleSearchByTextDataCategoriesItems
- PostNewsArticleSearchByTextDataCriteriaItems
- PostNewsArticleSearchByTextDataCriteriaItemsCategories
- PostNewsArticleSearchByTextDataCriteriaItemsDistributor
- PostNewsArticleSearchByTextDataCriteriaItemsIndices
- PostNewsArticleSearchByTextDataCriteriaItemsInstruments
- PostNewsArticleSearchByTextDataCriteriaItemsLanguage
- PostNewsArticleSearchByTextDataCriteriaItemsPublisher
- PostNewsArticleSearchByTextDataCriteriaItemsRegions
- PostNewsArticleSearchByTextDataCriteriaItemsTypes
- PostNewsArticleSearchByTextDataInstrumentsItems
- PostNewsArticleSearchByTextDataItems
- PostNewsArticleSearchByTextDataItemsPublisher
- PostNewsArticleSearchByTextDataTypesItems
- PostNewsArticleSearchByTextRequest
- PostNewsArticleSearchByTextRequestData
- PostNewsArticleSearchByTextRequestDataText
- PostNewsArticleSearchByTextRequestDataTextCriteria
- PostNewsArticleSearchByTextRequestMeta
- PostNewsArticleSearchByTextRequestMetaSubscription
- PostNewsPublisherSearchByNameDataItems
- PostNewsPublisherSearchByNameRequest
- PostNewsPublisherSearchByNameRequestData
- PostNewsPublisherSearchByNameRequestDataFilter
- PostNewsPublisherSearchByNameRequestDataFilterDelivery
- PostNewsPublisherSearchByNameRequestDataFilterDistributor
- PostNewsPublisherSearchByNameRequestMeta
- 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.RealTimeNews.apis and fds.sdk.RealTimeNews.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.RealTimeNews.api.default_api import DefaultApifrom fds.sdk.RealTimeNews.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.RealTimeNews
from fds.sdk.RealTimeNews.apis import *
from fds.sdk.RealTimeNews.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 Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fds.sdk.RealTimeNews-0.20.1.tar.gz.
File metadata
- Download URL: fds.sdk.RealTimeNews-0.20.1.tar.gz
- Upload date:
- Size: 191.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 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 |
21b397adc20d304f1173fd9ab8d1c280739a0dc2b3d45148f2dd9175783009f0
|
|
| MD5 |
e37638924c76cd3c30d6f90ecd994e5e
|
|
| BLAKE2b-256 |
4b8e8bbef24b1f688181702a5c1022533050f1834d981367137539fd35700770
|
File details
Details for the file fds.sdk.RealTimeNews-0.20.1-py3-none-any.whl.
File metadata
- Download URL: fds.sdk.RealTimeNews-0.20.1-py3-none-any.whl
- Upload date:
- Size: 1.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 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 |
d42d5c9dbbd2a7f828121070a5cc220e2996428ede28d66ffbe1243f6eef3d74
|
|
| MD5 |
e72975be5fd7fb1ebdc2684f3824adce
|
|
| BLAKE2b-256 |
8c4e316172eec6dfc10facb4005ecf921d949f41b3ac9cac9421b5f4e28fddab
|