This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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__) |