anderson-ufrj
commited on
Commit
·
889e789
1
Parent(s):
bba32be
feat(deps): add Supabase Python client dependencies
Browse filesAdd supabase, gotrue, and postgrest packages to enable REST API
integration with Supabase. These dependencies support HTTP/HTTPS
communication which works in restricted network environments like
HuggingFace Spaces where direct PostgreSQL connections are blocked.
- requirements.txt +5 -0
requirements.txt
CHANGED
|
@@ -33,6 +33,11 @@ aiosmtplib>=3.0.1
|
|
| 33 |
aiocache>=0.12.2
|
| 34 |
jinja2>=3.1.3
|
| 35 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
# Simple GraphQL support
|
| 37 |
graphql-core>=3.2.0
|
| 38 |
|
|
|
|
| 33 |
aiocache>=0.12.2
|
| 34 |
jinja2>=3.1.3
|
| 35 |
|
| 36 |
+
# Supabase client for REST API access (works on HuggingFace Spaces)
|
| 37 |
+
supabase>=2.0.0
|
| 38 |
+
gotrue>=2.0.0
|
| 39 |
+
postgrest>=0.13.0
|
| 40 |
+
|
| 41 |
# Simple GraphQL support
|
| 42 |
graphql-core>=3.2.0
|
| 43 |
|