sweatstack 0.18.0__py3-none-any.whl → 0.19.0__py3-none-any.whl
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/Sweat Stack examples/Getting started.ipynb +28784 -0
- sweatstack/client.py +3 -1
- {sweatstack-0.18.0.dist-info → sweatstack-0.19.0.dist-info}/METADATA +5 -5
- {sweatstack-0.18.0.dist-info → sweatstack-0.19.0.dist-info}/RECORD +6 -5
- {sweatstack-0.18.0.dist-info → sweatstack-0.19.0.dist-info}/WHEEL +0 -0
- {sweatstack-0.18.0.dist-info → sweatstack-0.19.0.dist-info}/entry_points.txt +0 -0
sweatstack/client.py
CHANGED
|
@@ -15,7 +15,9 @@ from typing import Any, Generator, get_type_hints, List, Literal
|
|
|
15
15
|
from urllib.parse import parse_qs, urlparse
|
|
16
16
|
|
|
17
17
|
import httpx
|
|
18
|
+
import ipywidgets as widgets
|
|
18
19
|
import pandas as pd
|
|
20
|
+
from IPython.display import display
|
|
19
21
|
|
|
20
22
|
from .constants import DEFAULT_URL
|
|
21
23
|
from .schemas import (
|
|
@@ -154,7 +156,7 @@ class DelegationMixin:
|
|
|
154
156
|
)
|
|
155
157
|
|
|
156
158
|
|
|
157
|
-
class Client(OAuth2Mixin, DelegationMixin):
|
|
159
|
+
class Client(OAuth2Mixin, DelegationMixin, JupyterInteractivityMixin):
|
|
158
160
|
def __init__(
|
|
159
161
|
self,
|
|
160
162
|
api_key: str | None = None,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sweatstack
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.19.0
|
|
4
4
|
Summary: The official Python client for SweatStack
|
|
5
5
|
Author-email: Aart Goossens <aart@gssns.io>
|
|
6
6
|
Requires-Python: >=3.12
|
|
@@ -8,10 +8,10 @@ Requires-Dist: httpx>=0.28.1
|
|
|
8
8
|
Requires-Dist: pandas>=2.2.3
|
|
9
9
|
Requires-Dist: pyarrow>=19.0.0
|
|
10
10
|
Requires-Dist: pydantic>=2.10.5
|
|
11
|
-
Provides-Extra:
|
|
12
|
-
Requires-Dist: ipython>=8.31.0; extra == '
|
|
13
|
-
Requires-Dist: jupyterlab>=4.3.4; extra == '
|
|
14
|
-
Requires-Dist: matplotlib; extra == '
|
|
11
|
+
Provides-Extra: jupyter
|
|
12
|
+
Requires-Dist: ipython>=8.31.0; extra == 'jupyter'
|
|
13
|
+
Requires-Dist: jupyterlab>=4.3.4; extra == 'jupyter'
|
|
14
|
+
Requires-Dist: matplotlib>=3.10.0; extra == 'jupyter'
|
|
15
15
|
Provides-Extra: streamlit
|
|
16
16
|
Requires-Dist: streamlit>=1.42.0; extra == 'streamlit'
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
sweatstack/__init__.py,sha256=tiVfgKlswRPaDMEy0gA7u8rveqEYZTA_kyB9lJ3J6Sc,21
|
|
2
2
|
sweatstack/cli.py,sha256=N1NWOgEZR2yaJvIXxo9qvp_jFlypZYb0nujpbVNYQ6A,720
|
|
3
|
-
sweatstack/client.py,sha256=
|
|
3
|
+
sweatstack/client.py,sha256=KmKy84XULwTXpAr3IpNcke8tSbjEySUtQR3Qlio2r0Y,22256
|
|
4
4
|
sweatstack/constants.py,sha256=fGO6ksOv5HeISv9lHRoYm4besW1GTveXS8YD3K0ljg0,41
|
|
5
5
|
sweatstack/ipython_init.py,sha256=zBGUlMFkdpLvsNpOpwrNaKRUpUZhzaICvH8ODJgMPcI,229
|
|
6
6
|
sweatstack/jupyterlab_oauth2_startup.py,sha256=eZ6xi0Sa4hO4vUanimq0SqjduHtiywCURSDNWk_I-7s,1200
|
|
@@ -10,7 +10,8 @@ sweatstack/schemas.py,sha256=CArM9jgrJDBUT-ZIIiGN_insqaEGV43MX134Ezf4jyA,103
|
|
|
10
10
|
sweatstack/streamlit.py,sha256=F5oQdWkcJ76Um5fRqFT5QrjpEz8v3OaiH9kMQOYktgo,4466
|
|
11
11
|
sweatstack/sweatshell.py,sha256=MYLNcWbOdceqKJ3S0Pe8dwHXEeYsGJNjQoYUXpMTftA,333
|
|
12
12
|
sweatstack/utils.py,sha256=HtR1NNCKus59vfgfaCSFS-tHA11mtdcuUx5lS6ZX58g,1773
|
|
13
|
-
sweatstack
|
|
14
|
-
sweatstack-0.
|
|
15
|
-
sweatstack-0.
|
|
16
|
-
sweatstack-0.
|
|
13
|
+
sweatstack/Sweat Stack examples/Getting started.ipynb,sha256=k2hiSffWecoQ0VxjdpDcgFzBXDQiYEebhnAYlu8cgX8,6335204
|
|
14
|
+
sweatstack-0.19.0.dist-info/METADATA,sha256=vaOKnv63psIaEa6E-ZygllTXhqfILyIhw2L4w4BqhnE,2962
|
|
15
|
+
sweatstack-0.19.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
16
|
+
sweatstack-0.19.0.dist-info/entry_points.txt,sha256=kCzOUQI3dqbTpEYqtgYDeiKFaqaA7BMlV6D24BMzCFU,208
|
|
17
|
+
sweatstack-0.19.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|