Skip to content

Commit

Permalink
v0.0.2: Fixed __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SiddhantSadangi committed Jul 31, 2023
1 parent 620a6f1 commit 45ac576
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demo/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
st_supabase_connection == 0.0.1
st_supabase_connection == 0.0.2
streamlit
4 changes: 2 additions & 2 deletions src/st_supabase_connection/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
from typing import Optional, Union

from streamlit.connections import ExperimentalBaseConnection
from supabase import create_client
from supabase import Client, create_client

# TODO: Update demo app
# TODO: Update README (highlight benefits 1. same methods as the supabase API 2. built on postgrest-py and storage3, the backend behnd the supaabse API
# 3. less code when using upload and download)
# TODO: Add docstrings and example usage

__version__ = "0.0.1"
__version__ = "0.0.2"


class SupabaseConnection(ExperimentalBaseConnection[Client]):
Expand Down

0 comments on commit 45ac576

Please sign in to comment.