Full Code of lucrae/flask-cheat-sheet for AI

master 9ca5ebae130f cached
2 files
8.0 KB
2.2k tokens
1 requests
Download .txt
Repository: lucrae/flask-cheat-sheet
Branch: master
Commit: 9ca5ebae130f
Files: 2
Total size: 8.0 KB

Directory structure:
gitextract_bop09grx/

├── LICENSE
└── README.md

================================================
FILE CONTENTS
================================================

================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2018 Lucien Rae

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


================================================
FILE: README.md
================================================
# Flask Cheat Sheet
A cheat-sheet for creating web apps with the Flask framework using the Python language.

## Contents
- [Creating a Simple App](#creating-a-simple-app)
- [Structuring an Application with Blueprints](#structuring-an-application-with-blueprints)
- [Creating Object-Based Configuration](#creating-object-based-configuration)
- [Using the Jinja2 Template Engine](#using-the-jinja2-template-engine)
- [Creating Models with SQLAlchemy](#creating-models-with-sqlalchemy)
- [Using Database Migrations](#using-database-migrations)
- [Creating a Login Manager](#creating-a-login-manager)
- [Connecting to a MySQL database](#connecting-to-a-mysql-database)

## Creating a Simple App
- Create a module called `app.py`:
```python
from flask import Flask

app = Flask(__name__)

@app.route('/')
def index():
	return 'Hello, World!'

if __name__ == '__main__':
	app.run()
```

## Structuring an Application with Blueprints
- Example project tree for a project called `project`:
```
run.py
project/
	__init__.py
	config.py
	forms.py
	models.py
	admin/
		__init__.py
		routes.py
	main/
		__init__.py
		routes.py
	templates/
		index.html
	static/
		css/
			style.css
```
- In `run.py`:
```python
from project import app

if __name__=='__main__':
	app.run()
```
- In `project/__init__.py`:
```python
from flask import Flask
from project.main.routes import main
from project.admin.routes import admin

app = Flask(__name__)

app.register_blueprint(main, url_prefix='/')
app.register_blueprint(admin, url_prefix='/admin')
```
- In `project/main/routes.py`:
```python
from flask import Blueprint

main = Blueprint('main', __name__)

@main.route('/')
def index():
	return "Hello, World! This is the main page."
```
- In `project/admin/routes.py`:
```python
from flask import Blueprint

admin = Blueprint('admin', __name__)

@main.route('/')
def index():
	return "Hello, World! This is the admin page."
```
## Creating Object-Based Configuration
- Create `project/config.py`:
```python
class BaseConfig(object):
	SECRET_KEY = os.environ.get('SECRET_KEY') or 'abcdef123456'
	DEBUG = False
	TESTING = False

class DevelopmentConfig(BaseConfig):
	DEBUG = True
	TESTING = True

class TestingConfig
	DEBUG = False
	TESTING = True
```
- And then in `__init__.py` include:
```python
from flask import Flask
from threechan import config

app = Flask(__name__)
app.config.from_object(config.DevelopmentConfig)
```
## Using the Jinja2 Template Engine
- Rendering a template from `main/routes.py`:
```python
from flask import Blueprint, render_template

@main.route('/')
def home():
	posts = [
		{
			"body": "Hello, this is a post",
			"timestamp": "This is a date and time",
		}
	]
	
	return render_template("home.html", posts=posts)
```
- Using Jinja2 inside `templates/home.html`:
```html
{% for posts in posts %}
	<div>
		{{ post.body }} <br>
		{{ post.timestamp }}
	</div>
{% endfor %}
```
- Using filters:
```html
{{ body|upper }}
```
- Creating custom filters:
```python
@main.template_filter('trim_upper')
def string_trim_upper(value):
	return value.strip().upper()
``` 
- Using `extends`:

in **index.html**
```html
{% extends 'base.html' %}

{% block content %}
<p>
	Hello, world!
</p>
{% endblock %}
```
in **base.html**
```html
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width initial-scale=1">
	</head>
	<body>
		{% blockcontent %}{% endblock %}
	</body>
</html>
```
- Using `includes`:
```html
{% includes '_post.html' %}
```
- Adding a stylesheet from `templates/base.html`:
```html
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
```
## Creating Models with SQLAlchemy
- In `project/models.py`:
```python
from flask_sqlalchemy import SQLAlchemy

db = SQLAlchemy()

class Post(db.Model):
	id = db.Column(db.Integer, primary_key=True)
	body = db.Column(db.String(256))

	def __init__(self, body):
		self.body = body

	def __repr__(self):
		return "<Post({})>".format(self.id)
```
- In `project/__init__.py`
```python
from project.models improt db

app = Flask(__name__)
app.config.from_object(config.DevelopmentConfig)
with app.app_context():
	db.init_app()
```
- In `project/config.py`:
```python
import os
BASE_DIR = os.path.abspath(os.path.dirname(__name__))

class BaseConfig(object):
	# ...
	SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(BASE_DIR, 'data.db'
	SQLALCHEMY_TRACK_MODIFICATIONS = False
```
- Creating the database and interacting with models and queries inside the shell:
```bash
>>> from project import app, db
>>> from project.models import Post
>>> app.app_context().push()
>>> db.create_all()
>>> p = Post('Hello!')
>>> db.session.add(p)
>>> db.session.commit()
>>> posts = Post.query.all()
```
- To operate through `$ flask shell`, include the following in `project/__init__.py`:
```python
from project.models import db, User, Post

@app.shell_context_processor
def make_shell_context():
	return {'app': app, 'db': db, 'User': User, 'Post': Post}
```
- For more info on `Flask-SQLAlchemy`: [official flask-sqlalchemy guide](http://flask-sqlalchemy.pocoo.org/2.1/quickstart/).
- For more info on `contexts`: [official flask-sqlalchemy contexts guide](http://flask-sqlalchemy.pocoo.org/2.3/contexts/)

## Using Database Migrations
- Add the following to `project/__init__.py`:
```python
from flask_migrate import Migrate

app = Flask(__name__)
app.config.from_object)config.DevelopmentConfig)
migrate = Migrate(app, db)
```
- To initialize the `migrations` folder:
```bash
$ flask db init
```
- To migrate:
```
$ flask db migrate
```
- To upgrade:
```
$ flask db upgrade
```
## Creating a Login Manager
- In `models.py` include:
```python
from flask_login import LoginManager, UserMixin

login_manager = LoginManager()

@login_manager.user_loader
def load_user(user_id):
	return User.get(user_id)
```
- in `project/__init__.py` include:
```python
from project.models import login_manager

with app.app_context():
	login_manager.init_app(app)
```
## Connecting to a MySQL database
- Although `SQLite` is fine for a simple development server, the databases of production servers are often better suited to a more full-featured DBMS like `MySQL`.
  
- Install `MySQL`:
```bash
$ sudo apt-get install mysql-server
```
#### If not prompted to enter a password:
```bash
$ sudo mysql_secure_installation
```
- And then:
```bash
$ sudo mysql -u root -p
```
```sql
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON database_name.* TO 'newuser'@'localhost';
```

#### Access the `MySQL` shell:
```bash
$ mysql -u root -p
```
*Note:* `root` *of MySQL is not the same as the* `root` of the OS.

- Show databases with:
```sql
SHOW DATABASES;
```
- Create a database:
```sql
CREATE DATABASE database_name;
```
- Establish connection with `SQLAlchemy`, install `pymysql`:
```bash
$ pip install pymysql
```
- And within the config object in `config.py` include:
```python
SQLALCHEMY_DATABASE_URI  =  'mysql+pymysql://root:password@localhost/database';
```
- For more standard commands: the [Digital Ocean MySQL tutorial](https://www.digitalocean.com/community/tutorials/a-basic-mysql-tutorial) is useful.
Download .txt
gitextract_bop09grx/

├── LICENSE
└── README.md
Condensed preview — 2 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (9K chars).
[
  {
    "path": "LICENSE",
    "chars": 1067,
    "preview": "MIT License\n\nCopyright (c) 2018 Lucien Rae\n\nPermission is hereby granted, free of charge, to any person obtaining a copy"
  },
  {
    "path": "README.md",
    "chars": 7152,
    "preview": "# Flask Cheat Sheet\nA cheat-sheet for creating web apps with the Flask framework using the Python language.\n\n## Contents"
  }
]

About this extraction

This page contains the full source code of the lucrae/flask-cheat-sheet GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 2 files (8.0 KB), approximately 2.2k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!