skillfed

gooddata-sdk

GoodData Cloud Python SDK

gooddata-sdk v1.72.0 162.8K downloads/30d#10,585 on PyPI35
Permissive license MIT Active released

What it is and what it does

The gooddata-sdk package is a Python client library for the GoodData analytics platform. It abstracts the underlying HTTP API into a clean, object-oriented interface for querying workspaces, managing data sources, retrieving visualizations, and computing analytics results. The SDK handles authentication, request serialization, and response parsing, allowing developers to focus on analytics logic rather than API mechanics.

Typical usage involves creating an SDK instance with a host URL and authentication token, then using service objects (visualizations, tables, compute, catalog) to inspect metadata and retrieve data. The package depends on requests for HTTP communication, cattrs and attrs for data serialization, and gooddata-api-client for lower-level API bindings. It targets modern Python versions (3.10+) and is actively maintained with recent releases.

Use it for:

  • Embed GoodData analytics into Python applications by fetching visualization data and rendering it in custom dashboards.
  • Automate data extraction from GoodData workspaces for downstream processing, reporting, or data warehouse loading.
  • Inspect and manage workspace metadata, data sources, users, and permissions programmatically.
  • Build scheduled analytics jobs that compute visualizations and export results to files or external systems.
  • Integrate GoodData as a semantic layer in Python data pipelines for governed metric and dimension access.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides a Python API to interact with GoodData Cloud or GoodData.CN installations, enabling inspection and consumption of semantic models, workspaces, data sources, visualizations, and computed analytics.

Yes. The package is actively maintained, has low install friction, carries a permissive MIT license, and provides a well-structured API for GoodData integration. It is suitable for production use if you have a GoodData Cloud or GoodData.CN instance. No known vulnerabilities as of the fact sheet date.

Install

gooddata-sdk on PyPI

pip

pip install gooddata-sdk

uv

uv add gooddata-sdk

poetry

poetry add gooddata-sdk

Installing gooddata-sdk

Before you install

Low friction install with nine runtime dependencies. Active maintenance: released 7 days ago with last commit on 2026-08-14. Supports Python 3.10 through 3.14.

License in practice

MIT license permits unrestricted use, modification, and distribution with minimal restrictions—suitable for both open and proprietary projects.

Quickstart

pip install gooddata-sdk

import gooddata_sdk
sdk = gooddata_sdk.GoodDataSdk.create("http://localhost:3000", "token")
visualization = sdk.visualizations.get_visualization("workspace_id", "viz_id")
table = sdk.tables.for_visualization("workspace_id", visualization)
for row in table.read_all():
    print(row)

Requires Python 3.10 or newer and a running GoodData Cloud or GoodData.CN instance with valid credentials.

Verify before relying

  • Whether the SDK supports all GoodData.CN versions or only specific releases.
  • Performance characteristics when working with large datasets or complex visualizations.
  • Availability of async/concurrent request support for batch operations.

Package facts

License MIT (permissive)
Python support supports the current Python release (<4.0,>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 9 — attrs, brotli, cattrs, gooddata-api-client, gooddata-code-convertors, python-dateutil, python-dotenv, pyyaml, requests
Maintenance actively maintained — 7 days since the last release
Last repo commit
First released
Downloads 162,828/month — #10,585 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: gooddata_sdk-1.72.0-py3-none-any.whl

Keywords: analytics, api, business, cloud, gooddata, headless, headless-bi, intelligence, layer, metrics, native, sdk, semantic, sql

Development Status :: 5 - Production/StableEnvironment :: ConsoleProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Topic :: DatabaseTopic :: Scientific/EngineeringTopic :: Software DevelopmentTyping :: Typed

Tags

gooddata python api clientsemantic model inspection sdkanalytics computation libraryworkspace management pythonvisualization data retrievalgooddata cloud integrationheadless bi sdk
analytics-sdkgooddata-integrationsemantic-layer

More Software Development packages