sweatstack 0.20.0__tar.gz → 0.21.0__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.20.0 → sweatstack-0.21.0}/PKG-INFO +1 -1
- {sweatstack-0.20.0 → sweatstack-0.21.0}/pyproject.toml +1 -1
- {sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/client.py +15 -1
- {sweatstack-0.20.0 → sweatstack-0.21.0}/.gitignore +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/.python-version +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/DEVELOPMENT.md +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/Makefile +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/README.md +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/playground/.ipynb_checkpoints/Untitled-checkpoint.ipynb +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/playground/README.md +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/playground/Sweat Stack examples/Getting started.ipynb +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/playground/Untitled.ipynb +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/playground/hello.py +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/playground/pyproject.toml +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/Sweat Stack examples/Getting started.ipynb +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/__init__.py +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/cli.py +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/constants.py +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/ipython_init.py +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/jupyterlab_oauth2_startup.py +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/openapi_schemas.py +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/py.typed +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/schemas.py +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/streamlit.py +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/sweatshell.py +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/utils.py +0 -0
- {sweatstack-0.20.0 → sweatstack-0.21.0}/uv.lock +0 -0
|
@@ -24,7 +24,21 @@ from .schemas import (
|
|
|
24
24
|
from .utils import decode_jwt_body, make_dataframe_streamlit_compatible
|
|
25
25
|
|
|
26
26
|
|
|
27
|
-
AUTH_SUCCESSFUL_RESPONSE = "<!DOCTYPE html
|
|
27
|
+
AUTH_SUCCESSFUL_RESPONSE = """<!DOCTYPE html>
|
|
28
|
+
<html>
|
|
29
|
+
<head>
|
|
30
|
+
<style>
|
|
31
|
+
body { max-width: 600px; margin: 40px auto; text-align: center; }
|
|
32
|
+
h1 { color: #2C3E50; font-size: 24px; }
|
|
33
|
+
p { color: #34495E; font-size: 18px; }
|
|
34
|
+
</style>
|
|
35
|
+
</head>
|
|
36
|
+
<body>
|
|
37
|
+
<img src="https://sweatstack.no/images/sweat-stack-python-client.png" alt="SweatStack Logo" style="width: 200px; margin: 20px auto; display: block;">
|
|
38
|
+
<h1>Successfully authenticated with SweatStack!</h1>
|
|
39
|
+
<p>You have successfully authenticated using the SweatStack Python client library. You can now close this window and return to your Python environment.</p>
|
|
40
|
+
</body>
|
|
41
|
+
</html>"""
|
|
28
42
|
OAUTH2_CLIENT_ID = "5382f68b0d254378"
|
|
29
43
|
|
|
30
44
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sweatstack-0.20.0 → sweatstack-0.21.0}/playground/.ipynb_checkpoints/Untitled-checkpoint.ipynb
RENAMED
|
File without changes
|
|
File without changes
|
{sweatstack-0.20.0 → sweatstack-0.21.0}/playground/Sweat Stack examples/Getting started.ipynb
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{sweatstack-0.20.0 → sweatstack-0.21.0}/src/sweatstack/Sweat Stack examples/Getting started.ipynb
RENAMED
|
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
|