Skip to main content

FINBOURNE Insights API

Project description

finbourne-insights-sdk

FINBOURNE Technology

This Python package is automatically generated by the OpenAPI Generator project:

  • API version: 0.0.760
  • Package version: 2.0.10
  • Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit https://www.finbourne.com

Requirements.

Python 3.7+

Installation & Usage

pip install

If the python package is hosted on a repository, you can install directly using:

pip install git+https://github.com/finbourne/insights-sdk-python.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/finbourne/insights-sdk-python.git)

Then import the package:

import finbourne_insights

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import finbourne_insights

Tests

Execute pytest to run the tests.

Getting Started

You'll need to provide some configuration to connect to the finbourne_insights application. These can be provided using a secrets file or environment variables.

Environment variables

In order to use short lived access tokens you will need to have appropriate values set for the following environment variables:

FBN_TOKEN_URL,
FBN_FINBOURNE_INSIGHTS_API_URL,
FBN_USERNAME,
FBN_PASSWORD,
FBN_CLIENT_ID,
FBN_CLIENT_SECRET,
FBN_ACCESS_TOKEN

To use a long lived Personal Access Token, you must provide the following environment variables:

FBN_FINBOURNE_INSIGHTS_API_URL,
FBN_ACCESS_TOKEN

You can send your requests to finbourne_insights via a proxy, by setting FBN_PROXY_ADDRESS. If your proxy has basic auth enabled, you must akso supply FBN_PROXY_USERNAME and FBN_PROXY_PASSWORD

Secrets file

In order to use short lived access tokens you will need to have appropriate values set in a secrets.json file in the same folder as your script.

{
    "api":
    {
        "tokenUrl":"<your-token-url>",
        "finbourne_insightsUrl":"<FINBOURNE-application-url>",
        "username":"<your-username>",
        "password":"<your-password>",
        "clientId":"<your-client-id>",
        "clientSecret":"<your-client-secret>",
    }
}

To use a long lived Personal Access Token, you must provide a secrets.json with the following variables:

{
    "api":
    {
        "finbourne_insightsUrl":"<FINBOURNE-application-url>",
        "accessToken":"<your-access-token>"
    }
}

You can send your requests to finbourne_insights via a proxy, by adding a proxy section to your secrets.json. If your proxy has basic auth enabled, you must also supply a username and password in this section.

{
    "api":
    {
        "finbourne_insightsUrl":"<FINBOURNE-application-url>",
        "accessToken":"<your-access-token>"
    },
    "proxy":
    {
        "address":"<your-proxy-address>",
        "username":"<your-proxy-username>",
        "password":"<your-proxy-password>"
    }
}

Using the SDK

Please follow the installation procedure and then run the following:

import time
import finbourne_insights
from finbourne_insights.exceptions import ApiException
from pprint import pprint

import os
from finbourne_insights import (
    ApiClientFactory,
    AccessEvaluationsApi,
    EnvironmentVariablesConfigurationLoader,
    SecretsFileConfigurationLoader,
    ArgsConfigurationLoader
)

# Use the finbourne_insights ApiClientFactory to build Api instances with a configured api client
# By default this will read config from environment variables
# Then from a secrets.json file found in the current working directory
api_client_factory = ApiClientFactory()

# The ApiClientFactory can be passed an iterable of configuration loaders to read configuration from

api_url = "https://fbn-prd.lusid.com/insights"
# Path to a secrets.json file containing authentication credentials
# See https://support.lusid.com/knowledgebase/article/KA-01667/en-us
# for a detailed guide to setting up the SDK make authenticated calls to LUSID APIs
secrets_path = os.getenv("FBN_SECRETS_PATH")
app_name="LusidJupyterNotebook"

config_loaders = [
	EnvironmentVariablesConfigurationLoader(),
	SecretsFileConfigurationLoader(api_secrets_file=secrets_path),
	ArgsConfigurationLoader(api_url=api_url, app_name=app_name)
]
api_client_factory = ApiClientFactory(config_loaders=config_loaders)


# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.



