This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
""" | |
Bottle is a fast and simple micro-framework for small web applications. It | |
offers request dispatching (Routes) with URL parameter support, templates, | |
a built-in HTTP Server and adapters for many third party WSGI/HTTP-server and | |
template engines - all in a single file and with no dependencies other than the | |
Python Standard Library. | |
Homepage and documentation: http://bottlepy.org/ |