flask
Installation
SKILL.md
Flask
Flask is a micro web framework for Python. It's minimal by design — you choose your ORM, auth system, and structure. Extensions fill in the gaps.
Installation
# Install Flask
pip install flask
Project Structure
# Recommended Flask project layout with blueprints
app/
├── __init__.py # Application factory
├── config.py # Configuration classes
├── models.py # SQLAlchemy models
Related skills