Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/finbourne/notifications-sdk-python-preview
https://github.com/finbourne/notifications-sdk-python-preview
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/finbourne/notifications-sdk-python-preview
- Owner: finbourne
- License: other
- Created: 2021-09-16T08:54:42.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-21T15:51:41.000Z (8 months ago)
- Last Synced: 2024-05-22T16:14:24.486Z (8 months ago)
- Language: Python
- Size: 4.56 MB
- Stars: 0
- Watchers: 9
- Forks: 1
- 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 [notifications-sdk-python](https://github.com/finbourne/notifications-sdk-python) repository on the `main` branch.
# LUSID® Notifications Python Preview SDK
![PyPI](https://img.shields.io/pypi/v/lusid-notifications-sdk-preview?color=blue)
## Installation
The PyPi package for the LUSID Notifications Preview SDK can installed using the following:
```
$ pip install lusid-notifications-sdk-preview finbourne-sdk-utilities
```## Usage
```
import lusid_notifications
from fbnsdkutilities import ApiClientFactoryapi_factory = ApiClientFactory(lusid_notifications, api_secrets_filename="secrets.json")
event_types_api = api_factory.build(lusid_notifications.api.EventTypesApi)response = event_types_api.list_event_types().values
print(response)
```