You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/template.ipynb
+17-1Lines changed: 17 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,6 +27,22 @@
27
27
],
28
28
"cell_type": "markdown"
29
29
},
30
+
{
31
+
"metadata": {},
32
+
"source": [
33
+
"# Labelbox Example SDK Template\n",
34
+
"\n",
35
+
"This notebook serves as a template to guide develop of Labelbox example notebooks. Review notebook [CONTRIBUTING.md](https://github.com/Labelbox/labelbox-python/blob/develop/examples/CONTRIBUTING.md) for more detailed information."
36
+
],
37
+
"cell_type": "markdown"
38
+
},
39
+
{
40
+
"metadata": {},
41
+
"source": [
42
+
"## Set Up"
43
+
],
44
+
"cell_type": "markdown"
45
+
},
30
46
{
31
47
"metadata": {},
32
48
"source": "%pip install -q \"labelbox[data]\"\n# Always install \"labelbox[data]\" over labelbox to ensure dependencies are installed correctly\n# Include other installs in this block with similar format: \"%pip install -q <package name>\"",
@@ -51,7 +67,7 @@
51
67
},
52
68
{
53
69
"metadata": {},
54
-
"source": "# Add your API key\nAPI_KEY = None\n# To get your API key go to: Workspace settings -> API -> Create API Key\nclient = lb.Client(api_key=API_KEY)",
0 commit comments