Open:Risk client library for Python
Project description
Open:Risk client library for Python
Service to calculate parametric linear risk statistics and generate risk model asset identifier mappings.
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 1.22.0
- Package version: 0.21.3
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Requirements
- Python >= 3.7
Installation
Poetry
poetry add fds.sdk.utils fds.sdk.OpenRisk
pip
pip install fds.sdk.utils fds.sdk.OpenRisk
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.OpenRisk
from fds.sdk.OpenRisk.api import about_api
from fds.sdk.OpenRisk.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.OpenRisk.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.OpenRisk.Configuration(
# username='USERNAME-SERIAL',
# password='API-KEY'
# )
# Enter a context with an instance of the API client
with fds.sdk.OpenRisk.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = about_api.AboutApi(api_client)
version = "v1" # str | Semantic version number. See [this link here](https://regexr.com/47b7t) to test validate patterns.
try:
# Get OpenAPI Specification documentation
api_response = api_instance.documentation(version)
pprint(api_response)
except fds.sdk.OpenRisk.ApiException as e:
print("Exception when calling AboutApi->documentation: %s\n" % e)
# Get response, http status code and response headers
# try:
# # Get OpenAPI Specification documentation
# api_response, http_status_code, response_headers = api_instance.documentation_with_http_info(version)
# pprint(api_response)
# pprint(http_status_code)
# pprint(response_headers)
# except fds.sdk.OpenRisk.ApiException as e:
# print("Exception when calling AboutApi->documentation: %s\n" % e)
# Get response asynchronous
# try:
# # Get OpenAPI Specification documentation
# async_result = api_instance.documentation_async(version)
# api_response = async_result.get()
# pprint(api_response)
# except fds.sdk.OpenRisk.ApiException as e:
# print("Exception when calling AboutApi->documentation: %s\n" % e)
# Get response, http status code and response headers asynchronous
# try:
# # Get OpenAPI Specification documentation
# async_result = api_instance.documentation_with_http_info_async(version)
# api_response, http_status_code, response_headers = async_result.get()
# pprint(api_response)
# pprint(http_status_code)
# pprint(response_headers)
# except fds.sdk.OpenRisk.ApiException as e:
# print("Exception when calling AboutApi->documentation: %s\n" % e)
Documentation for API Endpoints
All URIs are relative to https://api.factset.com/analytics/openrisk
Class | Method | HTTP request | Description |
---|---|---|---|
AboutApi | documentation | GET /linear/{version} | Get OpenAPI Specification documentation |
AboutApi | health_status | GET /linear/{version}/health | Get health of service |
AboutApi | list_risk_models | GET /linear/{version}/riskmodels | Get available risk models |
AboutApi | risk_model_metadata | GET /linear/{version}/riskmodels/{modelCode} | Get risk model details |
AboutApi | stats | GET /linear/{version}/stats | Get available risk statistics details |
AboutApi | stats_names_only | GET /linear/{version}/stats-names-only | Get available risk statistics names |
OperationsApi | calculate_from_holdings | POST /linear/{version}/calculate/from-holdings | Calculate risk statistics |
OperationsApi | generate_id_mapping | POST /linear/{version}/generate/id-mapping | Generate risk model ID mapping |
Documentation For Models
- AdditionalCalculationInputs
- AdditionalCalculationInputsMarketExcess
- AssetTypes
- CalculateFromHoldingsRequestBody
- CalculateFromHoldingsRequestData
- CalendarCode
- CompositeAssetDefinitions
- CovarianceDateFormatConvention
- CurrencyISOCode
- Date
- ErrorItem
- ErrorResponse
- ExposureDateFormatConvention
- FactorGroup
- FactorGroupNodes
- FactorsVisible
- GenerateIDMappingRequestBody
- GenerateIDMappingRequestData
- GroupsLabels
- Holding
- HoldingAllOf
- Holdings
- IDsAndMarketValues
- InlineResponse200
- InlineResponse2001
- InlineResponse2001Data
- InlineResponse2002
- InlineResponse2002Data
- InlineResponse2002DataFactors
- InlineResponse2002DataRiskModelAppendFormat
- InlineResponse2003
- InlineResponse2004
- InlineResponse2005
- InlineResponse200Components
- InlineResponse200Info
- InlineResponse200Servers
- InlineResponse403
- InlineResponse404
- InputToResultSecurityIndexMapping
- Labels
- LabelsFactor
- LabelsSecurity
- LaggingDates
- MappedSecurityInfo
- RemoveCurrencyRisk
- RemoveCurrencyRiskIDs
- RequiresFactorReturns
- ResolvedDates
- ResultToInputSecurityIndexMapping
- RiskExclusionInfo
- RiskExclusionInfoExclusionInfo
- RiskMappingEntry
- RiskModelAppendData
- RiskModelAppendDataValue
- RiskModelCode
- RiskModelFactor
- SecurityGroup
- SecurityIndexMapping
- SecurityOnlyLabels
- SecurityOnlyLabelsSecurity
- SecurityOnlySuccessResponseMeta
- Stat
- StatCalculationLevel
- StatCalculationSettings
- StatResultValue
- StatResultValueDenseMatrix
- StatResultValueSparseMatrix
- StatResultValueVector
- Stats
- StatsResults
- StringDate
- SuccessResponseMeta
- SupportedStats
- SupportedStatsData
- SupportedStatsLevels
- SupportedStatsNamesOnly
- SupportedStatsSecurityGroupMethod
- UnderlyingIDs
- WarningItem
- Warnings
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.OpenRisk.apis and fds.sdk.OpenRisk.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.OpenRisk.api.default_api import DefaultApi
from fds.sdk.OpenRisk.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.OpenRisk
from fds.sdk.OpenRisk.apis import *
from fds.sdk.OpenRisk.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
Hashes for fds.sdk.OpenRisk-0.21.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b4a6fad322413209ce172494c36e366c6184c890220f39b9161e32f5ba2b3d0 |
|
MD5 | 95f0870259bb1645fcfb5c4afe720cd4 |
|
BLAKE2b-256 | ac362057495ff994fc4e643c501fc721f950f0c862dab9cfb4d1a03d11046e73 |