Skip to content

Commit a54eabc

Browse files
committed
Reflex 0.7.2
1 parent 8289cc2 commit a54eabc

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Python Web
22

3-
[![Python](https://img.shields.io/badge/Python-3.11+-yellow?style=for-the-badge&logo=python&logoColor=white&labelColor=101010)](https://python.org)
4-
[![Reflex](https://img.shields.io/badge/Reflex-0.4.5+-5646ED?style=for-the-badge&logo=reflex&logoColor=white&labelColor=101010)](https://reflex.dev)
3+
[![Python](https://img.shields.io/badge/Python-3.12+-yellow?style=for-the-badge&logo=python&logoColor=white&labelColor=101010)](https://python.org)
4+
[![Reflex](https://img.shields.io/badge/Reflex-0.7.2+-5646ED?style=for-the-badge&logo=reflex&logoColor=white&labelColor=101010)](https://reflex.dev)
55

66
## Curso de 13 horas en vídeo para aprender desarrollo web con Python puro y Reflex desde cero.
77

link_bio/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.states
12
*.db
23
*.py[cod]
34
.env

link_bio/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Web de links de MoureDev
22

3-
[![Python](https://img.shields.io/badge/Python-3.11+-yellow?style=for-the-badge&logo=python&logoColor=white&labelColor=101010)](https://python.org)
4-
[![Reflex](https://img.shields.io/badge/Reflex-0.6.4+-5646ED?style=for-the-badge&logo=reflex&logoColor=white&labelColor=101010)](https://reflex.dev)
3+
[![Python](https://img.shields.io/badge/Python-3.12+-yellow?style=for-the-badge&logo=python&logoColor=white&labelColor=101010)](https://python.org)
4+
[![Reflex](https://img.shields.io/badge/Reflex-0.7.2+-5646ED?style=for-the-badge&logo=reflex&logoColor=white&labelColor=101010)](https://reflex.dev)
55

66
## Proyecto desarrollado con [Python](https://www.python.org/) y [Reflex](https://reflex.dev/) que representa un sitio web personal estilo "[link in bio](https://moure.dev/)"
77

link_bio/link_bio/components/footer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def footer() -> rx.Component:
5252
src=f"/raiola_networks.svg",
5353
on_click=rx.redirect(
5454
const.RAIOLA_NETWORKS_URL,
55-
external=True
55+
is_external=True
5656
),
5757
width="200px",
5858
height="100%",

link_bio/link_bio/components/link_button.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ def link_button(title: str,
4141
),
4242
border=f"{'2px' if highlight_color != None else '0px'} solid {highlight_color}",
4343
class_name=styles.BOUNCEIN_ANIMATION if animated else None,
44-
on_click=rx.redirect(path=url, external=is_external)
44+
on_click=rx.redirect(path=url, is_external=is_external)
4545
)

link_bio/requirements.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
pip==24.3.1
2-
reflex==0.6.4
1+
pip==25.0.1
2+
reflex==0.7.2
33
python-dotenv==1.0.1
4-
supabase==2.9.1
4+
supabase==2.13.0
55
configcat-client==9.0.4
6-
pytz==2024.2
6+
pytz==2025.1

0 commit comments

Comments
 (0)