Introduction to Bottle
What is Bottle?
Bottle is a super lightweight microframework for creating web applications with Python. In fact, Bottle has no dependencies outside of the Python standard library. It's super easy to get started. However, Flask, unlike something like Django, does not have features like authentication built in.
Bottle is a backend web framework which means that Bottle runs the code behind the scenes. Backend means that Bottle handles all the user requests and the code on the server.
Prerequisites
- Experience with Python
- Web Browser