Flask example

example responsive html mini menue, with flask backend

Install with pip:

$ pip install Flask

start the application

$ flask run

How to Add a new function?

  1. open file public/index.html
  2. copy a existing function
  3. change the "value" to the another end point
  4. change the "text" of the new function
  5. open file app.py
  6. add the new function, with the same name as the end point ("value")
  7. done