Tagged Questions
1
vote
0answers
54 views
Webpy and Facebook Graph API
I am writing a simple python web service to get content out of Facebook Graph API. Now while testing I had written everything together in one single python class and it was working fine. Now that I ...
0
votes
1answer
68 views
How can I preserve line breaks in a string when using web.py to generate HTML from a template?
I'm using web.py to generate HTML pages using templates.
The HTML template is like this:
$def with (scene)
...
<p id="descriptions">
$scene.descriptions[scene.status]
</p>
Some ...
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
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
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
0answers
212 views
Web.py | Comparison of Tutorial and Cookbook | Database Insert/Updates
Figuring out some differences between the code examples and the tutorial. Within the code examples they write out all POST db write requests as follows.
def POST(self, id):
form = New.form()
...
1
vote
1answer
176 views
Web Py | How to set form.Dropdown args using db.select query
I am missing something rather simple but cannot figure out how to properly read a db.select query for use in form args.
Sample Code:
class index:
form = ...
0
votes
0answers
171 views
how to make mod_wsgi work with apache in win7 64bit
how to make mod_wsgi work with apache in win7 64bit
My windows is win764bit,And i wanted run web.py with apache.
If I add "LoadModule wsgi_module modules/mod_wsgi-win32-ap22py27-3.3.so"
in Apache ...
0
votes
0answers
170 views
Can't get sessions to write in webpy DiskStore
Right, I'm here after fiddling around a lot with webpy (0.37) source code and extensive search on google and exhaustive trying myself.
The problem is I simply can't get sessions to write in my ...
1
vote
2answers
198 views
Python 2.7 with Webpy - flup or modwsgi?
I am unsure which of the two I should go for. Flup or modwsgi.
Flup seems to have very little documentation and even less people adding to the code. modwsgi on the other hand seems to be widely ...
0
votes
0answers
96 views
How to deploy a web.py application into an apache2 webserver using mod_python?
I follow the instructions here. But I can not achieve to make it run.
I tried to edit the apache config file as it is said here. Most of the time I get HTTP 500 error. Then I fix some bugs about db ...
1
vote
1answer
284 views
Python Error in Web.Py from a Newbie
I am a newbie in Python & web.py so excuse my ignorance. I had a script for a web page that was working, and then randomly stopped working. I've been at it for a few days and cant seem to figure ...
0
votes
0answers
63 views
Locking Pyplot when called from a wsgi application
I wrote a simple web app using the Web.py framework and Pyplot, but HTTP 500 errors are thrown when concurrent requests are made. I've come across several sources online that indicate that Matplotlib ...
0
votes
1answer
326 views
How can I get back web.py's stdout log when running under Apache/mod_wsgi?
I developed a web.py application and tested it a lot under stand-alone mode (running myapp.py from the command line) and its stdout output was much useful for debugging. Now I'm running it under ...
1
vote
2answers
123 views
How portable (or not) is using SQLLiteral(“NOW()”) in web.py DB INSERTs?
I know this works fine if my database is MySQL. And maybe others.
seq_id = db.insert('mytable', first="Bob",last="Smith",joined=web.SQLLiteral("NOW()"))
Well, right now, the database customers will ...
0
votes
2answers
300 views
How do I use the version of sqlite3 that comes with the Python installation with web.py?
I'm going through the web.py 0.3 tutorials and once I get here I import sqlite3 and set dbn='sqlite3' but it won't work. Has anyone done this before?
Edit - I figured it out. I used the code in the ...
