Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 10 additions & 7 deletions gooddata-sdk/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# GoodData Python SDK

The `gooddata-sdk` package provides a clean and convenient Python API to interact with [GoodData.CN](https://www.gooddata.com/developers/cloud-native/).
The `gooddata-sdk` package provides a clean and convenient Python API to interact with [GoodData](https://www.gooddata.com/).

At the moment the SDK provides services to inspect and interact with the Semantic Model and consume analytics:
* Catalog Service
* Catalog Workspaces Service
* Catalog Workspace Content Service
* Catalog Data Source Service
* Catalog User Service
* Catalog Permission Service
* Catalog Organization Service
* Insights Service
* Compute Service
* Table Service
Expand All @@ -12,9 +17,7 @@ See [DOCUMENTATION](https://gooddata-sdk.readthedocs.io) for more details.

## Requirements

- GoodData.CN installation; either running on your cloud
infrastructure or the free Community Edition running on your workstation

- GoodData Cloud or GoodData.CN installation
- Python 3.7 or newer

## Installation
Expand All @@ -29,9 +32,9 @@ Compute an insight:
```python
import gooddata_sdk

# GoodData.CN host in the form of uri eg. "http://localhost:3000"
# GoodData host in the form of uri
host = "http://localhost:3000"
# GoodData.CN user token
# GoodData user token
token = "some_user_token"
sdk = gooddata_sdk.GoodDataSdk.create(host, token)

Expand Down