Skip to content

Commit d5c4483

Browse files
authored
chore: add badges to readme
1 parent f99db76 commit d5c4483

File tree

1 file changed

+16
-8
lines changed

1 file changed

+16
-8
lines changed

README.md

+16-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
# supabase-py
22

3-
[![CI/CD](https://github.com/supabase-community/supabase-py/actions/workflows/ci.yml/badge.svg)](https://github.com/supabase-community/supabase-py/actions/workflows/ci.yml)
4-
[![PyPI version](https://badge.fury.io/py/supabase.svg)](https://badge.fury.io/py/supabase)
5-
[![Documentation Status](https://readthedocs.org/projects/supabase/badge/?version=latest)](https://supabase.readthedocs.io/en/latest/?badge=latest)
3+
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg?label=license)](https://opensource.org/licenses/MIT)
4+
[![CI](https://github.com/supabase-community/supabase-py/actions/workflows/ci.yml/badge.svg)](https://github.com/supabase-community/supabase-py/actions/workflows/ci.yml)
5+
[![Python](https://img.shields.io/pypi/pyversions/supabase)](https://pypi.org/project/supabase)
6+
[![Version](https://img.shields.io/pypi/v/supabase?color=%2334D058)](https://pypi.org/project/supabase)
7+
[![Codecov](https://codecov.io/gh/supabase-community/supabase-py/branch/develop/graph/badge.svg)](https://codecov.io/gh/supabase-community/supabase-py)
8+
[![Last commit](https://img.shields.io/github/last-commit/supabase-community/supabase-py.svg?style=flat)](https://github.com/supabase-community/supabase-py/commits)
9+
[![GitHub commit activity](https://img.shields.io/github/commit-activity/m/supabase-community/supabase-py)](https://github.com/supabase-community/supabase-py/commits)
10+
[![Github Stars](https://img.shields.io/github/stars/supabase-community/supabase-py?style=flat&logo=github)](https://github.com/supabase-community/supabase-py/stargazers)
11+
[![Github Forks](https://img.shields.io/github/forks/supabase-community/supabase-py?style=flat&logo=github)](https://github.com/supabase-community/supabase-py/network/members)
12+
[![Github Watchers](https://img.shields.io/github/watchers/supabase-community/supabase-py?style=flat&logo=github)](https://github.com/supabase-community/supabase-py)
13+
[![GitHub contributors](https://img.shields.io/github/contributors/supabase-community/supabase-py)](https://github.com/supabase-community/supabase-py/graphs/contributors)
614

715
Supabase client for Python. This mirrors the design of [supabase-js](https://github.com/supabase/supabase-js/blob/master/README.md)
816

@@ -21,15 +29,15 @@ We are currently in Public Alpha. Watch "releases" of this repo to get notified
2129

2230
**Recomended:** First activate your virtual environment, with your favourites system. For example, we like `poetry` and `conda`!
2331

24-
#### PyPi installation
32+
### PyPi installation
2533

2634
Now install the package. (for > Python 3.7)
2735

2836
```bash
2937
pip install supabase
3038
```
3139

32-
#### Local installation
40+
### Local installation
3341

3442
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.
3543

@@ -115,7 +123,7 @@ user = supabase.auth.sign_in(email=random_email, password=random_password)
115123

116124
## Managing Data
117125

118-
#### Insertion of Data
126+
### Insertion of Data
119127

120128
```python
121129
from supabase import create_client, Client
@@ -127,7 +135,7 @@ data = supabase.table("countries").insert({"name":"Germany"}).execute()
127135
assert len(data.get("data", [])) > 0
128136
```
129137

130-
#### Selection of Data
138+
### Selection of Data
131139

132140
```python
133141
from supabase import create_client, Client
@@ -140,7 +148,7 @@ data = supabase.table("countries").select("*").execute()
140148
assert len(data.get("data", [])) > 0
141149
```
142150

143-
#### Update of Data
151+
### Update of Data
144152

145153
```python
146154
from supabase import create_client, Client

0 commit comments

Comments
 (0)