From 148765782b9a47bcac1aa1bb981b2e8ea6a7d2a5 Mon Sep 17 00:00:00 2001 From: Xavier Fiechter Date: Sun, 13 Aug 2023 11:22:57 +0200 Subject: [PATCH] Added token info --- examples/API Tutorial in Python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/API Tutorial in Python.md b/examples/API Tutorial in Python.md index 1232803..2318998 100644 --- a/examples/API Tutorial in Python.md +++ b/examples/API Tutorial in Python.md @@ -25,7 +25,7 @@ base_url = 'https://labelbase.space/api/v0/' # Define headers containing the API key headers = { - 'Authorization': f'Token {api_key}' + 'Authorization': f'Token {api_key}' # Authentication scheme is 'Token' not 'Bearer' or 'JWT' } ```