Skip to content

Instantly share code, notes, and snippets.

@loelkes
loelkes / jhflasktemplate.py
Created April 6, 2019 09:28
JugendHackt Flask template
# First install necessary packages
# pip install flask
# Import the modules
from flask import Flask, jsonify, request
# create the app. This variable named jh constains our app
jh = Flask(__name__)