Skip to content

Instantly share code, notes, and snippets.

View K-Mistele's full-sized avatar
🏴‍☠️

Kyle Mistele K-Mistele

🏴‍☠️
View GitHub Profile
@K-Mistele
K-Mistele / application.py
Last active November 12, 2020 16:06
A sample flask app
from flask import Flask
# create your app
app = Flask(__name__)
# create application routes
@app.route("/hello")
def say_hello():
return "Hello!"
@K-Mistele
K-Mistele / example.py
Created November 11, 2020 22:43
CodeLighthouse Example Code
def broken_function():
not_a_dictionary = 1
not_a_dictionary.append("hello")
broken_function()