Tagged Questions

0
votes
1answer
48 views

Web.py on shared hosting

Hi, I just built a small app with the very cool and minimalistic web.py. I am using a cheap shared hosting package (at WebFaction) and have installed web.py via virtualenv. I cannot use the system …
0
votes
1answer
46 views

Web.py template error: ‘sum’ does not exist

I use the built in 'sum' function in a web.py templator template and I get the following error: global name 'sum' is not defined Source code is below: $if profs: $for prof in profs: …
1
vote
3answers
168 views

Trace/BPT trap when calling urllib.urlopen

For some reason I'm getting a Trace/BPT trap error when calling urllib.urlopen. I've tried both urllib and urllib2 with identical results. Here is the code which throws the error: def get_url(url): …
16
votes
13answers
1k views

Is switching from PHP to Python worth the trouble

If you had switched from php + (framework of choice) to python + (framework of choice) as your development platform, what would you say have been the upsides/gains of the switch? What I want to know …
3
votes
3answers
476 views

Deploying a Web.py application with WSGI, several servers

I've created a web.py application, and now that it is ready to be deployed, I want to run in not on web.py's built-in webserver. I want to be able to run it on different webservers, Apache or IIS, …
1
vote
1answer
43 views

IF statement causing internal server error with webpy

I have this class: class View(object): def main_page(self, extra_placeholders = None): file = '/media/Shared/sites/www/subdomains/pypular/static/layout.tmpl' placeholders = { …
0
votes
1answer
121 views

web.py: passing initialization / global variables to handler classes?

I'm attempting to use web.py with Tokyo Cabinet / pytc and need to pass the db handle (the connection to tokyo cabinet) to my handler classes so they can talk to tokyo cabinet. Is there a way to …