Skip to content

Instantly share code, notes, and snippets.

@J3698
Last active September 10, 2021 15:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save J3698/191d7d62c9241663ef280411ba93ac2d to your computer and use it in GitHub Desktop.
Save J3698/191d7d62c9241663ef280411ba93ac2d to your computer and use it in GitHub Desktop.
First pass at a backend
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