Is web.py Python 3 开发者_如何学Pythoncompatible?I believe pjz was saying that WSGI is Python 3 compatible, not web.py.It is possible to update wsgiserver from the CherryPy repository and make some ch
I wrote a WSGI compatible web application using web.py that loads a few dozen MB data into memory during startup.
I\'m creating a desktop application that requires authorizat开发者_运维知识库ion from a remote server before performing certain actions locally.
I am making a simple web-app which requires login for the admin page. I came across this incantation on the web.py site (http://webpy.org/cookbook/userauth) :
gives me an error message: class logger: session = web.ctx.session #this line doesn\'t give me an error message:
So every web.py tutorial I\'ve seen includes this line: urls = ( \'/\', \'index\', ) And then, later on, the index class is defined with a GET function and so on. My problem is, this doesn\'t work.
I\'m adapting an application that makes heavy use of generators to produce its results to provide a web.py web interface.开发者_开发问答
I want to selectively hide some resources based on some form of authentication in web.py, but their e开发者_StackOverflow中文版xistence is revealed by 405 responses to any HTTP method that I haven\'t
I\'m going to develop a small web application on Gae with a registration section, login\\logout and stuff like that.
This is a general question, or perhaps a request for pointers to other open source projects t开发者_如何学编程o look at: