Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
69 lines (45 loc) · 1.89 KB

File metadata and controls

69 lines (45 loc) · 1.89 KB

pysisense SDK Documentation

Welcome to the official documentation for the pysisense Python SDK.

This SDK provides a structured, Pythonic interface for interacting with the Sisense REST APIs. It simplifies common tasks such as user management, dashboard access, data model operations, and cross-environment migrations.


Modules

The documentation is organized by feature/module. Click on any section to learn more:


Configuration

Before using the SDK, make sure you have a properly structured config.yaml:

domain: "your-domain.sisense.com"
is_ssl: true
token: "<your_api_token>"

Important: It is recommended to use a new dedicated Sisense admin user's token to ensure all API methods function as expected.
Using restricted or scoped users may result in failures or inconsistent behavior, especially for:

  • Folder and dashboard ownership changes
  • Granting permissions across environments
  • System-wide migrations

See examples/config.yaml for a template.


Getting Started

To install the SDK:

pip install pysisense

To use in development mode:

pip install -e .