Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions packages/evo-blockmodels/docs/examples/quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
"metadata": {},
"outputs": [],
"source": [
"from evo.notebooks import ServiceManagerWidget\n",
"from evo.widgets import ServiceManagerWidget\n",
"\n",
"manager = await ServiceManagerWidget.with_auth_code(\n",
" client_id=\"your-client-id\",\n",
" cache_location=\"./notebook-data\",\n",
").login()"
")\n",
"manager"
]
},
{
Expand Down Expand Up @@ -190,7 +191,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"display_name": "evo-sdk",
"language": "python",
"name": "python3"
},
Expand Down
5 changes: 3 additions & 2 deletions packages/evo-colormaps/docs/examples/quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
"metadata": {},
"outputs": [],
"source": [
"from evo.notebooks import ServiceManagerWidget\n",
"from evo.widgets import ServiceManagerWidget\n",
"\n",
"manager = await ServiceManagerWidget.with_auth_code(\n",
" client_id=\"your-client-id\",\n",
" cache_location=\"./notebook-data\",\n",
").login()"
")\n",
"manager"
]
},
{
Expand Down
5 changes: 3 additions & 2 deletions packages/evo-compute/docs/examples/quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@
"metadata": {},
"outputs": [],
"source": [
"from evo.notebooks import ServiceManagerWidget\n",
"from evo.widgets import ServiceManagerWidget\n",
"\n",
"manager = await ServiceManagerWidget.with_auth_code(\n",
" client_id=\"your-client-id\", cache_location=\"./notebook-data\"\n",
").login()"
")\n",
"manager"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion packages/evo-files/docs/examples/quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"metadata": {},
"outputs": [],
"source": [
"from evo.notebooks import ServiceManagerWidget\n",
"from evo.widgets import ServiceManagerWidget\n",
"\n",
"manager = await ServiceManagerWidget.with_auth_code(\n",
" client_id=\"your-client-id\",\n",
Expand Down
9 changes: 5 additions & 4 deletions packages/evo-objects/docs/examples/quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@
"metadata": {},
"outputs": [],
"source": [
"from evo.notebooks import ServiceManagerWidget\n",
"from evo.widgets import ServiceManagerWidget\n",
"\n",
"manager = await ServiceManagerWidget.with_auth_code(\n",
" client_id=\"your-client-id\", cache_location=\"./notebook-data\"\n",
").login()"
")\n",
"manager"
]
},
{
Expand Down Expand Up @@ -182,7 +183,7 @@
"metadata": {},
"outputs": [],
"source": [
"from evo.notebooks import FeedbackWidget\n",
"from evo.widgets import FeedbackWidget\n",
"\n",
"# Use the data client to upload all data referenced by the pointset\n",
"await data_client.upload_referenced_data(sample_pointset, fb=FeedbackWidget(\"Uploading data\"))\n",
Expand Down Expand Up @@ -263,7 +264,7 @@
"metadata": {},
"outputs": [],
"source": [
"from evo.notebooks import FeedbackWidget\n",
"from evo.widgets import FeedbackWidget\n",
"\n",
"downloaded_object = await object_client.download_object_by_path(\"sdk/v2/sample-pointset.json\")\n",
"metadata = downloaded_object.metadata\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"metadata": {},
"outputs": [],
"source": [
"from evo.notebooks import ServiceManagerWidget\n",
"from evo.widgets import ServiceManagerWidget\n",
"\n",
"manager = await ServiceManagerWidget.with_auth_code(\n",
" client_id=\"your-client-id\",\n",
Expand Down Expand Up @@ -113,7 +113,7 @@
"source": [
"import time\n",
"\n",
"from evo.notebooks import FeedbackWidget\n",
"from evo.widgets import FeedbackWidget\n",
"\n",
"fb = FeedbackWidget(\"Loading...\")\n",
"\n",
Expand Down
20 changes: 0 additions & 20 deletions packages/evo-sdk-common/src/evo/notebooks/__init__.py

This file was deleted.

Binary file not shown.
Binary file not shown.
Loading