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
Supabase client for Python. This mirrors the design of [supabase-js](https://github.com/supabase/supabase-js/blob/master/README.md)
8
16
@@ -21,15 +29,15 @@ We are currently in Public Alpha. Watch "releases" of this repo to get notified
21
29
22
30
**Recomended:** First activate your virtual environment, with your favourites system. For example, we like `poetry` and `conda`!
23
31
24
-
####PyPi installation
32
+
### PyPi installation
25
33
26
34
Now install the package. (for > Python 3.7)
27
35
28
36
```bash
29
37
pip install supabase
30
38
```
31
39
32
-
####Local installation
40
+
### Local installation
33
41
34
42
You can also installing from after cloning this repo. Install like below to install in Development Mode, which means when you edit the source code the changes will be reflected in your python module.
35
43
@@ -115,7 +123,7 @@ user = supabase.auth.sign_in(email=random_email, password=random_password)
115
123
116
124
## Managing Data
117
125
118
-
####Insertion of Data
126
+
### Insertion of Data
119
127
120
128
```python
121
129
from supabase import create_client, Client
@@ -127,7 +135,7 @@ data = supabase.table("countries").insert({"name":"Germany"}).execute()
127
135
assertlen(data.get("data", [])) >0
128
136
```
129
137
130
-
####Selection of Data
138
+
### Selection of Data
131
139
132
140
```python
133
141
from supabase import create_client, Client
@@ -140,7 +148,7 @@ data = supabase.table("countries").select("*").execute()
0 commit comments