3👍
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)
- [Django]-Django m2m_changed signal with custom through model
- [Django]-Django, view get list of dictionaries from request
- [Django]-Docker-compose cannot wait for mysql database
- [Django]-How do I load image to React from Django REST API?
- [Django]-Filter on foreign key property in django-nonrel
- [Django]-POST on ModelViewSet with nested object Django Rest Framework
- [Django]-Update M2M relationship django rest framework (many=true)
- [Django]-Django and CFR 21 Part 11
- [Django]-See if node exists before creating in NeoModel
- [Django]-Why the time is different from my TIME_ZONE in settings.py
0👍
+1 for bottle.
Nevertheless, consider that the scope usually grows when developing web apps and that text box and those 2 buttons will later on need: templates, lots of routes, maybe translations, etc. So, always consider using something that would allow you to move into some powerful framework such as web2py or Django.
- [Django]-Deleting files associated with model – django
- [Django]-How to get data from external API to Django Rest Framework
- [Django]-Django find_each (like RoR)
Source:stackexchange.com