web.py is a minimalist web framework for Python.
0
votes
1answer
132 views
how to import named web in python
I tried web.py installing on Windows -64bit-
I didn't install.
Error : " ImportError: No module named 'utils' "
from __future__ import generators
import utils, db, net, wsgi, http, webapi, ...
0
votes
1answer
34 views
String concatenation in templating webpy [closed]
i want to add a string and variable
here is my python code
$ tables = ["aapl","goog","bac"]
$for i in tables:
$values[$i+'_per']
$values is a dict and its ...
0
votes
1answer
71 views
Trying to host a persistent web app using EC2
I just created a lightweight web.py web app that I was able to successfully host on an Amazon EC2 instance. I am able to serve the webpage just fine with the following command:
python bin/app.py ...
0
votes
2answers
81 views
Files being served are stale / cached ; Python as fcgi + web.py + nginx
I'm serving files in ubuntu using Nginx and fcgi, python and web.py. My index.py contents are:
app = web.application(urls, globals(), True)
if __name__ == "__main__":
web.wsgi.runwsgi = lambda ...
0
votes
1answer
98 views
How to handle url path in web.py?
I'm new to web.py, and use a lot of hardcoded url in my code for href in tag a,like
/loginor/?type=xxx.
The problem is,
when I set my application running under a certain path, not the root of a URL, ...
1
vote
1answer
198 views
nginx webpy fastcgi caching can not work
nginx.conf file content as follow:
http {
include mime.types;
default_type application/octet-stream;
# configure cache log
log_format cache '$remote_addr - $host [$time_local] '
...
0
votes
1answer
99 views
Unescaping URL Parameter w/ Web.py
Reading an url as follows:
example.com/product/xy&z
urls = ('/product/(.*)', product)
In the product class on GET I am reading the that product ID pulled (xy&z) from the URL to create a DB ...
0
votes
1answer
81 views
webpy with mod_wsgi on apache2 - weird pymongo bson error
I'm running webpy with apache2. This is a really weird error that has got me flummoxed. Have never seen such an error before and I'm wondering what might be the cause.
The error is in the bson ...
0
votes
1answer
112 views
How to pass in multiple parameters to web.py's render
I am using Jinja2 with web.py and have come across what seems to be a simple problem. I am rendering my paramertized html files and can't seem to figure out how to pass in multiple parameter=value ...
0
votes
1answer
156 views
python web.py execute external program asynchronously
I have a web.py application running on built in cherrypy server.
I want to execute an external script when user post to an url, and the script will run in the background in a python subprocess.Popen ...
0
votes
1answer
463 views
ImportError: No module named web
I am getting this error in my apache error log file when I try to run my web.py application using mod_wsgi. I have installed web.py successfully on my shared hosting and I can confirm that I am able ...
0
votes
0answers
41 views
How to place Textbox or Dropdown into Radio with Webpy
How can I place a dropdown or another object into radio?
Tried this
...
form.Radio("radio",
[
(form.Dropdown('names', [('foobar1', 'Foobar1'), ('foobar2', 'Foobar2')],description='Names', ...
0
votes
0answers
46 views
How to read-back the SQL string used in Query() in Web.Py/Python 2.7
I'm making a connection to a MySql database, in Python 2.7 & Web.Py, using the Query() method for escaped input and advanced SQL queries.
A very simplified example follows:
conn = ...
0
votes
0answers
50 views
ERB -like templating using Python Web Py
Could I get a really simple Hello World example of using the template.frender call with a template html file (with, for eg., a single python parameter in the template)? From web py, I return a static ...
1
vote
1answer
175 views
Responding with JSON, XML, or Other, based on .{Type} using web.py
I am trying to set response type based on the .{Type} at the end of a URL for a RESTful API using web.py.
How can I pass .JSON, .XML, .HTML, .(whatever) to the class "Assignments" or set it as a ...
1
vote
2answers
262 views
web.py - specify address and port
How to specify listening address and port in web.py? Something like:
web.application( urls, host="33.44.55.66", port=8080 )
Edit
I would like to avoid using the default web.py command line parsing
...
0
votes
1answer
110 views
web.py Form.validates() error with utf-8 character in attribute name
I have a form in web.py that displays fine thanks to string.decode('utf-8') but when it submits I get a 'ascii' codec can't encode character u'\xf6' in position 1: ordinal not in range(128) from ...
0
votes
2answers
121 views
web.py downloading images
I'm fairly new to web applications and I'm trying to write a web.py server that will allow me to download an image. As of right now I'm keeping it down to the bare minimum until I can see how it all ...
0
votes
1answer
65 views
Writing image to file in python from website
I wrote this code:
class uploadfromfile:
def POST(self, name=None):
filename = ''.join(random.choice('abcdefghijklmnopqrstuvwxyz') for i in range(20))
x = ...
1
vote
1answer
48 views
Going over a list of times paired with a string and finding out if one time is on a different day to another
I wasn't very clear on how to express what I meant in the title, I think I can explain it better here.
I have a list (entries) which consists of this:
1358345153|russelg|[add] changelog @ /changelog
...
1
vote
2answers
129 views
Auto updating web front end for python script
I have a very simple Python script which I use to poll a serial device (an Xbee module). It's essentially just an endless while loop. Each iteration through this loop I want a web page to update. ...
1
vote
1answer
99 views
web.py doesn't delete stop between requests
Took me a very long time to figure out what the problem was, and now I don't know how to solve it.
I'm using pythonanywhere to run my web.py server
So here's the problem. The web.py instance does ...
0
votes
1answer
92 views
Handling URLs containing slash '/' character with web.py
I'm coming from Flask and handling URLs with slash character is pretty neat: http://flask.pocoo.org/snippets/76/
I'm now using web.py and I'd like to do the same. I don't know beforehand how many ...
0
votes
1answer
213 views
HTTP POST Response Fails Using Web.py
I suppose it goes without saying that I'm baffled by the following. This is a faux-continuation of my queries here: HTTP 303 (SeeOther): GET Works, POST Fails I'm posting another question because the ...
0
votes
1answer
84 views
Error with web.py uploading <type 'exceptions.IOError'>
So i am following the web.py uploading and storing guide to test it out but i keep geting a
error stating that [Errno 2] No such file or directory :< help
this is my code
import web
urls = ...
0
votes
0answers
86 views
OperationalError with web.py on Python 2.7
I have been using web.py with Python 2.4. I've since migrated to Python 2.7 and am getting an error:
OperationalError: (2006, 'MySQL server has gone away')
Is this related to web.py? The webpy ...
0
votes
2answers
104 views
Web.py authoring efficiency
I am new to python web frameworks. I am using web.py because I like how raw it is. I am wondering though, how one can produce pages and scripts efficiently when being restricted to sending output ...
0
votes
2answers
91 views
web.py class importing error
Here is my index.py (it is in the folder /NetWeave_Custom)
import web
import lib.html
web.config.debug = True
urls = (
'/', 'index',
)
class index:
def GET(self):
markup = ...
2
votes
1answer
204 views
HTTP 303 (SeeOther): GET Works, POST Fails
I am trying to perform a simple action:
POST to a URL
Return HTTP 303 (SeeOther)
GET from new URL
From what I can tell, this is a pretty standard practice:
...
0
votes
1answer
91 views
Unable to add mapping to sub application in WebPy
I just want to make clear that while in windows, works fine, but when I try to deploy this script in my VPS it fails.
It is kind of weird because if I add a mapping to the main web application ...
2
votes
1answer
425 views
web.py and gunicorn
My question is basically what's in the title: how can I setup gunicorn to run a web.py app? (Also, if there are any differences, how would I do it on heroku?)
I already have my app running on heroku ...
1
vote
2answers
88 views
Convert a Classic ASP project to another language so I can develop on Mac
I have a site in ASP that I want to convert to a language that I can host on my Mac (I haven't found a practical way to host Classic ASP). The site connects to a MySQL database to pull data which is ...
0
votes
1answer
52 views
set and get thread or global value throughout server requests
Is it possible to set a thread or something alike to store a value among each server request?
I understand that values from threads or globals are get/set only during each server request, also this ...
0
votes
0answers
102 views
How to render large amount of text using jinja2
I am currently using web.py and jinja2 and was wanting to display a book chapter by chapter within my chap.html template. How would I best go about this, given that each chapter is probably 3-6 ...
0
votes
2answers
84 views
Error with update() with web.py
I'm trying to update a database row via a form POST with web.py, but I'm getting a MySQL syntax error. I'm new to Python in general, so forgive me for the newbie question. Here's the code I'm running:
...
0
votes
4answers
215 views
key value pairs from tuple in python
how can I convert a tuple into a key value pairs dynamically?
Let's say I have:
tuple = ('name1','value1','name2','value2','name3','value3')
I want to put it into a dictionary:
dictionary = { ...
0
votes
1answer
214 views
python jquery web game [closed]
I'm trying to develop a web based text strategy game. The idea includes being in space, seeing a radar screen, and moving around, attacking other players, mining planets and so on.
Current ...
0
votes
3answers
65 views
Python Session scope across browser tabs
I'm using python web.py to create a quick prototype to test something. I noticed that the scope of the session variable is such that 2 tabs on the same browser, Chrome, for example, share the session.
...
0
votes
1answer
172 views
Python threading with web.py and pysnmp to create a web service
I'm attempting to create a small service for my home network that reads SNMP values from my switch for the port that the router is on, does a few calculations and returns the current average bandwidth ...
1
vote
1answer
88 views
No template named index error
I am new to Python, and I am trying to run a web.py app with Python Anywhere, but I keep getting the No template named index error. I've modified wsgi.py to use the following:
import web
import ...
0
votes
1answer
141 views
Python 'module' object is not callable issue trying to import module a few different ways
I recently took over maintaining a website that is written in Python and uses web.py. I've created a class I would like to import but I'm getting the "TypeError: 'module' object is not callable" ...
0
votes
1answer
220 views
how to check/uncheck the checkboxes using jquery in python web.py
I am using web.py framework to develop a small webpage that displays all the records from database.
Below is my code
list_page.html
$def with ( select_query )
<!DOCTYPE html PUBLIC "-//W3C//DTD ...
0
votes
1answer
273 views
serving static file not from /static in webpy
Is there a way of serving static files (images) not from the /static folder in webpy? What I would like to do is show images that are scattered in various directories, and moving all of them to ...
0
votes
2answers
229 views
Checkboxes are not working in python web.py
I am using web.py framework for creating small web pages.I had a basic html that has a form with four checkbox fields as below
home.html
$def with ( )
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 ...
1
vote
0answers
224 views
webpy lighttpd and flup. 500 error
Currently I have a lighttpd server with flup and webpy. If you make enough requests fast enough (say clicking a link repeatedly many times or doing an apache bench) Lighttpd throws a 500 internal ...
0
votes
1answer
143 views
How to downlaod a csv file after writing data to it using python
I am using web.py and creating a basic webpage,
I had a basic html code which has a button as below
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ...
2
votes
1answer
98 views
Forcing single threaded request handling with web.py
I'm using web.py framework. For debugging purposes, I'd like to force all requests to be handled by a single thread, or simulate such behaviour with a mutex. How can I do that?
6
votes
1answer
185 views
Why Chinese garbled when use webpy but it's normal when use MySQLdb?
I create a database in mysql and use webpy to construct my web server.
But it's so strange for Chinese character between the webpy's and MySQLdb's behaviors when using them to access database ...
2
votes
1answer
111 views
Web.Py based app, Starts w/o problems, throws KeyError when navigated to url “/”
I'm trying to get a troublesome python app of mine to work. I've just overcame a problem via help of @unutbu here.
My next problem is happenig to be a bit weird, the stack trace shows nothing related ...
2
votes
2answers
113 views
Cannot get imports to work in web.py project
I'm trying to create a basic blogging application in Python using Web.Py. I have started without a direcotry structure, but soon I needed one. So I created this structure:
Blog/
├── Application/
│ ...

