with minimal coding. Take a look at the few Flask powered website, click here
For development purpose you can simply launch on project at a time in Pythonanywhere.com, a free python hosting website.
Create Web Application
app = Flask(__name__)
@app.route(“/”)
def index():
return “Index Page!”
@app.route(“/post”)
def post():
return “Post Page”
@app.route(“/about”)
def about():
return “About the page”
@app.route(“/contact”)
def contact():
return “Contact us”
if __name__ == “__main__”:
app.debug = True
app.run()
You can also use Console tab for advanced operations.
Let’s take a look at your flask
username.pythonanywhere.com — Index
username.pythonanywhere.com/post — Post page
username.pythonanywhere.com/contact — contact page