Tagged Questions
web.py is a minimalist web framework for Python.
30
votes
13answers
3k 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 ...
16
votes
11answers
2k views
How do I use python for web development without relying on a framework?
I know the various frameworks have their benefits, but I personally want my web development in python to be as straight-forward as possible: less writing to the framework, more writing python.
The ...
11
votes
4answers
1k views
Using web.py as non blocking http-server
while learning some basic programming with python, i found web.py. i
got stuck with a stupid problem:
i wrote a simple console app with a main loop that proccesses items
from a queue in seperate ...
9
votes
1answer
847 views
web.py and flask
For these pythonic web frameworks;
They looks similar, except a few minor differences like their url handling schemes. So it is very hard to choose one of them.
I want to learn from your ...
8
votes
3answers
857 views
Django or web.py, which is better to build a large website with Python?
I'd like to use Python to build a website with more than 100,000 PV each day. Now what I concern is to choose which web framework. I know lots of people use Django, and some people use web.py. Django ...
8
votes
2answers
1k views
Google app engine users Auth: Djangoappengine Vs Web2py Vs Webpy
I'm going to develop a small web application on Gae with a registration section, login\logout and stuff like that.
Since Google app Engine does not support session out of the box and I don't want to ...
6
votes
1answer
1k views
Web.py on dotcloud with wsgi
I'm trying to deploy my web.py app on dotcloud, but can't figure out how to do it.
I went through this tutorial fine: http://docs.dotcloud.com/static/tutorials/firststeps/
And then I looked at ...
6
votes
3answers
2k views
Differences between webapp and web.py
Webpy.org - Who uses web.py?
"[web.py inspired the] web framework
we use at FriendFeed [and] the webapp
framework that ships with App
Engine..."
— Brett Taylor,
co-founder of ...
6
votes
3answers
266 views
Profiling Python generators
I'm adapting an application that makes heavy use of generators to produce its results to provide a web.py web interface.
So far, I could wrap the call to the for-loop and the output-producing ...
5
votes
2answers
701 views
web.py on Google App Engine
I'm trying to get a web.py application running on GAE. I hoped that sth like the following might work
import web
from google.appengine.ext.webapp.util import run_wsgi_app
[...]
def main():
app ...
5
votes
2answers
3k views
webpy: How to serve JSON
Is it possible to use webpy to serve JSON?
I built my website and I need to serve some information in JSON to interact with the Javascript on some pages.
I try to look for answers in the ...
5
votes
3answers
261 views
web.py: How to selectively hide resources with 404s for any HTTP method?
I want to selectively hide some resources based on some form of authentication in web.py, but their existence is revealed by 405 responses to any HTTP method that I haven't implemented.
Here's an ...
5
votes
4answers
188 views
Is www.example.com/post/21/edit a RESTful URI? I think I know the answer, but have another question
I'm almost afraid to post this question, there has to be an obvious answer I've overlooked, but here I go:
Context: I am creating a blog for educational purposes (want to learn python and web.py). ...
4
votes
1answer
605 views
Webpy: how to set http status code to 300
Maybe it is a stupid question but I cannot figure out how to a http status code in webpy.
In the documentation I can see a list of types for the main status codes, but is there a generic function to ...
4
votes
2answers
547 views
Python equivalent of Sinatra
I know that many people use Sinatra when programming webapps in Ruby because they don't want their framework to get in the way by forcing them to use MVC.
Is there something similar in Python? I'm ...
4
votes
2answers
948 views
Random name generator strategy - help me improve it
I have a small project I am doing in Python using web.py. It's a name generator, using 4 "parts" of a name (firstname, middlename, anothername, surname). Each part of the name is a collection of ...
3
votes
1answer
121 views
Google analytics illegal cookie breaks Python backend
In my feed that is published to feedburner I have Russian characters in campaign name in tracking settings Feed: ${feedUri} ${feedName}. The problem is that it results as incorrect __utmz cookie set ...
3
votes
1answer
157 views
CookieError: Illegal key value
I use web.py, which internally uses the cookie.SimpleCookie class to load cookies incoming from the user's browser.
Occasionally, I get exceptions like:
...
File ...
3
votes
1answer
133 views
Python web app - synchronized serial access
I'm a java intermediate developer, python newbie and web-services uber newbie.
As a learning experience, I'm trying to realize a RESTful web service in python to remotely control a simple on/off light ...
3
votes
1answer
171 views
Changing the static directory path in webpy
I'd love to be able to change the webpy static directory without the need to set up and run nginx locally. Right now, it seems webpy will only create a static directory if /static/ exists. In my case, ...
3
votes
1answer
235 views
web.py todo list using sqlite invalid literal for int()
I was following the tutorial here http://webpy.org/docs/0.3/tutorial then looked around the webs to find out how to use the todo list part with sqlite and found this ...
3
votes
3answers
2k views
More efficient web framework than Web.py? Extremely Pythonic please!
I love webpy, it's really quite Pythonic but I don't like having to add the url mappings and create a class, typically with just 1 function inside it.
I'm interested in minimising code typing and ...
3
votes
3answers
1k views
Which is web.py killer app?
A killer app is an app that make a library or framework famous. I think web.py is quite famous, but I don't know any big, widely used app written in web.py.
Could you point out any? I've head that ...
3
votes
3answers
2k 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, ...
3
votes
0answers
781 views
Using WebPy as a static HTTP content server
How is it possible to tune up WebPy to use it to serve static content for several websites?
I run two websites on one IP using web.subdomain_application for name-based virtual hosting. The implied ...
2
votes
5answers
46 views
Identifying References in Python
I just spent a very long time debugging an issue in python, using the web.py framework, and it has me wondering about a way to check this kind of thing in the future.
In short, one of the methods of ...
2
votes
1answer
22 views
Response from WSGI application gets downloaded in browser instead of getting displayed
I'm trying to host a WSGI application (written in webpy, hosted on Apache) on Ubuntu server. Whenever I run my application, the JSON response gets downloaded instead of getting displayed in the ...
2
votes
1answer
88 views
Proof of concept RESTful Python server (using web.py) + testing with cURL
I am in the process of writing a proof of concept RESTful server using web.py
Here is the script:
#!/usr/bin/env python
import web
import json
def notfound():
#return web.notfound("Sorry, the ...
2
votes
3answers
125 views
How should I prevent abuse when using web.py's web.database?
I'm writing a quick web.py app and take data from web.input...
import web
urls = (
'/', 'something',
)
app = web.application(urls, globals())
db = web.database(dbn='postgres', db='database', ...
2
votes
0answers
51 views
How to stop webserver (implemented through web.py and threading)
I have implemented simple webserver using web.py.
And through multithreading module, I am able to run multiple instances of webserver listening on separate ports.
Now all the instnces are listening ...
2
votes
3answers
120 views
Web.py How to access render function in this case
I am new to Python and Web.py, but I am tearing my hair out over this issue. I have a code layout where I have my app.py file in the root of my site. All the pages are in a sub director, named pages. ...
2
votes
1answer
193 views
how to integrate pystache with web.py
Now, I use pystache in web.py in this way:
render = render_pystache('templates_dir')
class index:
def GET(self):
render.var('name', 'jim')
return render.simple()
...
2
votes
2answers
352 views
web.py + subprocess = hang
Here's my main file:
import subprocess, time
pipe = subprocess.PIPE
popen = subprocess.Popen('pythonw -uB test_web_app.py', stdout=pipe)
time.sleep(3)
And here's test_web_app.py:
import web
...
2
votes
1answer
632 views
How to serve file in webpy?
I am using webpy framefork. I want to serve static file on one of requests. Is there special method in webpy framework or I just have to read and return that file?
2
votes
1answer
297 views
How to dynamically fill a selectbox / dropdownbox in a form using web.py?
All web.py form examples are in the following format (from webpy.org):
myform = form.Form(
form.Textbox("boe"),
form.Textbox("bax",
form.notnull,
form.regexp('\d+', 'Must ...
2
votes
2answers
283 views
mod_python unable to locate the web.py module under a virtual environment
I have a small web.py Python application that I would like to serve under Apache using mod_python. The web.py framework, as well as other third-party Python modules the application in question relies ...
2
votes
1answer
204 views
i18n with webpy
i Have a problem with i18n, using webpy.
I have followed this : http://webpy.org/cookbook/i18n_support_in_template_file
So, in my .wsgi there is :
#i18n
...
2
votes
2answers
2k 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):
...
2
votes
2answers
208 views
Detect prematurely closed connection in web.py
Is there a way in Web.py to detect and handle connection being closed by user while the request is processing?
I tried setting unloadhook handler, but it doesn't get called in this case. It's only ...
2
votes
2answers
993 views
Thread specific data with webpy
I'm writing a little web app with webpy, and I'm wondering if anyone has any information on a little problem I'm having.
I've written a little ORM system, and it seems to be working pretty well. ...
1
vote
1answer
37 views
Input [type=file] returns empty value
I have a script that creates a popup with form according to webpy cookbook:
jQuery('#logo').click(function(){
var content = ('<h1>Upload logo</h1>' +
'<form method="POST" ...
1
vote
2answers
52 views
How to decode POST data from github in web.py?
(This question is related - but not the same - to this one)
This is the POST data that I get from a github hook:
...
1
vote
2answers
77 views
How to convert a string data to a JSON object in python?
Here is the sample string i am receiving from one of the web services,
...
1
vote
2answers
56 views
Hyperlinks in web.py
How do I make web.py fetch a page when I click on a link?
I have this in my template:
<a href='add.html'>Home</a>
When I click on 'Home', I get 'not found'.
In my application, I have ...
1
vote
1answer
46 views
Issue in webpy db select query
In webpy db module I have a query:
db().query("select * from table where column in ($ERROR_LIST)",
vars=dict(ERROR_LIST=ERROR_LIST)).list()
There is no issue with this query if the ERROR_LIST ...
1
vote
1answer
126 views
Web.py | yield data via POST and AJAX (generator function)
I am using the web.py framework to set up my website. When I click a button, I want to POST data to the server and then send back data via a generator function / yield. Basically yield data as it's ...
1
vote
1answer
73 views
Trying to make a login script with web.py
I'm trying to make a login script with web.py but i cant seem to figure it out!
I'm using MySQLdb for the database engine.
Here are the two approaches I have but neither seem to be working. if ...
1
vote
2answers
159 views
Why wont Web.py let me run a server on port 80?
Im trying to create a website with Web.py but its not letting me open a create a socket on port 80 but it works on every other port.
I have port forwarded and all that so that's not the problem.
...
1
vote
1answer
42 views
Implementing “is open now” filter for the list of venues in web app
I need to implement "is open now" filter for my website that lists venues, but I don't know where to start. My website is implemented using Python, webpy, MySQL database.
I have to store the opening ...
1
vote
2answers
99 views
web.py deployment for iOS app backend
I am currently developing an iOS application that needs a backend to pull data from. I have implemented the backend using Python, web.py and pymongo.
I deployed everything on an EC2 instance, ...