Last active
September 10, 2021 15:53
-
-
Save J3698/191d7d62c9241663ef280411ba93ac2d to your computer and use it in GitHub Desktop.
First pass at a backend
This file contains hidden or 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
from flask import Flask | |
app = Flask(__name__) | |
@app.route("/classify") | |
def classify_symbol(): | |
return {"top5": ["A", "B", "C", "D", "E"]} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment