I have a small python app that I would like to convert into a webapp. I have look at some frameworks out there such as django.
I need some suggestions on a very simple framework. All my webapp will have is a textbox and two buttons.
Look at Bottle, great for simple webapps. Example code from their website:
from bottle import route, run
@route('/hello/:name')
def index(name='World'):
return '<b>Hello %s!</b>' % name
run(host='localhost', port=8080)
CherryPy would serve you the best if you are looking for a minimalist one.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With