Jinja2 Cheatsheet

Read More

Flash Messages

Python Code Flash is a Flask function. It uses the user’s session to display messages. Sessions in Flask are cryptographically […]

Read More
Comments Off on Flash Messages

JINJA2 Python Control

[app.py]: from flask import (Flask, render_template, request, redirect, make_response, url_for) import json from options import DEFAULTS app = Flask(__name__) @app.route(‘/’) […]

Read More
Comments Off on JINJA2 Python Control

Cookies with JSON

Cookies are for storing data between requests that our users submit through the form. Cookies are a great way for […]

Read More
Comments Off on Cookies with JSON

Cookies Simple

Simple Cookie Set & Get [simpleform.html]: <form action=”{{ url_for(‘setcookie’) }}” method=”POST”> <h3>Enter userID</h3> <input name=”fullname” type=”text” /> <input type=”submit” value=”Submit” […]

Read More
Comments Off on Cookies Simple

Forms

We have the following Build A Character app. app.py options.py [static] |__ [css] |__ [img] [templates] |__ builder.html |__ index.html |__ […]

Read More
Comments Off on Forms

CSS, Images & JavaScript

Using stylesheets, images and scripts will improve the appearance and experience of your app greatly. Place these files inside a folder […]

Read More
Comments Off on CSS, Images & JavaScript

Template Inheritance

Instead of repeating your HTML code for each template file you can use template inheritance, where templates can inherit from each […]

Read More
Comments Off on Template Inheritance

HTML Templates

App Inline HTML As you saw, Views can print variables. But it also can print HTML code on the web […]

Read More
Comments Off on HTML Templates

Query Strings & URLs

Query Strings Sending arguments and variables to URLs is important. Users can do that using Query Strings which are the […]

Read More
Comments Off on Query Strings & URLs

First Step

Intro Flask is a great Python microframework that can make building web sites and applications much faster. It offers some […]

Read More
Comments Off on First Step