Skip to content

Instantly share code, notes, and snippets.

@ModMaamari
Last active July 7, 2021 14:33
Show Gist options
  • Save ModMaamari/af5ce7ccbfdda1f97b58d487ab745beb to your computer and use it in GitHub Desktop.
Save ModMaamari/af5ce7ccbfdda1f97b58d487ab745beb to your computer and use it in GitHub Desktop.
Initialize Flask App
# Import Flask
from flask import Flask
# Iniiate the flask app
app = Flask(__name__)
app.config['SECRET_KEY'] = 'Here you put a secret key as a string'
# Call the routes code
from digitReader import routes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment