Python Forum
Deplying Web App - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Deplying Web App (/thread-16712.html)



Deplying Web App - lion137 - Mar-11-2019

I have a simple Python app, something like online math tool. I don't know front end and web frameworks. What's the easy way to deploy this on web? For me enough would be simple site with textbox to enter expressions, title and few hyperlinks. Thanks.


RE: Deplying Web App - snippsat - Mar-11-2019

Look at Flask.
Can do all development local as it comes with build in web-server.
When finish look for a web-host eg DigitalOcean.

Some links.
Tutorial | host | host1.


RE: Deplying Web App - lion137 - Mar-15-2019

Thanks:)