Questions tagged [bottle]

Bottle is a fast, simple and lightweight WSGI micro web-framework for Python. It is distributed as a single file module and has no dependencies other than the Python Standard Library.

Bottle

Bottle is a fast, simple and lightweight micro web-framework for . It is distributed as a single file module and has no dependencies other than the Python Standard Library.

Bottle is designed for prototyping and building small web applications and services. It allows you to get things done quickly, but misses some of the advanced features and ready-to-use solutions found in other frameworks (such as MVC, ORM, form validation, scaffolding and XML-RPC).

Features

  • Routing: Requests to function-call mapping with support for clean and dynamic URLs.
  • Templates: Fast and pythonic built-in template engine and support for mako, jinja2 and cheetah templates.
  • Utilities: Convenient access to form data, file uploads, cookies, headers and other HTTP-related metadata.
  • Server: Built-in HTTP development server and support for paste, fapws3, bjoern, gae, cherrypy or any other WSGI capable HTTP server.

Resources

1487 questions
-6
votes
1 answer

Using Bottle, need to create web-page

I'm relatively new with python. I'm creating a webpage and hosting it using heroku which supports bottle framework. I need to create a website which takes data from a user and does some computation with it. For this i require text boxes and submit…
-7
votes
1 answer

Any other way to write this statement

I'm trying to write this statement in some other way. True if 'sessionid' in request.cookies else False Please help me with this.
Sanjay Tarani
  • 21
  • 1
  • 5
1 2 3
99
100