sweatstack 0.14.4__tar.gz → 0.14.5__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.
- {sweatstack-0.14.4 → sweatstack-0.14.5}/PKG-INFO +1 -1
- {sweatstack-0.14.4 → sweatstack-0.14.5}/pyproject.toml +1 -1
- {sweatstack-0.14.4 → sweatstack-0.14.5}/src/sweatstack/client.py +3 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/.gitignore +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/.python-version +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/DEVELOPMENT.md +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/Makefile +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/README.md +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/src/sweatstack/__init__.py +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/src/sweatstack/cli.py +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/src/sweatstack/constants.py +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/src/sweatstack/ipython_init.py +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/src/sweatstack/jupyterlab_oauth2_startup.py +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/src/sweatstack/openapi_schemas.py +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/src/sweatstack/py.typed +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/src/sweatstack/schemas.py +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/src/sweatstack/streamlit.py +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/src/sweatstack/sweatshell.py +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/src/sweatstack/utils.py +0 -0
- {sweatstack-0.14.4 → sweatstack-0.14.5}/uv.lock +0 -0
|
@@ -274,6 +274,9 @@ class Client(OAuth2Mixin):
|
|
|
274
274
|
)
|
|
275
275
|
if as_dataframe:
|
|
276
276
|
df = pd.DataFrame([activity.model_dump() for activity in generator])
|
|
277
|
+
df = self._normalize_dataframe_column(df, "summary")
|
|
278
|
+
df = self._normalize_dataframe_column(df, "laps")
|
|
279
|
+
df = self._normalize_dataframe_column(df, "traces")
|
|
277
280
|
return self._postprocess_dataframe(df)
|
|
278
281
|
else:
|
|
279
282
|
return generator
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|