@@ -50,7 +50,7 @@ We can then read the keys in the python source code.
5050
5151``` python
5252import os
53- from supabase_py import create_client, Client
53+ from supabase import create_client, Client
5454
5555url: str = os.environ.get(" SUPABASE_URL" )
5656key: str = os.environ.get(" SUPABASE_KEY" )
@@ -88,7 +88,7 @@ This is a sample of how you'd use supabase-py. Functions and tests are WIP
8888## Authenticate
8989
9090``` python
91- from supabase_py import create_client, Client
91+ from supabase import create_client, Client
9292
9393url: str = os.environ.get(" SUPABASE_TEST_URL" )
9494key: str = os.environ.get(" SUPABASE_TEST_KEY" )
@@ -102,7 +102,7 @@ user = supabase.auth.sign_up(email=random_email, password=random_password)
102102## Sign-in
103103
104104``` python
105- from supabase_py import create_client, Client
105+ from supabase import create_client, Client
106106
107107url: str = os.environ.get(" SUPABASE_TEST_URL" )
108108key: str = os.environ.get(" SUPABASE_TEST_KEY" )
@@ -118,7 +118,7 @@ user = supabase.auth.sign_in(email=random_email, password=random_password)
118118#### Insertion of Data
119119
120120``` python
121- from supabase_py import create_client, Client
121+ from supabase import create_client, Client
122122
123123url: str = os.environ.get(" SUPABASE_TEST_URL" )
124124key: str = os.environ.get(" SUPABASE_TEST_KEY" )
@@ -130,7 +130,7 @@ assert len(data.get("data", [])) > 0
130130#### Selection of Data
131131
132132``` python
133- from supabase_py import create_client, Client
133+ from supabase import create_client, Client
134134
135135url: str = os.environ.get(" SUPABASE_TEST_URL" )
136136key: str = os.environ.get(" SUPABASE_TEST_KEY" )
0 commit comments