web.py is a minimalist web framework for Python.
44
votes
12answers
6k views
Is switching from PHP to Python worth the trouble [closed]
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 ...
8
votes
3answers
4k 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 ...
4
votes
1answer
1k 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, ...
5
votes
2answers
211 views
Executing mathematical user code on a python web server, what is the simplest secure way?
I realise this question has been asked before, however this case is slightly different.
I want to run a python imageboard (using web.py), that will allow users to generate new images by submitting ...
0
votes
0answers
219 views
Downloading/exporting a csv file when clicked on a button in web.py python
I am using python web.py framework to build a small web app.
It consists of a
Home page that takes a url as input
Reads anchor text and anchor tags from it
Writes it to csv file and downloads it
...
1
vote
1answer
152 views
Web.py SQL queries giving odd data
I have been developing a small application in Python using the Web.py framework that does some simple PostgreSQL queries. I have noticed that the returned value contains a whole bunch of stuff which ...
21
votes
11answers
5k 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 ...
10
votes
2answers
7k 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 ...
9
votes
2answers
2k 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 ...
8
votes
2answers
2k 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 ...
1
vote
2answers
398 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, ...
1
vote
1answer
643 views
Content-Length is being stripped
I'm using webpy 0.34, python 2.6.6. I'm also using mimerender. I am trying to include the content-length in my http response, but for some reason the header is being removed. I say removed because I ...
1
vote
1answer
1k views
Web.py URL Mapping not accepting '/'
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. ...
2
votes
3answers
884 views
How do we precompile base templates in Cheetah so that #include, #extends and #import works properly in Weby
How do you serve Cheetah in production?
Guys can you share the setup on how to precompile and serve cheetah in production
Since we dont compile templates in webpy it is getting upstream time out ...
1
vote
2answers
970 views
session in webpy - getting username in all classes
I am using webpy framework for my project. I am logging in from my 'login' class of main.py program. I want to get the username in some other class. I tried with session and experimented with it for ...
2
votes
1answer
201 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:
...
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/
│ ...
2
votes
3answers
878 views
web.py database select access
I have been messing around with web.py lately and wanted to grab some stuff from a db and its returning me a "Storage" object. an the code i am using to call my info is:
db = ...
2
votes
1answer
4k views
InternalError: current transaction is aborted, commands ignored until end of transaction block
i am getting this error when doing database calls in a sub process using multiprocessing library.
http://pastie.org/811424
InternalError: current transaction is aborted, commands ignored until end ...
1
vote
2answers
197 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 ...
1
vote
1answer
80 views
webpy, how to extra add data to a form?
i need a form with "records" generated from the db.
For each DB record, in addition to form fields, it need to contain also images & record description, e.g.
<tr> <td> rec 15, ...
1
vote
2answers
936 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,
...
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
212 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
0answers
136 views
How to call a class url from html tags using python web.py framework
I am using web.py framework to design a small web application.
My index.py code
import web
from web import form
from web.contrib import auth
from web.contrib.auth import DBAuth
render = ...
0
votes
1answer
359 views
How to use radio buttons in python web.py
I am using web.py framework to create a simple web application
I want to create a radio button so written the following code
from web import form
from web.contrib.auth import DBAuth
import MySQLdb ...
0
votes
1answer
388 views
Python Extracting binary from a POST request using web.py
I am developing an API that allows outside clients to send a binary file which will be processed. my web.data() is a string and the function I am calling requires a binary. How do I get it into the ...
0
votes
1answer
579 views
Perfectly running python script gives error when run from web.py
I have the following python script which runs perfectly if run separately:
import arcpy
val = arcpy.GetCellValue_management("D:\dem-merged\lidar_wsg84", "-95.090174910630012 29.973962146120652", ...