bottlepy /
bottle
bottle.py is a fast and simple micro-framework for python web-applications.
Loading repository data…
adampresley / repository
bottle.py is a fast and simple micro-framework for python web-applications.
.. image:: http://bottlepy.org/bottle-logo.png :alt: Bottle Logo :align: right
Bottle is a fast and simple micro-framework for small web applications. It offers request dispatching (URL routing) 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/ License: MIT (see LICENSE)
Install bottle with pip install bottle or just download bottle.py <http://pypi.python.org/pypi/bottle>_ and place it in your project directory. There are no (hard) dependencies other than the Python Standard Library.
::
from bottle import route, run
@route('/hello/:name')
def hello(name):
return '<h1>Hello %s!</h1>' % name.title()
run(host='localhost', port=8080)
Selected from shared topics, language and repository description—not editorial ratings.
bottlepy /
bottle.py is a fast and simple micro-framework for python web-applications.
topher515 /
Dinofacts is a python-wsgi prank Twilio App that uses `bottle.py` to respond to Twilio requests. WARNING: None of these dinosaur facts are true.
Satwik290896 /
The devil decides to send you 1000 bottles of wine, but one of them is poisoned. He also sent you 10 testing strips that can detect the poison. A single drop of poison will turn the test permanently positive. You can put any number of drops on a test strip at once, and you can re-use it until it comes in contact with the poison. Unfortunately, you can run a test once per day, and it takes 1 week to find out the result of the test. Write a code that finds the poisoned bottle in a minimal number of days
alexduroux /
bottle.py is a fast and simple micro-framework for python web-applications.
thamanchand /
This is a simple blog made using bottle.py python web developement framework and MongoDB as a backend.