Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ jobs:
with:
fetch-depth: 0

- name: Setup Python
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
python-version: '3.10'

- name: Install dependencies
run: |
Expand Down
58 changes: 58 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -213,3 +213,61 @@ logs/
.Trashes
ehthumbs.db
Thumbs.db

# MkDocs build output
site/

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# Virtual environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# Logs
*.log

# Temporary files
*.tmp
*.temp
1 change: 1 addition & 0 deletions docs/CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
python-cdmx.github.io
16 changes: 8 additions & 8 deletions docs/meetups/2025/202507-julio.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,23 +92,23 @@ Ven a platicar de estas y otras mejores prácticas con nosotros.</p>
<div class="tech-stack" style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 1.5rem 0;">

<div style="background: white; padding: 1rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1);">
<h4 style="margin: 0 0 0.5rem 0; color: ;"> </h4>
<p style="margin: 0; font-size: 0.9rem;"></p>
<h4 style="margin: 0 0 0.5rem 0; color: #3776AB;"><i class="fab fa-python"></i> Python</h4>
<p style="margin: 0; font-size: 0.9rem;">Lenguaje de programación</p>
</div>

<div style="background: white; padding: 1rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1);">
<h4 style="margin: 0 0 0.5rem 0; color: ;"> </h4>
<p style="margin: 0; font-size: 0.9rem;"></p>
<h4 style="margin: 0 0 0.5rem 0; color: #FF6B35;"><i class="fas fa-bolt"></i> UV</h4>
<p style="margin: 0; font-size: 0.9rem;">Gestor de paquetes y entornos virtuales</p>
</div>

<div style="background: white; padding: 1rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1);">
<h4 style="margin: 0 0 0.5rem 0; color: ;"> </h4>
<p style="margin: 0; font-size: 0.9rem;"></p>
<h4 style="margin: 0 0 0.5rem 0; color: #FFD43B;"><i class="fas fa-download"></i> pip</h4>
<p style="margin: 0; font-size: 0.9rem;">Gestor de paquetes de Python</p>
</div>

<div style="background: white; padding: 1rem; border-radius: 8px; text-align: center; box-shadow: 0 2px 4px rgba(0,0,0,0.1);">
<h4 style="margin: 0 0 0.5rem 0; color: ;"> </h4>
<p style="margin: 0; font-size: 0.9rem;"></p>
<h4 style="margin: 0 0 0.5rem 0; color: #28A745;"><i class="fas fa-layer-group"></i> venv</h4>
<p style="margin: 0; font-size: 0.9rem;">Entornos virtuales de Python</p>
</div>

</div>
Expand Down
28 changes: 24 additions & 4 deletions metadata_json/meetup-202507.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,30 @@
"twitter": null
},
"tech_stack": [
"Python",
"UV",
"pip",
"venv"
{
"name": "Python",
"description": "Lenguaje de programación",
"icon": "<i class=\"fab fa-python\"></i>",
"color": "#3776AB"
},
{
"name": "UV",
"description": "Gestor de paquetes y entornos virtuales",
"icon": "<i class=\"fas fa-bolt\"></i>",
"color": "#FF6B35"
},
{
"name": "pip",
"description": "Gestor de paquetes de Python",
"icon": "<i class=\"fas fa-download\"></i>",
"color": "#FFD43B"
},
{
"name": "venv",
"description": "Entornos virtuales de Python",
"icon": "<i class=\"fas fa-layer-group\"></i>",
"color": "#28A745"
}
],
"duration": "50 minutos"
}
Expand Down