From 6ebf4662d76a6a3274b2cf5fbc0cd4b6b89d63ec Mon Sep 17 00:00:00 2001 From: Kyle Kelley Date: Tue, 15 Aug 2023 06:34:09 -0700 Subject: [PATCH] Update README.md (#153) Fix the comment on the example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 47cd526..e457dce 100644 --- a/README.md +++ b/README.md @@ -80,8 +80,8 @@ The Noteable API requires an authentication token. You can manage tokens at the The example below shows how to create a Notebook, launch a Kernel, add new cells, and execute code. ```python -# Grab a project_id from the Noteable UI, the url will look like: app.noteable.io/p/.... -api_token = '...' +# Get your API token from the User Settings page by clicking your account name in the upper right +api_token = os.environ['NOTEABLE_TOKEN'] # Client for interacting with Noteables REST API from origami.clients.api import APIClient