Bottle Documentation - Bottle: Python Web Framework

These routes will match GET requests only. To handle other methods such as POST, PUT, DELETE or PATCH, add a methodkeyword argument to the route()decorator or use one of the five alternative decorators: get(), post(), put(), delete()or patch(). The POST method is commonly used for HTML form submission. This example shows how to handle a login form ................
................