FactSet Funds client library for Python
Project description
FactSet Funds client library for Python
FactSet Mutual Funds data offers over 50 fund- and share class-specific data points for mutual funds listed in the United States.
FactSet Mutual Funds Reference provides fund-specific reference information as well as FactSet's proprietary classification system. It includes but is not limited to the following coverage
- Fund descriptions
- A seven-tier classification system
- Leverage information
- Fees and expenses
- Portfolio managers
FactSet Mutual Funds Time Series provides quantitative data items on a historical basis. It includes but is not limited to the following coverage
- Net asset value
- Fund flows
- Assets under management
- Total return
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 1.0.0
- Package version: 1.0.7
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Requirements
- Python >= 3.7
Installation
Poetry
poetry add fds.sdk.utils fds.sdk.FactSetFunds==1.0.7
pip
pip install fds.sdk.utils fds.sdk.FactSetFunds==1.0.7
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.FactSetFunds
from fds.sdk.FactSetFunds.api import fund_flows__aum_api
from fds.sdk.FactSetFunds.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.FactSetFunds.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.FactSetFunds.Configuration(
# username='USERNAME-SERIAL',
# password='API-KEY'
# )
# Enter a context with an instance of the API client
with fds.sdk.FactSetFunds.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = fund_flows__aum_api.FundFlowsAUMApi(api_client)
# NOTE: The parameter variable defined below is just an example and may potentially contain non valid values. So please replace this with valid values.
ids = ["MABAX-US"] # [str] | The requested fund identifier. FactSet Identifiers, tickers, CUSIP, SEDOL, and ISIN are accepted inputs. <p>***ids limit** = 1000 per request*</p> *<p>Make note, GET Method URL request lines are also limited to a total length of 8192 bytes (8KB). In cases where the service allows for thousands of ids, which may lead to exceeding this request line limit of 8KB, its advised for any requests with large request lines to be requested through the respective \"POST\" method.</p>*
# NOTE: The parameter variable defined below is just an example and may potentially contain non valid values. So please replace this with valid values.
start_date = "2018-12-31" # str | The start date requested for a given date range in **YYYY-MM-DD** format. If left blank, the API will default to latest available completed period. (optional)
# NOTE: The parameter variable defined below is just an example and may potentially contain non valid values. So please replace this with valid values.
end_date = "2019-12-31" # str | The end date requested for a given date range in **YYYY-MM-DD** format. If left blank, the API will default to latest available completed period. (optional)
# NOTE: The parameter variable defined below is just an example and may potentially contain non valid values. So please replace this with valid values.
frequency = "M" # str | Controls the display frequency of the data returned. * **MTD** = Month-To-Date * **M** = Monthly, based on the last trading day of the month. * **CQTD** = Calendar Quarter-to-Date * **CQ** = Calendar Quarterly * **CYTD** = Calendar Year-to-Date * **CY** = Calendar Yearly (optional) if omitted the server will use the default value of "M"
# NOTE: The parameter variable defined below is just an example and may potentially contain non valid values. So please replace this with valid values.
currency = "USD" # str | Controls the Currency conversion of the Fund. By default, the currency will use the funds local currency. (optional) if omitted the server will use the default value of "LOCAL"
# NOTE: The parameter variable defined below is just an example and may potentially contain non valid values. So please replace this with valid values.
data_type = "ROLL" # str | The Data Type of the NAV expressed as Raw or Rolled values. (optional) if omitted the server will use the default value of "ROLL"
try:
# Get Fund AUM for a requested date range and list of ids
# example passing only required values which don't have defaults set
# and optional values
api_response = api_instance.get_funds_aum(ids, start_date=start_date, end_date=end_date, frequency=frequency, currency=currency, data_type=data_type)
pprint(api_response)
except fds.sdk.FactSetFunds.ApiException as e:
print("Exception when calling FundFlowsAUMApi->get_funds_aum: %s\n" % e)
# # Get response, http status code and response headers
# try:
# # Get Fund AUM for a requested date range and list of ids
# api_response, http_status_code, response_headers = api_instance.get_funds_aum_with_http_info(ids, start_date=start_date, end_date=end_date, frequency=frequency, currency=currency, data_type=data_type)
# pprint(api_response)
# pprint(http_status_code)
# pprint(response_headers)
# except fds.sdk.FactSetFunds.ApiException as e:
# print("Exception when calling FundFlowsAUMApi->get_funds_aum: %s\n" % e)
# # Get response asynchronous
# try:
# # Get Fund AUM for a requested date range and list of ids
# async_result = api_instance.get_funds_aum_async(ids, start_date=start_date, end_date=end_date, frequency=frequency, currency=currency, data_type=data_type)
# api_response = async_result.get()
# pprint(api_response)
# except fds.sdk.FactSetFunds.ApiException as e:
# print("Exception when calling FundFlowsAUMApi->get_funds_aum: %s\n" % e)
# # Get response, http status code and response headers asynchronous
# try:
# # Get Fund AUM for a requested date range and list of ids
# async_result = api_instance.get_funds_aum_with_http_info_async(ids, start_date=start_date, end_date=end_date, frequency=frequency, currency=currency, data_type=data_type)
# api_response, http_status_code, response_headers = async_result.get()
# pprint(api_response)
# pprint(http_status_code)
# pprint(response_headers)
# except fds.sdk.FactSetFunds.ApiException as e:
# print("Exception when calling FundFlowsAUMApi->get_funds_aum: %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.FactSetFunds
logging.basicConfig(level=logging.DEBUG)
configuration = fds.sdk.FactSetFunds.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.FactSetFunds
configuration = fds.sdk.FactSetFunds.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 inPEM
format.verify_ssl
: setting this toFalse
disables the verification of certificates. Disabling the verification is not recommended, but it might be useful during local development or testing.
import fds.sdk.FactSetFunds
configuration = fds.sdk.FactSetFunds.Configuration(
# ...
ssl_ca_cert='/path/to/ca.pem'
)
Documentation for API Endpoints
All URIs are relative to https://api.factset.com/content
Class | Method | HTTP request | Description |
---|---|---|---|
FundFlowsAUMApi | get_funds_aum | GET /factset-funds/v1/aum | Get Fund AUM for a requested date range and list of ids |
FundFlowsAUMApi | get_funds_aum_for_list | POST /factset-funds/v1/aum | Get Fund AUM for a requested date range and large list of ids |
FundFlowsAUMApi | get_funds_flows | GET /factset-funds/v1/flows | Get Fund Flows for a requested date range and list of ids |
FundFlowsAUMApi | get_funds_flows_for_list | POST /factset-funds/v1/flows | Get Fund Flows for a requested date range and large list of ids |
HelperApi | get_statuses | GET /factset-funds/v1/status | Get Fund's current status and database availability |
HelperApi | get_statuses_for_list | POST /factset-funds/v1/status | Get Fund's current status and database availability for large list of ids. |
PricesReturnsApi | get_funds_prices | GET /factset-funds/v1/prices | Get Fund Prices (NAV) for a requested time-series |
PricesReturnsApi | get_funds_prices_for_list | POST /factset-funds/v1/prices | Get Fund Prices (NAV) for a requested date range and large list of ids. |
PricesReturnsApi | get_funds_returns | GET /factset-funds/v1/returns | Get Fund Returns for a requested time-series |
PricesReturnsApi | get_funds_returns_for_list | POST /factset-funds/v1/returns | Get Fund Returns for a requested time-series and large list of ids |
PricesReturnsApi | get_funds_returns_range | GET /factset-funds/v1/returns-range | Get Fund Returns for a user-defined date range |
PricesReturnsApi | get_funds_returns_range_for_list | POST /factset-funds/v1/returns-range | Get Fund Returns over pre-defined time horizons as of a specific date for large list of ids. |
PricesReturnsApi | get_funds_returns_snapshot | GET /factset-funds/v1/returns-snapshot | Get Fund Returns over pre-defined time horizons as of a specific date. |
PricesReturnsApi | get_funds_returns_snapshot_for_list | POST /factset-funds/v1/returns-snapshot | Get Fund Returns over pre-defined time horizons as of a specific date. |
ReferenceApi | get_funds_benchmark_details | GET /factset-funds/v1/benchmark-details | Get the Fund's Primary and Segment Benchmark Details |
ReferenceApi | get_funds_benchmark_details_for_list | POST /factset-funds/v1/benchmark-details | Get the Fund's Primary and Segment Benchmark details for large list of ids. |
ReferenceApi | get_funds_classifications | GET /factset-funds/v1/classifications | Get basic Fund Classifications |
ReferenceApi | get_funds_classifications_for_list | POST /factset-funds/v1/classifications | Get basic Fund Classifications for a large list of ids. |
ReferenceApi | get_funds_costs_fees | GET /factset-funds/v1/costs-fees | Get the Fund's Costs, Investment minimums and Risk, and Fees. |
ReferenceApi | get_funds_costs_fees_for_list | POST /factset-funds/v1/costs-fees | Get the Fund's Costs, Investment minimums and Risk, and Fees for large list of ids. |
ReferenceApi | get_funds_managers | GET /factset-funds/v1/managers | Get a list of Fund Managers and related details for a list of ids. |
ReferenceApi | get_funds_managers_for_list | POST /factset-funds/v1/managers | Get a list of Fund Managers and related details for a large list of ids. |
ReferenceApi | get_funds_summary | GET /factset-funds/v1/summary | Get basic reference summary data for a Fund. |
ReferenceApi | get_funds_summary_for_list | POST /factset-funds/v1/summary | Get basic reference data for a large list of Fund ids. |
ReferenceApi | get_related_funds | GET /factset-funds/v1/related-funds | Get a list of Related Funds for a list of Fund ids. |
ReferenceApi | get_related_funds_for_list | POST /factset-funds/v1/related-funds | Get a list of Related Funds for a large list of Fund ids. |
Documentation For Models
- Aum
- AumRequest
- AumResponse
- BenchmarkDetails
- BenchmarkDetailsRequest
- BenchmarkDetailsResponse
- Classifications
- ClassificationsRequest
- ClassificationsResponse
- CostsFees
- CostsFeesIds
- CostsFeesRequest
- CostsFeesResponse
- DataType
- DividendAdjust
- ErrorResponse
- ErrorResponseSubErrors
- Flows
- FlowsRequest
- FlowsResponse
- Frequency
- FrequencyAum
- FundsPricesRequest
- FundsPricesResponse
- FundsReturnsRequest
- FundsReturnsResponse
- FundsReturnsSnapshotRequest
- FundsReturnsSnapshotResponse
- Ids
- Managers
- ManagersRequest
- ManagersResponse
- Prices
- RelatedFunds
- RelatedFundsRequest
- RelatedFundsResponse
- Returns
- ReturnsRange
- ReturnsRangeRequest
- ReturnsRangeResponse
- ReturnsSnapshot
- SplitAdjust
- Statuses
- StatusesRequest
- StatusesResponse
- Summaries
- SummariesRequest
- SummariesResponse
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.FactSetFunds.apis and fds.sdk.FactSetFunds.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.FactSetFunds.api.default_api import DefaultApi
from fds.sdk.FactSetFunds.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.FactSetFunds
from fds.sdk.FactSetFunds.apis import *
from fds.sdk.FactSetFunds.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.FactSetFunds-1.0.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b29b1ce97572378e384d26d288f4cedcf9cdaaf73344f4ac077f3c9729985a6 |
|
MD5 | 631c3c64166ca46d90764d8bcf645d52 |
|
BLAKE2b-256 | 03152f680a806098babd9fc2b11ab23966de13f6ae9102aaa515c105dfb4309a |