Skip to content

Instantly share code, notes, and snippets.

View mmackz's full-sized avatar

mmackz

View GitHub Profile
@mmackz
mmackz / app.py
Created August 3, 2020 17:14
Intro to Flask: Tourist Attractions
from flask import Flask, render_template, request, redirect, url_for
from locations import Locations
from forms import AddLocationForm
app = Flask(__name__)
app.config['SECRET_KEY'] = 'SECRET_PROJECT'
visit = Locations()
categories = {"recommended": "Recommended", "tovisit": "Places To Go", "visited": "Visited!!!", }