Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/finbourne/finbourne-insights-sdk-python-preview
https://github.com/finbourne/finbourne-insights-sdk-python-preview
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/finbourne/finbourne-insights-sdk-python-preview
- Owner: finbourne
- License: other
- Created: 2021-05-06T21:04:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-04-02T07:58:36.000Z (9 months ago)
- Last Synced: 2024-04-03T08:02:55.216Z (9 months ago)
- Language: Python
- Size: 1.55 MB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: docs/CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: docs/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
![LUSID_by_Finbourne](./resources/Finbourne_Logo_Teal.svg)
# Deprecated
Please note that this repository is deprecated and will be archived early 2024.
All functionality is now contained, in the [finbourne-insights-sdk-python](https://github.com/finbourne/finbourne-insights-sdk-python) repository on the `main` branch.
# FINBOURNE Insights Python SDK
![PyPI](https://img.shields.io/pypi/v/finbourne-insights-sdk-preview?color=blue)
## Installation
The PyPi package for the Insights SDK can installed using the following:
```
$ pip install finbourne-insights-sdk-preview finbourne-sdk-utilities
```## Usage
```
from finbourne_insights import api as ia
from fbnsdkutilities import ApiClientFactory
import finbourne_insightsapi_client = ApiClientFactory(finbourne_insights, api_secrets_filename="secrets.json")
requests_api = api_client.build(ia.RequestsApi)
response = requests_api.list_request_logs()
print(response.values)
```