Comments

Log in with itch.io to leave a comment.

Show post...

Try a web flask with python and use this link.

repl.com

here is the command 

from flask import Flask app = Flask('app') @app.route('/') def Web_flask(): return 'Web Flask ' app.run(host='0.0.0.0', port=8080)