gooddata-pandas 1.28.1.dev3__tar.gz → 1.28.1.dev4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of gooddata-pandas might be problematic. Click here for more details.
- {gooddata_pandas-1.28.1.dev3/gooddata_pandas.egg-info → gooddata_pandas-1.28.1.dev4}/PKG-INFO +3 -3
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas/data_access.py +3 -5
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4/gooddata_pandas.egg-info}/PKG-INFO +3 -3
- gooddata_pandas-1.28.1.dev4/gooddata_pandas.egg-info/requires.txt +2 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/setup.py +3 -3
- gooddata_pandas-1.28.1.dev3/gooddata_pandas.egg-info/requires.txt +0 -2
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/LICENSE.txt +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/MANIFEST.in +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/README.md +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas/__init__.py +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas/_version.py +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas/dataframe.py +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas/good_pandas.py +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas/py.typed +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas/result_convertor.py +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas/series.py +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas/utils.py +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas.egg-info/SOURCES.txt +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas.egg-info/dependency_links.txt +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas.egg-info/top_level.txt +0 -0
- {gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/setup.cfg +0 -0
{gooddata_pandas-1.28.1.dev3/gooddata_pandas.egg-info → gooddata_pandas-1.28.1.dev4}/PKG-INFO
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: gooddata-pandas
|
|
3
|
-
Version: 1.28.1.
|
|
3
|
+
Version: 1.28.1.dev4
|
|
4
4
|
Summary: GoodData Cloud to pandas
|
|
5
5
|
Author: GoodData
|
|
6
6
|
Author-email: support@gooddata.com
|
|
7
7
|
License: MIT
|
|
8
|
-
Project-URL: Documentation, https://gooddata-pandas.readthedocs.io/en/v1.28.1.
|
|
8
|
+
Project-URL: Documentation, https://gooddata-pandas.readthedocs.io/en/v1.28.1.dev4
|
|
9
9
|
Project-URL: Source, https://github.com/gooddata/gooddata-python-sdk
|
|
10
10
|
Keywords: gooddata,pandas,series,data,frame,data_frame,analytics,headless,business,intelligence,headless-bi,cloud,native,semantic,layer,sql,metrics
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
@@ -22,7 +22,7 @@ Classifier: Typing :: Typed
|
|
|
22
22
|
Requires-Python: >=3.9.0
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
License-File: LICENSE.txt
|
|
25
|
-
Requires-Dist: gooddata-sdk~=1.28.1.
|
|
25
|
+
Requires-Dist: gooddata-sdk~=1.28.1.dev4
|
|
26
26
|
Requires-Dist: pandas<3.0.0,>=2.0.0
|
|
27
27
|
|
|
28
28
|
# GoodData Pandas
|
|
@@ -312,12 +312,10 @@ def _extract_for_metrics_only(response: ExecutionResponse, cols: list, col_to_me
|
|
|
312
312
|
"""
|
|
313
313
|
exec_def = response.exec_def
|
|
314
314
|
result = response.read_result(len(exec_def.metrics))
|
|
315
|
-
data
|
|
315
|
+
if len(result.data) == 0:
|
|
316
|
+
return {col: [] for col in cols}
|
|
316
317
|
|
|
317
|
-
for col in cols
|
|
318
|
-
data[col] = [result.data[col_to_metric_idx[col]]]
|
|
319
|
-
|
|
320
|
-
return data
|
|
318
|
+
return {col: [result.data[col_to_metric_idx[col]]] for col in cols}
|
|
321
319
|
|
|
322
320
|
|
|
323
321
|
def _find_attribute(attributes: list[CatalogAttribute], id_obj: IdObjType) -> Union[CatalogAttribute, None]:
|
{gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4/gooddata_pandas.egg-info}/PKG-INFO
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: gooddata-pandas
|
|
3
|
-
Version: 1.28.1.
|
|
3
|
+
Version: 1.28.1.dev4
|
|
4
4
|
Summary: GoodData Cloud to pandas
|
|
5
5
|
Author: GoodData
|
|
6
6
|
Author-email: support@gooddata.com
|
|
7
7
|
License: MIT
|
|
8
|
-
Project-URL: Documentation, https://gooddata-pandas.readthedocs.io/en/v1.28.1.
|
|
8
|
+
Project-URL: Documentation, https://gooddata-pandas.readthedocs.io/en/v1.28.1.dev4
|
|
9
9
|
Project-URL: Source, https://github.com/gooddata/gooddata-python-sdk
|
|
10
10
|
Keywords: gooddata,pandas,series,data,frame,data_frame,analytics,headless,business,intelligence,headless-bi,cloud,native,semantic,layer,sql,metrics
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
@@ -22,7 +22,7 @@ Classifier: Typing :: Typed
|
|
|
22
22
|
Requires-Python: >=3.9.0
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
24
|
License-File: LICENSE.txt
|
|
25
|
-
Requires-Dist: gooddata-sdk~=1.28.1.
|
|
25
|
+
Requires-Dist: gooddata-sdk~=1.28.1.dev4
|
|
26
26
|
Requires-Dist: pandas<3.0.0,>=2.0.0
|
|
27
27
|
|
|
28
28
|
# GoodData Pandas
|
|
@@ -7,7 +7,7 @@ this_directory = Path(__file__).parent
|
|
|
7
7
|
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
|
|
8
8
|
|
|
9
9
|
REQUIRES = [
|
|
10
|
-
"gooddata-sdk~=1.28.1.
|
|
10
|
+
"gooddata-sdk~=1.28.1.dev4",
|
|
11
11
|
"pandas>=2.0.0,<3.0.0",
|
|
12
12
|
]
|
|
13
13
|
|
|
@@ -16,7 +16,7 @@ setup(
|
|
|
16
16
|
description="GoodData Cloud to pandas",
|
|
17
17
|
long_description=long_description,
|
|
18
18
|
long_description_content_type="text/markdown",
|
|
19
|
-
version="1.28.1.
|
|
19
|
+
version="1.28.1.dev4",
|
|
20
20
|
author="GoodData",
|
|
21
21
|
author_email="support@gooddata.com",
|
|
22
22
|
license="MIT",
|
|
@@ -26,7 +26,7 @@ setup(
|
|
|
26
26
|
packages=find_packages(exclude=["tests*"]),
|
|
27
27
|
python_requires=">=3.9.0",
|
|
28
28
|
project_urls={
|
|
29
|
-
"Documentation": "https://gooddata-pandas.readthedocs.io/en/v1.28.1.
|
|
29
|
+
"Documentation": "https://gooddata-pandas.readthedocs.io/en/v1.28.1.dev4",
|
|
30
30
|
"Source": "https://github.com/gooddata/gooddata-python-sdk",
|
|
31
31
|
},
|
|
32
32
|
classifiers=[
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas/result_convertor.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{gooddata_pandas-1.28.1.dev3 → gooddata_pandas-1.28.1.dev4}/gooddata_pandas.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|