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.
1
vote
2answers
38 views
Combine two python decorators into one
Here are two decorators I'd like to combine as they are pretty similar, the difference is how a not authenticated user is handled. I'd prefer to have one single decorator that I can call with an ...
1
vote
1answer
29 views
python bottle can run two programs on the same address and port on WINDOWS
I just encountered a weird issue about bottle on windows.
When I tested the my bottle codes, I found that it could run multiple same programs on WINDOWS using same address and port. But when you try ...
0
votes
1answer
33 views
Python Bottle how to pass parameter as json
I created an api for openerp using bottle
It works well while access using browser
I don't know how to pass it as json parameters
The Problem is
how can i call using api and pass json parameters ...
0
votes
2answers
49 views
Error when trying import Bottle-powered web app on Apache/mod_wsgi
I am created an api for OpenERP using bottle and when i try to configure wsgi with apache.
While importing in apache server log it shows
ImportError: No module named api
I checked for current ...
2
votes
1answer
55 views
Python script that simultaneously listens/responds to HTTP requests, serial port, and time-based events?
Short version of my question:
How do I design a single Python script that can listen and respond to inputs received via HTTP or a serial port, and also initiate communications via these channels on ...
1
vote
3answers
26 views
get server address from bottle
Is it possible to get the IP Address of the server programmaticaly in a bottle request?
I need to return a link to a file on the server inside a request and need to know the IP. Bottle will be ...
1
vote
1answer
43 views
python web framework — dynamic routes to extension modules
I'm exploring the use of python's bottle web framework. The web application must be extensible. That is, I will have a folder like "some/path/extensions/" into which future developers should be able ...
1
vote
0answers
41 views
(web) How to synchronize users concurrently editing a textarea?
I have a TextArea 'TA' in my website where users can edit its text concurrently.
What I have done so far is the following,
I set a global variable 'content' in the server side to capture/monitor ...
0
votes
1answer
44 views
Can't write to a file using bottle with google app engine
I have successfully deployed my python with bottle framework application in google app engine, however, I'm getting one of the most peculiar errors.
Whenever I try opening a file for writing I get ...
0
votes
2answers
37 views
How do I make bottle work with google app engine?
This is the code,
import webapp2
from framework import bottle
from framework.bottle import route, template, request, error, debug
@route('/')
def root():
return 'hello world'
class ...
0
votes
0answers
20 views
Cloud9 bottle Web Server, accessed externally
I create a Web Server in python using bottle library. Its works fine and run in https://c9.io. I want access this web service externally.
I´m using host=os.environ['IP'] and port=os.environ['PORT'] ...
1
vote
1answer
91 views
Python bottle module causes “Error: 413 Request Entity Too Large”
Using Python's module bottle, I'm getting HTTP 413 error when posting requests of body size > bottle's internal MEMFILE_MAX constant. Minimal working example is shown below.
Server part (server.py):
...
0
votes
1answer
53 views
How do I deal with URL reroutes in Python Bottle and Apache .htaccess?
I am currently trying to create a simple standalone application using Python Bottle.
My entire project is under pytest/, where I have dispatch.fcgi and .htaccess.
dispatch.fcgi:
#!/usr/bin/python
...
0
votes
1answer
26 views
bottle+uwsgi+nginx got an error when I use python-scapy
bootle debug said:
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/bottle.py", line 764, in _handle
return route.call(**args)
File ...
0
votes
0answers
66 views
Flask not working in Virtualenv setup
SetUp
VirtualBox | Ubuntu Server 12.04.2
(flaskve)vks@UbSrVb:~/flaskve$ python --version
Python 2.7.3
ifconfig
192.168.1.100 (the bridge interface on which i interact with VirtualBox)
...
1
vote
1answer
84 views
How to write Image file into binary field of OpenERP using API
I created an api using python bottle for accessing OpenERP REST API.
My problem is while uploading a image file and writing it into the binary field in OpenERP
it throws raise TypeError, "cannot ...
0
votes
1answer
26 views
Mutiple arguments in bottle's route
In bottle, the route like this:
@get('/ws/contacts/:uid')
how can i add more arguments to the route, and how to code the @get() ?
0
votes
0answers
27 views
Bottle Web Framework: How to rerun the script for certain event
When run bottlepy using WSGI Server, I can restart the server by pressing ctrl+c and run the script one more time.
However I want to do this automatically. So whenever files/directories added, ...
0
votes
2answers
53 views
very, very simple web authentication for personal use
I'm using bottle to write a very backend API that will allow me to check up on an ongoing process from my phone. I'm the only person who will ever use this service—or rather, I would very much like to ...
-1
votes
2answers
37 views
How do I print values from mongodb in my javascript code?
I'm trying to take values from my Mongo collection and print them out on my webpage which. I'm using javascript and I'm also using the bottle framework and python to communicate database queries ...
0
votes
1answer
13 views
Limiting number of connections from bottlepy's `run`?
Is it possible to limit connections, restrict to certain number of unique IP addresses; with Bottle's run command?
All I could find was this: http://bottlepy.org/docs/dev/deployment.html
1
vote
0answers
27 views
Set a global variable for all mako templates using bottle?
I'm using bottle with beaker as session middleware. I'd like to include my session object in all my mako templates without specifying it when rendering:
Instead of this:
return ...
3
votes
2answers
71 views
Setting HTTP status code in Bottle?
How do I set the HTTP status code of my response in Bottle?
from bottle import app, run, route, Response
@route('/')
def f():
Response.status = 300 # also tried `Response.status_code = 300`
...
0
votes
1answer
36 views
Why doesn't bottlepy server load?
I am confused as to why the bottlepy server doesn't run:
if __name__ == '__main__':
start = datetime.now()
db = Database(force_refresh_cache=False,
...
0
votes
1answer
49 views
Getting peewee to work on elastic beanstalk
I'm trying to install the peewee package on an elastic beanstalk instance to control a bottle application. I think the problem is with the MySQL-python dependency, but peewee doesn't load either. My ...
1
vote
1answer
38 views
Javascript breaks when I update html with Ajax
Having a problem with a webapp i've been working on lately, and it has to do with ajax reloading breaking javascript.
I have the following Ajax Call
$.ajax({
type: "POST",
...
0
votes
1answer
34 views
Use bottlepy and php in the same computer
I use ubuntu 12.04 with apache2 and mod_wsgi installed. I want to use bottlepy and php in my local computer.
I know such an issue is already asked by someone else as in Apache mod_wsgi and php in the ...
1
vote
0answers
185 views
bottle gevent and threading: gevent is only usable from a single thread
I have a python bottle application, which uses threads. due to the fact i'm using monkey.patch (http://www.gevent.org/gevent.monkey.html), the threads were blocking app execution (a dialog box fired ...
0
votes
0answers
56 views
extjs grid update without request
I am newbie to extjs and ajax etc.. so pardon me for for naive question.
I have a requirement where I need to update a extjs grid asyncnrously, i.e. I have python code that has data and once in a ...
1
vote
1answer
50 views
Why a method can ref an undefined varaible?
I'm new to python, and trying to read bottle.py source code
In the document, we have to
from bottle import route, run
to use bottle.
I try to read the source code where route is just a function ...
1
vote
1answer
30 views
python win32api blocking bottle routes
I have a bottle web application. At some point, i want the server to raise a dialog window to ask the server admin for something. This alert, even when started from a Thread is blocking - And i don't ...
0
votes
1answer
58 views
Posting to Bottle server. How do I get the request data?
I'm having trouble getting the request data on the server side. I'm a newbie when it comes to web code som bear with me. Here's my (simplified) code:
html
<form id="form" ...
0
votes
1answer
41 views
Bottle 0.8.0: What does this route specification mean?
In this bit of code,
def setRoute(route, method='GET'):
def decorator(f):
f.route=route
f.method=method
return f
return decorator
...
class MyClass:
@setRoute( ...
0
votes
1answer
44 views
How to prevent bottle from handling signals
I am building an application using the Bottle web-framework.
I would like to catch signals USR1 and USR2 to do some work aside from the bottle server. Mainly I want to be able to reload configuration ...
1
vote
1answer
84 views
Can't load static files with bottle on elastic beanstalk
After some help, I got my bottle application running with Elastic Beanstalk. Well almost - I still can't see any static files. I have followed the instructions here by inserting a file called ...
0
votes
1answer
84 views
Can't get bottle to run on Elastic Beanstalk
I've got a website written in bottle and I'd like to deploy it via Amazon's Elastic Beanstalk. I followed the tutorial for deploying flask which I hoped would be similar.
I tried to adapt the ...
1
vote
2answers
85 views
Using the example from the bottle documentation, I still get an empty value for query_string
Using bottle's built in WSGI server, here is the relevant HTML:
form style="display: inline;" action="/forum?id=2&page=5">
<input type="submit" value="Forum"/></form>
...
0
votes
1answer
36 views
Use same variable name as inherited block name in Mako?
I've stumbled upon a problem with inheritence in Mako. I'll try to illustrate the problem below using two template files...
base.tpl - has a named block title:
<title><%block ...
0
votes
1answer
104 views
Python Bottle Micro-Web Framework
Ok, so I've gone to the http://bottlepy.org/docs/dev/ website, and tried following their instructions for including the bottle.py framework, and do the little test web service test they have on the ...
0
votes
1answer
49 views
Internal Server Error 500 in Mongod for Python code
I am taking the MongoDB m101p course and I run into trouble;
Started mongod
Started python blog.py listener
Logged in with a existing user
Added a new post
Added comments to that post
The problem ...
0
votes
0answers
73 views
How to load static files into Bottlepy templates rendered from a package?
I have a bottlepy application with a module based structure as below:
|-- server.py
|-- settings.py
|-- apps
|-- core.py
|-- admin.py
|-- static
|-- bootstrap
|-- css
|-- ...
0
votes
1answer
58 views
Sharing an object between Gunicorn workers, or persisting an object within a worker
I'm writing a WSGI app using an Nginx / Gunicorn / Bottle stack that accepts a GET request, returns a simple response, and then writes a message to RabbitMQ. If I were running the app through straight ...
0
votes
0answers
47 views
how do I clear last query from cache
I have a python script running on bottle and it returns json data when called. Problem is that if I call the URL on the browser and keep refreshing (hitting F5), the result seems to be adding up ...
1
vote
1answer
109 views
Invalid Syntax class Template(metaclass=_TemplateMetaclass) with mod_wsgi, apache and sqlalchemy
I have a script where I import:
from bottle import route, request
from sqlalchemy import create_engine, MetaData
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import ...
0
votes
1answer
52 views
Could not pass list object into template bottle
I have some problem with bottle template. I can not pass python list to template. My code is below:
@route('/'):
def home():
return template('home', var=['item1', 'item2'])
And this is ...
2
votes
2answers
54 views
Bottle server not completely resetting, holding on to old, incorrect function
I've got a bottle server running, and added a function to it. The first time I made a mistake in the function - I had 4 input parameters but only passed it one. So it crashed and gave me this message:
...
0
votes
1answer
67 views
Pymongo dict element in array output
I got a database with this info:
{"_id":1, "test":6,"foo":[{"mom":5,"dad":10},{"mom":7, "dad":12}]}
{"_id":2, "test":9,"foo":[{"mom":6,"dad":20},{"mom":7, "dad":15}]}
{"_id":3, "test":10, ...
2
votes
0answers
232 views
nginx/bottle python - route request to another port
I've looked for the answer around and I believe the answer is pretty simple but I wasn't able to find it. I think for my lack of knowledge of nginx...
I have my nginx instance running on ...
0
votes
1answer
70 views
Bottle.py for Web Application
I saw bottle.py framework and found its awesome to use and works great.
But can it handle the huge traffic as it runs on single thread server but can be used to run on multi threaded server.
I want ...
0
votes
2answers
122 views
Methods to protect a bottle.py webapplication against XSS and CSRF?
I'm writing a webapplication using bottle.py, Beaker for sessions and a custom AAA written module, as many I'm worried about security and the best method to protect against some targeted attack like ...

