FactSet Concordance client library for Python
Project description
FactSet Concordance client library for Python
The FactSet Concordance API enables Application Developers and Data Scientists to programmatically discover the FactSet Identifier for a specific Entity or Person based on attributes, such as name, URL, and location.FactSet Identifiers are mapped to industry-standard identifiers, as well as to a comprehensive set of reference data and unique content, to enhance the ability to quickly connect content sets.
Using the submitted attributes, the FactSet Concordance API leverages FactSet’s extensive Entity Master, People, and Symbology databases to return potential candidate matches and a proposed match. The result is a concorded FactSet Identifier that can then be used as input throughout FactSet's expanding catalog of Content using our Content APIs or Standard DataFeeds.
There are two types of workflows supported in the API:
Entity & People Match: The first workflow follows traditional API conventions in that a request is accepted and a response is returned synchronously enabling the concordance of up to 25 names in a single request. The response returns a list of 20 candidates as well as a proposed match.
Entity & People Match - Bulk: The second workflow allows you to input a large list of names within a .CSV file in a single request With this workflow, a task is created for uploading a set of queries. Once the task has completed, the client retrieves the concordance results through the /entity-decisions or /people-decisions endpoint. Note that in the Bulk workflow, only the matches for the records are returned. Candidates are not included.
Once the service has provided a list of concorded FactSet Identifiers, you can then use our Entity Mappings and People Mappings endpoints to further review the universe of mapped identifiers or modify existing records.
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 2.7.0
- Package version: 0.24.1
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Requirements
- Python >= 3.7
Installation
Poetry
poetry add fds.sdk.utils fds.sdk.FactSetConcordance==0.24.1
pip
pip install fds.sdk.utils fds.sdk.FactSetConcordance==0.24.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:
from fds.sdk.utils.authentication import ConfidentialClient
import fds.sdk.FactSetConcordance
from fds.sdk.FactSetConcordance.api import entity_match_api
from fds.sdk.FactSetConcordance.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.FactSetConcordance.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.FactSetConcordance.Configuration(
# username='USERNAME-SERIAL',
# password='API-KEY'
# )
# Enter a context with an instance of the API client
with fds.sdk.FactSetConcordance.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = entity_match_api.EntityMatchApi(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.
name = "FactSet" # str | Name of Entity to match.
# NOTE: The parameter variable defined below is just an example and may potentially contain non valid values. So please replace this with valid values.
country = "US" # str | ISO2 country code corresponding to the entity name that is used when evaluating candidates for a match. For a list of ISO2 Country codes, visit [OA 8754](https://my.apps.factset.com/oa/pages/8754). (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.
state = "CT" # str | Two-character state code corresponding to the entity name that is used when evaluating candidates for a match. Currently, only US state codes are supported. (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.
url = "url_example" # str | URL corresponding to the entity name that is used when evaluating candidates for a match. (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.
include_entity_type = [
"PUB",
] # [str] | Three-character FactSet entity type code used to filter candidates in order to determine the final match result. Only candidates with an entity type specified will be considered for the final match result. Multiple types can be entered separated by commas. |Entity Type Code|Entity Type Description|Entity Type Code|Entity Type Description| |---|---|---|---| |ABS|Asset-Backed||MED|Broadcast Call Sign| |BAS|Business Association (JP)||MUC|Mutual Fd-Closed End| |CAC|Consolidated Accounting||MUE|Mutual Fd-ETF| |CMD|Commodity||MUT|Mutual Fd-Open End| |COL|College/University||NPO|Non-Profit Organization| |CUR|Currency||OPD|Operating Division| |ESP|Emp Stk Ownership Plan||OTH|Other| |EXT|Extinct||PEF|Pension Fund| |FAF|Family of Fds (VC/Pvt EQ)||PRO|Real Property| |FND|Foundation/Endowment||PUB|Public Company| |FNS|Financing Subsidiary/SPE||PVF|Private Eq Fd/Alt Invt| |FRX|ForEx||PVT|Private Company| |GOV|Government||SOV|Sovereign Wealth Fund| |HED|Hedge Fund||SUB|Subsidiary| |HOL|Holding Company||TRU|Trust/Trustee| |IDX|Index||UMB|Umbrella Fund| |VEN|Venture Capital Fund||JVT|Joint Venture| (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.
exclude_entity_type = [
"EXT",
] # [str] | Three-character FactSet entity type code used to filter candidates in order to determine the final match result. Candidates with an entity type specified will *not* be considered for the final match result. Multiple types can be entered separated by commas. |Entity Type Code|Entity Type Description|Entity Type Code|Entity Type Description| |---|---|---|---| |ABS|Asset-Backed||MED|Broadcast Call Sign| |BAS|Business Association (JP)||MUC|Mutual Fd-Closed End| |CAC|Consolidated Accounting||MUE|Mutual Fd-ETF| |CMD|Commodity||MUT|Mutual Fd-Open End| |COL|College/University||NPO|Non-Profit Organization| |CUR|Currency||OPD|Operating Division| |ESP|Emp Stk Ownership Plan||OTH|Other| |EXT|Extinct||PEF|Pension Fund| |FAF|Family of Fds (VC/Pvt EQ)||PRO|Real Property| |FND|Foundation/Endowment||PUB|Public Company| |FNS|Financing Subsidiary/SPE||PVF|Private Eq Fd/Alt Invt| |FRX|ForEx||PVT|Private Company| |GOV|Government||SOV|Sovereign Wealth Fund| |HED|Hedge Fund||SUB|Subsidiary| |HOL|Holding Company||TRU|Trust/Trustee| |IDX|Index||UMB|Umbrella Fund| |VEN|Venture Capital Fund||JVT|Joint Venture| (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.
include_entity_sub_type = [
"PR",
] # [str] | Two-character FactSet entity subtype code used to filter candidates in order to determine the final match result. Only candidates with an entity subtype specified will be considered for the final match result. Multiple types can be entered separated by commas. |Entity Subtype Code|Entity Subtype Description|Entity Subtype Code|Entity Subtype Description| |---|---|---|---| |AR|Arbitrage|IC|Investment Company| |BM|Bank Investment Division|IN|Insurance Company| |BR|Broker|MF|Mutual Fund Manager| |CP|Corporate|ML|Master Ltd Part| |CU|Custodial|MM|Market Maker| |FF|Fund of Funds Manager|PB|Private Banking/Wealth Mgmt| |FH|Fund of Hedge Funds Manager|PF|Pension Fund Manager| |FO|Foundation/Endowment Manager|PP|Real Estate Manager| |FS|Fund Distributor|RE|Research Firm| |FU|Fund|SB|Subsidiary Branch| |FY|Family Office|ST|Stock Borrowing/Lending| |GV|Govt (Fed/Local/Agency)|SV|Sovereign Wealth Manager| |HF|Hedge Fund Manager|VC|Venture Capital/Pvt Equity| |IA|Investment Adviser| |IB|Investment Banking| (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.
exclude_entity_sub_type = [
"HF",
] # [str] | Two-character FactSet entity subtype code used to filter candidates in order to determine the final match result. Candidates with an entity subtype specified will not be considered for the final match result. Multiple types can be entered separated by commas. |Entity Subtype Code|Entity Subtype Description|Entity Subtype Code|Entity Subtype Description| |---|---|---|---| |AR|Arbitrage|IC|Investment Company| |BM|Bank Investment Division|IN|Insurance Company| |BR|Broker|MF|Mutual Fund Manager| |CP|Corporate|ML|Master Ltd Part| |CU|Custodial|MM|Market Maker| |FF|Fund of Funds Manager|PB|Private Banking/Wealth Mgmt| |FH|Fund of Hedge Funds Manager|PF|Pension Fund Manager| |FO|Foundation/Endowment Manager|PP|Real Estate Manager| |FS|Fund Distributor|RE|Research Firm| |FU|Fund|SB|Subsidiary Branch| |FY|Family Office|ST|Stock Borrowing/Lending| |GV|Govt (Fed/Local/Agency)|SV|Sovereign Wealth Manager| |HF|Hedge Fund Manager|VC|Venture Capital/Pvt Equity| |IA|Investment Adviser| |IB|Investment Banking| (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.
include_parent = False # bool | Flag to include parent entities in the list of candidates. This parameter does not influence the match result. (optional) if omitted the server will use the default value of False
# NOTE: The parameter variable defined below is just an example and may potentially contain non valid values. So please replace this with valid values.
bbg_figi = "BBG009S39JY5" # str | Input identifiers for the Bloomberg Listing/Regional/Security ID symbol type. (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.
bbg_ticker = "BloombergId" # str | Input identifiers for the Bloomberg Listing and Regional Ticker symbol Type. (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.
bic = "BICCode" # str | Input identifiers for the BICCode - Bank Indentification Code symbol Type. (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.
cik = "CIK" # str | Input identifiers for the CIK - Edgar Central Index Keys symbol type. (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.
crd = "CRD" # str | Input identifiers for the CRD - Central Registration Depository symbol type. (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.
cusip = "CUSIP" # str | Input identifiers for the CUSIP symbol type. (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.
duns = "Dun&Bradstreet" # str | Input identifiers for the DUNS - Dun & Bradstreet Data Universal Numbering System symbol type. (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.
ein = "EmployerIdentificationNumber" # str | Input identifiers for the EIN - Employer Identification Number symbol type. (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.
factset_id = "FactSetIdentifier" # str | Input identifiers for the type FactSet Identifier - FactSet -E,-S,-R, -L Permanent Identifier symbol type. (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.
fitch = "FitchCreditRating" # str | Input identifiers for the Fitch - Fitch Ratings symbol type. (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.
gvkey = "GVKey" # str | Input identifiers for the type GVKEY - Compustat Global Company Key symbol type. (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.
gvkey_iid = "GVKeyIssueIdentifier" # str | Input identifiers for the type GVKEY+IID - Compustat Global Company Key and Issue Identifier symbol type. (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.
isin = "ISIN" # str | Input identifiers for the ISIN - International Securities Identification Number symbol type. (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.
jcn = "JCN" # str | Input identifiers for the type JCN - Japanese Corporate Number symbol type. (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.
lei = "LegalEntityIdentifier" # str | Input identifiers for the LEI - Legal Entity Identifier symbol type (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.
lxid = "LXID" # str | Input identifiers for the type LXID - Markit Syndicated Loan Identifier symbol type. (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.
md = "MoodysIssuer" # str | Input identifiers for the Moody's Ratings Identifier type. (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.
red_code = "RedCode" # str | Input identifiers for the type Red Code - Markit Reference Entity Identifier symbol type. (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.
rssd = "FederalReserveRSSDIdentifier" # str | Input identifiers for the RSSD - Federal Reserve RSSD symbol typ. (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.
sedol = "SEDOL" # str | Input identifiers for the SEDOL symbol type. (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.
spr = "SPRating" # str | Input identifiers for the Price Ticker symbol type. (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.
ticker = "PriceTicker" # str | Input identifiers for the Price Ticker symbol type. (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.
ticker_exchange = "TickerExch" # str | Input identifiers for the TickerExchange. (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.
ticker_region = "TickerRegion" # str | Input identifiers for the TickerRegion. (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.
ukch = "UKCompanyHouse" # str | Input identifiers for the UKCH - UK Company House symbol type. (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.
valoren = "VALOR" # str | Input identifiers for the Valoren (\"Valor\") symbol type. (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.
wkn = "WKN" # str | Input identifiers for the WKN - German Securities symbol type. (optional)
try:
# Get Entity Candidates and Matches for a single name and attributes.
# example passing only required values which don't have defaults set
# and optional values
api_response = api_instance.get_entity_match(name, country=country, state=state, url=url, include_entity_type=include_entity_type, exclude_entity_type=exclude_entity_type, include_entity_sub_type=include_entity_sub_type, exclude_entity_sub_type=exclude_entity_sub_type, include_parent=include_parent, bbg_figi=bbg_figi, bbg_ticker=bbg_ticker, bic=bic, cik=cik, crd=crd, cusip=cusip, duns=duns, ein=ein, factset_id=factset_id, fitch=fitch, gvkey=gvkey, gvkey_iid=gvkey_iid, isin=isin, jcn=jcn, lei=lei, lxid=lxid, md=md, red_code=red_code, rssd=rssd, sedol=sedol, spr=spr, ticker=ticker, ticker_exchange=ticker_exchange, ticker_region=ticker_region, ukch=ukch, valoren=valoren, wkn=wkn)
pprint(api_response)
except fds.sdk.FactSetConcordance.ApiException as e:
print("Exception when calling EntityMatchApi->get_entity_match: %s\n" % e)
# # Get response, http status code and response headers
# try:
# # Get Entity Candidates and Matches for a single name and attributes.
# api_response, http_status_code, response_headers = api_instance.get_entity_match_with_http_info(name, country=country, state=state, url=url, include_entity_type=include_entity_type, exclude_entity_type=exclude_entity_type, include_entity_sub_type=include_entity_sub_type, exclude_entity_sub_type=exclude_entity_sub_type, include_parent=include_parent, bbg_figi=bbg_figi, bbg_ticker=bbg_ticker, bic=bic, cik=cik, crd=crd, cusip=cusip, duns=duns, ein=ein, factset_id=factset_id, fitch=fitch, gvkey=gvkey, gvkey_iid=gvkey_iid, isin=isin, jcn=jcn, lei=lei, lxid=lxid, md=md, red_code=red_code, rssd=rssd, sedol=sedol, spr=spr, ticker=ticker, ticker_exchange=ticker_exchange, ticker_region=ticker_region, ukch=ukch, valoren=valoren, wkn=wkn)
# pprint(api_response)
# pprint(http_status_code)
# pprint(response_headers)
# except fds.sdk.FactSetConcordance.ApiException as e:
# print("Exception when calling EntityMatchApi->get_entity_match: %s\n" % e)
# # Get response asynchronous
# try:
# # Get Entity Candidates and Matches for a single name and attributes.
# async_result = api_instance.get_entity_match_async(name, country=country, state=state, url=url, include_entity_type=include_entity_type, exclude_entity_type=exclude_entity_type, include_entity_sub_type=include_entity_sub_type, exclude_entity_sub_type=exclude_entity_sub_type, include_parent=include_parent, bbg_figi=bbg_figi, bbg_ticker=bbg_ticker, bic=bic, cik=cik, crd=crd, cusip=cusip, duns=duns, ein=ein, factset_id=factset_id, fitch=fitch, gvkey=gvkey, gvkey_iid=gvkey_iid, isin=isin, jcn=jcn, lei=lei, lxid=lxid, md=md, red_code=red_code, rssd=rssd, sedol=sedol, spr=spr, ticker=ticker, ticker_exchange=ticker_exchange, ticker_region=ticker_region, ukch=ukch, valoren=valoren, wkn=wkn)
# api_response = async_result.get()
# pprint(api_response)
# except fds.sdk.FactSetConcordance.ApiException as e:
# print("Exception when calling EntityMatchApi->get_entity_match: %s\n" % e)
# # Get response, http status code and response headers asynchronous
# try:
# # Get Entity Candidates and Matches for a single name and attributes.
# async_result = api_instance.get_entity_match_with_http_info_async(name, country=country, state=state, url=url, include_entity_type=include_entity_type, exclude_entity_type=exclude_entity_type, include_entity_sub_type=include_entity_sub_type, exclude_entity_sub_type=exclude_entity_sub_type, include_parent=include_parent, bbg_figi=bbg_figi, bbg_ticker=bbg_ticker, bic=bic, cik=cik, crd=crd, cusip=cusip, duns=duns, ein=ein, factset_id=factset_id, fitch=fitch, gvkey=gvkey, gvkey_iid=gvkey_iid, isin=isin, jcn=jcn, lei=lei, lxid=lxid, md=md, red_code=red_code, rssd=rssd, sedol=sedol, spr=spr, ticker=ticker, ticker_exchange=ticker_exchange, ticker_region=ticker_region, ukch=ukch, valoren=valoren, wkn=wkn)
# api_response, http_status_code, response_headers = async_result.get()
# pprint(api_response)
# pprint(http_status_code)
# pprint(response_headers)
# except fds.sdk.FactSetConcordance.ApiException as e:
# print("Exception when calling EntityMatchApi->get_entity_match: %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.FactSetConcordance
logging.basicConfig(level=logging.DEBUG)
configuration = fds.sdk.FactSetConcordance.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.FactSetConcordance
configuration = fds.sdk.FactSetConcordance.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.FactSetConcordance
configuration = fds.sdk.FactSetConcordance.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 |
---|---|---|---|
EntityMatchApi | get_entity_match | GET /factset-concordance/v2/entity-match | Get Entity Candidates and Matches for a single name and attributes. |
EntityMatchApi | get_entity_match_for_list | POST /factset-concordance/v2/entity-match | Get a list of Entity Candidates and Matches for a requested list of up to 25 names and attributes. |
EntityMatchBulkApi | get_entity_decisions | GET /factset-concordance/v2/entity-decisions | Get the decisions of matches for the requested taskId. |
EntityMatchBulkApi | get_entity_task_for_list | POST /factset-concordance/v2/entity-task | Input a file with names and attributes, creating a taskId. |
EntityMatchBulkApi | get_entity_task_status | GET /factset-concordance/v2/entity-task-status | Gets the status of the requested taskId or all tasks for a User |
MappingsApi | get_entity_mapping_delete_for_list | POST /factset-concordance/v2/entity-mapping-delete | Deletes mapping specified by the client. |
MappingsApi | get_entity_mapping_for_list | POST /factset-concordance/v2/entity-mapping | Saves a single-mapping specified by the client. |
MappingsApi | get_entity_universe | GET /factset-concordance/v2/entity-universe | Retrieve all saved mappings within a requested universe |
MappingsApi | get_entity_universe_for_list | POST /factset-concordance/v2/entity-universe | Retrieve all saved mappings within a requested universe or large list of client ids |
PeopleMappingApi | get_people_mapping_delete_for_list | POST /factset-concordance/v2/people-mapping-delete | Deletes mapping specified by the client. |
PeopleMappingApi | get_people_mapping_for_list | POST /factset-concordance/v2/people-mapping | Saves a single-mapping specified by the client. |
PeopleMappingApi | get_people_universe | GET /factset-concordance/v2/people-universe | Retrieve all saved mappings within a requested universe |
PeopleMappingApi | get_people_universe_for_list | POST /factset-concordance/v2/people-universe | Retrieve all saved mappings within a requested universe or large list of client ids |
PeopleMatchApi | get_people_match | GET /factset-concordance/v2/people-match | Find potential people matches given a person's name.People matches can be retrieved using person's name and other attributes like firstname, middlename and lastname. |
PeopleMatchApi | get_people_match_for_list | POST /factset-concordance/v2/people-match | Find potential people matches given a person's name. |
PeopleMatchBulkApi | get_people_decisions | GET /factset-concordance/v2/people-decisions | Get the decisions of matches for the requested taskId. |
PeopleMatchBulkApi | get_people_task_for_list | POST /factset-concordance/v2/people-task | Create a People Concordance Task. |
PeopleMatchBulkApi | get_people_task_status | GET /factset-concordance/v2/people-task-status | Get the Status of the People Tasks. |
SnowflakeApi | get_snowflake_entity_match_for_list | POST /factset-concordance/v2/snowflake-entity-match | Perform an entity search and return a snowflake-friendly response. Up to 25 Names per request. |
SnowflakeApi | snowflake_entity_mapping_post | POST /factset-concordance/v2/snowflake-entity-mapping | Save entity mappings to a universe |
UniversesApi | get_entity_universe_statistics | GET /factset-concordance/v2/entity-universe-statistics | Get statistics on a given universe |
UniversesApi | get_universe_for_list | POST /factset-concordance/v2/universe | Create a new universe |
UniversesApi | get_universe_statistics | GET /factset-concordance/v2/universe-statistics | Get statistics on a given universe |
UniversesApi | get_universes | GET /factset-concordance/v2/universes | Fetch metadata for universes |
UniversesApi | get_update_universe_for_list | POST /factset-concordance/v2/update-universe | Update metadata for an existing universe |
Documentation For Models
- CreateUniverseRequest
- EntityDecisionsResponse
- EntityMapping
- EntityMappingDeleteRequest
- EntityMappingDeleteResponse
- EntityMappingRequest
- EntityMappingResponse
- EntityMatch
- EntityMatchRequest
- EntityMatchRequestInput
- EntityMatchesResponse
- EntityResponse
- EntityTaskResponse
- EntityTaskStatus
- EntityTaskStatusResponse
- EntityUniverseRequest
- EntityUniverseResponse
- EntityUniverseStatisticsResponse
- ErrorResponse
- ErrorResponseSubErrors
- MapStatus
- PeopleDecisions
- PeopleDecisionsResponse
- PeopleMapping
- PeopleMappingDeleteResponse
- PeopleMappingRequest
- PeopleMappingResponse
- PeopleMatch
- PeopleMatchRequest
- PeopleMatchRequestInput
- PeopleMatchesResponse
- PeopleTask
- PeopleTaskResponse
- PeopleTaskStatus
- PeopleTaskStatusResponse
- PeopleUniverseRequest
- PeopleUniverseResponse
- SnowflakeEntityMappingRequest
- SnowflakeEntityMappingResponse
- SnowflakeEntityMatchRequest
- SnowflakeEntityMatchResponse
- Universe
- UniverseMeta
- UniverseMetaResponse
- UniverseStatistics
- UniverseStatisticsResponse
- UniversesResponse
- UpdateUniverseRequest
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.FactSetConcordance.apis and fds.sdk.FactSetConcordance.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.FactSetConcordance.api.default_api import DefaultApi
from fds.sdk.FactSetConcordance.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.FactSetConcordance
from fds.sdk.FactSetConcordance.apis import *
from fds.sdk.FactSetConcordance.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.FactSetConcordance-0.24.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb145d4dfe7db31157a77c855611c14e92589804c4de171e8bb3ea11a5a87549 |
|
MD5 | d6304a0d3d1a84e804b8e6ba83517f83 |
|
BLAKE2b-256 | 0a82fcb2b8006b4e52567fd08c2abe80334f2b350e20cc5d80fd656fa797464d |