Skip to content

Commit 9764806

Browse files
authored
Merge pull request #3 from wcf000/main
Cleaned debug statement, adjusted query to database
2 parents 1e2421c + 5d85a02 commit 9764806

12 files changed

+36
-10
lines changed
15 Bytes
Binary file not shown.
15 Bytes
Binary file not shown.

__pycache__/auth.cpython-312.pyc

15 Bytes
Binary file not shown.

__pycache__/client.cpython-312.pyc

472 Bytes
Binary file not shown.
272 Bytes
Binary file not shown.
15 Bytes
Binary file not shown.

__pycache__/init.cpython-312.pyc

356 Bytes
Binary file not shown.
15 Bytes
Binary file not shown.
15 Bytes
Binary file not shown.

client.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,18 @@ def get_raw_client(self):
8484
supabase.Client instance
8585
"""
8686
return self._raw_client
87+
88+
def table(self, table_name: str):
89+
"""
90+
Delegate table access to the raw client for compatibility.
91+
92+
Args:
93+
table_name: Name of the table
94+
95+
Returns:
96+
Table query builder from raw client
97+
"""
98+
return self._raw_client.table(table_name)
8799

88100
# Create a singleton instance
89101
supabase = SupabaseClient()

0 commit comments

Comments
 (0)