Skip to content

Instantly share code, notes, and snippets.

View thiagodelgado111's full-sized avatar

Thiago Delgado thiagodelgado111

View GitHub Profile
@thiagodelgado111
thiagodelgado111 / flask
Last active August 17, 2017 17:33
flask hello world
#!/bin/python
from flask import Flask, render_template, jsonify, send_from_directory, request
app = Flask("MY_GR8_APP", static_folder='static', static_url_path='')
app.debug = True
@app.route("/hello/")
def richie():
return "It's me you're looking for..."