# Enter a context with an instance of the ApiClientFactory to ensure the connection pool is closed after use
async with api_client_factory:
    # Create an instance of the API class
    api_instance = api_client_factory.build(AccessEvaluationsApi)
    id = 'id_example' # str | The identifier of the access evaluation to obtain the log for.

    try:
        # [EARLY ACCESS] GetAccessEvaluationLog: Get the log for a specific access evaluation.  This endpoint will be deprecated in the near future.
        api_response = await api_instance.get_access_evaluation_log(id)
        print("The response of AccessEvaluationsApi->get_access_evaluation_log:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling AccessEvaluationsApi->get_access_evaluation_log: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to https://fbn-prd.lusid.com/insights

Class Method HTTP request Description
AccessEvaluationsApi get_access_evaluation_log GET /api/access/{id} [EARLY ACCESS] GetAccessEvaluationLog: Get the log for a specific access evaluation. This endpoint will be deprecated in the near future.
AccessEvaluationsApi list_access_evaluation_logs GET /api/access [EARLY ACCESS] ListAccessEvaluationLogs: List the logs for access evaluations.
ApplicationMetadataApi list_access_controlled_resources GET /api/metadata/access/resources [EARLY ACCESS] ListAccessControlledResources: Get resources available for access control
AuditingApi create_entry POST /api/auditing/entries [EARLY ACCESS] CreateEntry: Create (persist) and audit entry..
AuditingApi get_processes GET /api/auditing/processes [EARLY ACCESS] GetProcesses: Get the latest audit entry for each process.
AuditingApi list_entries GET /api/auditing/entries [EARLY ACCESS] ListEntries: Get the audit entries.
RequestsApi get_request GET /api/requests/{id}/request [EARLY ACCESS] GetRequest: Get the request content for a specific API request.
RequestsApi get_request_log GET /api/requests/{id} [EARLY ACCESS] GetRequestLog: Get the log for a specific API request.
RequestsApi get_response GET /api/requests/{id}/response [EARLY ACCESS] GetResponse: Get the response for a specific API request.
RequestsApi list_request_logs GET /api/requests [EARLY ACCESS] ListRequestLogs: Get the logs for API requests.
VendorLogsApi get_vendor_log GET /api/vendor/{id} [EXPERIMENTAL] GetVendorLog: Get the log for a specific vendor request.
VendorLogsApi get_vendor_request GET /api/vendor/{id}/request [EXPERIMENTAL] GetVendorRequest: Get the request body for a vendor request.
VendorLogsApi get_vendor_response GET /api/vendor/{id}/response [EXPERIMENTAL] GetVendorResponse: Get the response from a vendor request.
VendorLogsApi list_vendor_logs GET /api/vendor [EXPERIMENTAL] ListVendorLogs: List the logs for vendor requests.

Documentation For Models

Documentation For Authorization

Authentication schemes defined for the API:

oauth2

Author

info@finbourne.com

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

finbourne_insights_sdk-2.0.10.tar.gz (58.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

finbourne_insights_sdk-2.0.10-py3-none-any.whl (106.4 kB view details)

Uploaded Python 3

File details

Details for the file finbourne_insights_sdk-2.0.10.tar.gz.

File metadata

  • Download URL: finbourne_insights_sdk-2.0.10.tar.gz
  • Upload date:
  • Size: 58.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.1 CPython/3.8.2 Linux/5.15.106-flatcar

File hashes

Hashes for finbourne_insights_sdk-2.0.10.tar.gz
Algorithm Hash digest
SHA256 9be65f3ad6d9c332c9128b55261aeae8f5e9b2ff21ac97a80bc7b266674fb512
MD5 9d0551525263efae22ad205c631f9315
BLAKE2b-256 5d60bc1f4e8d0ef36a87daab2571944847bb08e8386600dc2c4545a63b561f89

See more details on using hashes here.

File details

Details for the file finbourne_insights_sdk-2.0.10-py3-none-any.whl.

File metadata

File hashes

Hashes for finbourne_insights_sdk-2.0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 d6e664a6514fb0eed5533ecf071f26b9e717c441fc9864b8a2d2488c8d7dd67b
MD5 32b26e73c03c5daa4d0d64c9135e0f6e
BLAKE2b-256 ecdd9606ad38b90254012dd13aca8e17e2b7b8f88e0807820e078e1a64f2cb29

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page