GoodData Cloud to pandas
Project description
GoodData Pandas
This package contains a thin layer that utilizes gooddata-sdk and allows you to conveniently create pandas series and data frames from the computations done against semantic model in your GoodData.CN workspace.
See DOCUMENTATION for more details.
Requirements
-
GoodData.CN installation; either running on your cloud infrastructure or the free Community Edition running on your workstation
-
Python 3.9 or newer
Installation
Run the following command to install the gooddata-pandas
package on your system:
pip install gooddata-pandas
Example
Create an indexed and a not-indexed series:
from gooddata_pandas import GoodPandas
# GoodData.CN host in the form of uri eg. "http://localhost:3000"
host = "http://localhost:3000"
# GoodData.CN user token
token = "some_user_token"
# initialize the adapter to work on top of GD.CN host and use the provided authentication token
gp = GoodPandas(host, token)
workspace_id = "demo"
series = gp.series(workspace_id)
# create indexed series
indexed_series = series.indexed(index_by="label/label_id", data_by="fact/measure_id")
# create non-indexed series containing just the values of measure sliced by elements of the label
non_indexed = series.not_indexed(data_by="fact/measure_id", granularity="label/label_id")
Bugs & Requests
Please use the GitHub issue tracker to submit bugs or request features.
Changelog
Consult Github releases for a released versions and list of changes.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for gooddata_pandas-1.26.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d5b4a3238f85e09d641f900b06a4a125de627563762273c55657789b53750df |
|
MD5 | eff46123dfe719419fa25ebfe21241b8 |
|
BLAKE2b-256 | 4629cfd936ab576c75790038ba5cc25f5b3d3e44c348d834cd4edf3ce0644bc7 |