I've created a simple app, rather a basic "HelloWorld" app, just for sake testing the web app and for converting it into an Android app. This is the following code:
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello():
return 'Hello World'
if __name__=='__main__':
app.run()