Skip to content

Commit

Permalink
Clase 4 [Avanzado]
Browse files Browse the repository at this point in the history
Integración Supabase PostgreSQL
  • Loading branch information
mouredev committed Feb 12, 2024
1 parent fcb695f commit 19b7680
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,15 @@
## ⚠️ [NUEVO] Curso de Python Web Avanzado

### 🗓️ Próxima clase: 08/02/24 a las 20h (España) en directo desde [Twitch](https://twitch.tv/mouredev)
[**Consulta aquí el horario en tu país y crea un recordatorio**](https://discord.gg/ZGuugkkk?event=1202929768996012072)
### 🗓️ Próxima clase: 15/02/24 a las 20h (España) en directo desde [Twitch](https://twitch.tv/mouredev)
[**Consulta aquí el horario en tu país y crea un recordatorio**](https://discord.gg/vP38WqJx?event=1206181996691193886)

### Clases anteriores:

- [Clase 1 [18/01/24]: Actualización, refactor, Router, componentes React y hosting Reflex](https://www.twitch.tv/videos/2036419660?t=00h14m41s)
- [Clase 2 [25/01/24]: Backend, Docker, CORS y GitHub Actions](https://www.twitch.tv/videos/2043357705?t=00h17m22s)
- [Clase 3 [01/02/24]: Estados, API REST e integración API Twitch](https://www.twitch.tv/videos/2050175668?t=00h16m05s)
- [Clase 4 [08/02/24]: Integración Supabase PostgreSQL](https://www.twitch.tv/videos/2057000877?t=00h16m10s)

Continuación del curso desde cero de 6 horas. En esta sección más avanzada se aprenderán diferentes conceptos relacionados con el desarrollo web con Python y Reflex: Router, backend, APIs, eventos, estados, base de datos, Docker, y más...

Expand Down Expand Up @@ -92,6 +93,7 @@ Todo el contenido se crea en directo desde [Twitch](https://www.twitch.tv/moured
* [Ant Design](https://ant.design/)
* [Railway](https://railway.app/)
* [Twitch API](https://dev.twitch.tv/docs/api/)
* [Supabase](https://supabase.com/)

## Curso de Python desde cero
### Aprende Python desde sus fundamentos
Expand Down
4 changes: 3 additions & 1 deletion link_bio/link_bio/api/SupabaseAPI.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ class SupabaseAPI:

def __init__(self) -> None:
if self.SUPABASE_URL != None and self.SUPABASE_KEY != None:
self.supabase = create_client(self.SUPABASE_URL, self.SUPABASE_KEY)
self.supabase: Client = create_client(
self.SUPABASE_URL, self.SUPABASE_KEY
)

def featured(self) -> list:

Expand Down

0 comments on commit 19b7680

Please sign in to comment.