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.
0
votes
2answers
39 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
28 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
11 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
14 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 ...
2
votes
2answers
31 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
28 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
18 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
31 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
28 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
82 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
44 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
49 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
23 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
40 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" ...
-2
votes
0answers
130 views
What are the reasons that Bottle is more performant than Flask and Django? [closed]
According to the benchmarks given here, Bottle performs better in all categories than Flask and Django. What are the reasons?
0
votes
1answer
31 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
33 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
49 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
60 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
70 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
25 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
74 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
40 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
61 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
42 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
43 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
83 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
36 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
49 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
60 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, ...
1
vote
0answers
147 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
57 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
95 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 ...
0
votes
1answer
52 views
Upload file in Bottle as is and use it afterwards
I have a problem accessing .csv file, after I upload it.
HTML:
<form action="/upload" method="post" enctype="multipart/form-data">
<input type="file" name="data" />
<input ...
0
votes
1answer
68 views
Bottle with SQLAlchemy on Heroku
I am trying to setup a simple server on heroku using bottle and sqlalchemy but I keep getting the error that I have not given my methods enough arguments because the "db" keyword is not getting ...
0
votes
0answers
39 views
Bottle, MongoPlugin and custom decorator, cannot access arguments in the decorator
In my bottle project I am using MongoPlugin which injects instance of mongodb into function as an argument. Here is code:
app = bottle.app()
plugin = MongoPlugin(uri="localhost", db="test", ...
1
vote
1answer
79 views
SQLAlchemy not closing sessions with ORM?
I have a week end project with Bottle.py (0.10.11) and SQLAlchemy(0.7.9) using MySQL as a backend.
I had a lot of "MySQL server has gone away" and drilled it down to the fact that some sessions would ...
0
votes
0answers
48 views
Bottle.py + Beaker = weird behaviour?
I have a bottle app that uses beakers session middleware.
Session config:
SESSION_OPTS = {'session.type': 'file',
'session.cookie_expires': True,
'session.data_dir': ...
0
votes
1answer
38 views
Bottlepy serve static file with dynamic root
Serve static file in bottlepy is as simple as this:
@route('statics/<filepath:path>')
def server_static(filepath):
return static_file(filepath, root='assets')
Thus the static file served ...
0
votes
1answer
166 views
Python: Using bottle with Tornado web server to handle concurrent connections
I'm new to Python and web technologies, I am currently building a web service that uses bottle framework. But I found out that the requests to my server actually interfere with each other, i.e when ...
0
votes
1answer
114 views
Cookies getting lost after the redirect (Bottle + uWSGI + Python)
I use Bottle framework and uWSGI app server to host my website. I'm now changing the main programming language on the website (PHP->Python) and I faced the issue: cookies I've just set using ...
0
votes
1answer
75 views
Serving nested static files with Bottle.py
I have the following code. It works to serve the index.html or any file located in the home/ directory, but will not serve any files that are located in nested directories, such as ...
0
votes
1answer
30 views
How To Stop Bottle.py Auto Reloading
Im quite new to bottle.py
I got problem with run(reloader=True)
Is there a way to stop the server? Hitting ctr+c didnt stop the server.
By the way im on linux
1
vote
0answers
33 views
Azure website support for bottle python
When is Azure website going to support Bottle python?
Now they are supporting Django, It should not be difficult to run Bottle, am I right?
Is there any good cloud for Bottle?
1
vote
0answers
170 views
Can't access mod_wsgi hosted python (bottle.py) app
Here is my Problem:
I wrote a bottle.py application and runs it on my pc with the internal bottle.py webserver. Now i want to upload my application to my server and would like to run it there with ...
0
votes
1answer
63 views
Implementing web APIs with versions in python
I am implementing a simple web application with python (3.x) and bottle. As the APIs I want to expose might change in the future, I would like to add the possibility to have different versions.
On ...
0
votes
1answer
57 views
Return window.close() from bottle?
I am trying to close the current tab/window by returning the following from bottle:
@route('/configure', method='POST')
def configure():
#do other things here...
return ...
0
votes
2answers
212 views
Write files to disk with python 3.x
Using BottlePy, I use the following code to upload a file and write it to disk :
upload = request.files.get('upload')
raw = upload.file.read()
filename = upload.filename
with open(filename, 'w') as ...
1
vote
1answer
139 views
How to log into a file for a python & bottle web server?
Following is my code for server. I need to add logging to it . This is a very basic rest api server. I have deployed it on Amazon EC2 . Sometimes due to errors or some other reason the http server ...
2
votes
1answer
68 views
bottle template: how to import a python package
I'm writing a bottle SimpleTemplate and I want to compare a date. How (and where) do you import python package inside a template? Is it possible?
Here is an example of what I'm trying to do. I want ...
