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
File details
Details for the file gooddata_pandas-1.31.0.tar.gz
.
File metadata
- Download URL: gooddata_pandas-1.31.0.tar.gz
- Upload date:
- Size: 46.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 542542ae36d4fd7f5f3b79b5d83c0128001c843973e47ae33424c9f5c331276c |
|
MD5 | 6275a60b790b10bae6a2748c985544dc |
|
BLAKE2b-256 | 9a1936f2fe83055f65fe7d468282e70f530cbc80cd364b91c46f60c1cd665914 |
File details
Details for the file gooddata_pandas-1.31.0-py3-none-any.whl
.
File metadata
- Download URL: gooddata_pandas-1.31.0-py3-none-any.whl
- Upload date:
- Size: 48.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.20
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a46245637cd085a3f852657518e4e4971c292712271c7989cfa02ce86c9f404d |
|
MD5 | 27705d15a53e06def86d7aa236da2f35 |
|
BLAKE2b-256 | c47bc8ec48c51c20609d63539044640a427dc3f876f5ae22d6dd428c0f62d530 |