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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sweatstack
3
- Version: 0.14.4
3
+ Version: 0.14.5
4
4
  Summary: The official Python client for SweatStack
5
5
  Author-email: Aart Goossens <aart@gssns.io>
6
6
  Requires-Python: >=3.12
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "sweatstack"
3
- version = "0.14.4"
3
+ version = "0.14.5"
4
4
  description = "The official Python client for SweatStack"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -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