softmax-cli 0.26.11__tar.gz → 0.26.12__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.
- {softmax_cli-0.26.11/src/softmax_cli.egg-info → softmax_cli-0.26.12}/PKG-INFO +1 -1
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/src/softmax/cli.py +6 -6
- {softmax_cli-0.26.11 → softmax_cli-0.26.12/src/softmax_cli.egg-info}/PKG-INFO +1 -1
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/BUILD.bazel +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/pyproject.toml +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/setup.cfg +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/src/softmax/__init__.py +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/src/softmax/_console.py +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/src/softmax/auth.py +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/src/softmax/cogames.py +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/src/softmax/perform_login.py +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/src/softmax/token_storage.py +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/src/softmax_cli.egg-info/SOURCES.txt +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/src/softmax_cli.egg-info/dependency_links.txt +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/src/softmax_cli.egg-info/entry_points.txt +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/src/softmax_cli.egg-info/requires.txt +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/src/softmax_cli.egg-info/top_level.txt +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/tests/BUILD.bazel +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/tests/test_auth_login.py +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/tests/test_cli_plugins.py +0 -0
- {softmax_cli-0.26.11 → softmax_cli-0.26.12}/tests/test_python_api.py +0 -0
|
@@ -89,7 +89,7 @@ def login_cmd(
|
|
|
89
89
|
"--server",
|
|
90
90
|
"-s",
|
|
91
91
|
metavar="URL",
|
|
92
|
-
help="
|
|
92
|
+
help="API server URL.",
|
|
93
93
|
),
|
|
94
94
|
) -> None:
|
|
95
95
|
"""Sign in to Softmax."""
|
|
@@ -152,7 +152,7 @@ def logout_cmd(
|
|
|
152
152
|
"--server",
|
|
153
153
|
"-s",
|
|
154
154
|
metavar="URL",
|
|
155
|
-
help="
|
|
155
|
+
help="API server URL.",
|
|
156
156
|
),
|
|
157
157
|
) -> None:
|
|
158
158
|
"""Remove saved authentication token."""
|
|
@@ -170,7 +170,7 @@ def get_login_url_cmd(
|
|
|
170
170
|
"--server",
|
|
171
171
|
"-s",
|
|
172
172
|
metavar="URL",
|
|
173
|
-
help="
|
|
173
|
+
help="API server URL.",
|
|
174
174
|
),
|
|
175
175
|
) -> None:
|
|
176
176
|
"""Print a browser sign-in URL for manual login."""
|
|
@@ -184,7 +184,7 @@ def status_cmd(
|
|
|
184
184
|
"--server",
|
|
185
185
|
"-s",
|
|
186
186
|
metavar="URL",
|
|
187
|
-
help="
|
|
187
|
+
help="API server URL.",
|
|
188
188
|
),
|
|
189
189
|
) -> None:
|
|
190
190
|
"""Check authentication status via /whoami."""
|
|
@@ -212,7 +212,7 @@ def get_token_cmd(
|
|
|
212
212
|
"--server",
|
|
213
213
|
"-s",
|
|
214
214
|
metavar="URL",
|
|
215
|
-
help="
|
|
215
|
+
help="API server URL.",
|
|
216
216
|
),
|
|
217
217
|
) -> None:
|
|
218
218
|
"""Print the saved token to stdout (for scripting)."""
|
|
@@ -232,7 +232,7 @@ def set_token_cmd(
|
|
|
232
232
|
"--server",
|
|
233
233
|
"-s",
|
|
234
234
|
metavar="URL",
|
|
235
|
-
help="
|
|
235
|
+
help="API server URL.",
|
|
236
236
|
),
|
|
237
237
|
) -> None:
|
|
238
238
|
"""Manually set a token (for CI or headless environments)."""
|
|
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
|
|
File without changes
|