web.py is a minimalist web framework for Python.
2
votes
3answers
343 views
EpicEditor text showing as instead of space
Not sure if this is an actual problem per se but I'm using Epic Editor to input and save markdown in my GAE application (webpy with mako as the templating engine).
I've got a hidden input element in ...
0
votes
1answer
108 views
Creating a multiple blogger website: need advice on web framework
I am trying to create a website from scratch. Originally, I hoped to be able to use WordPress. However, I'm not sure that it offers me the flexibility that I want, so I am hoping to put some time in ...
0
votes
0answers
209 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
106 views
which databases does web.py support?
I have searched in the web.py's doc. but I can't find which databases does the web.py support?
As I have known now, it support mysql, sqlite, postgres, does it support others?such like mongodb
0
votes
1answer
62 views
how to access values from the url using python
I am working with python web.py framework,i had an anchor tag with html code as below for example
<p><a href = "/edit.py?tr=%d"%1>Edit</a></p>
So when i click this link it ...
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 = ...
1
vote
1answer
234 views
Lighttpd fastcgi urls not rewritten
I have a lighttpd server with fastcgi and web.py with the following fcgi configuration:
fastcgi.server = ( "/code.py" =>
(( "socket" => "/tmp/fastcgi.socket",
"bin-path" => ...
0
votes
0answers
55 views
Session data being written, but not loading
I'm a complete Python newbie (but experienced coder) so please bear with me!
I'm running on Windows, with the latest AMPPS installed and I've installed Web.Py (along with the pre-requisite Flup & ...
1
vote
1answer
174 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
1answer
220 views
WebPy: AttributeError No template named index
Recently I have been trying to learn WebPy and when attempting to use a template in the tutorial (http://webpy.org/docs/0.3/tutorial) I come across this error when trying to access the page.
File ...
0
votes
0answers
170 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
2answers
87 views
Using PUT to receive an xml file in webpy
I am trying to receive an xml file through PUT in web.py, it is not working.Can any one explain what is the issue in the below code
import web
urls = (
'/', 'index'
)
class index:
def ...
0
votes
2answers
136 views
receiving a file through curl webpy
i need to receive an file through CURL in webpy
import web
import json
class GetFile:
def POST(self):
try:
i = web.input()
data = web.data()
except ...
1
vote
1answer
58 views
Session variables on Ruby when called through a Python web service
I have an app running on python web.py. For a couple of data items, I contact a ruby service. I was wondering if I could, in some way, keep track of the session in ruby as well.
Every time the python ...
0
votes
1answer
152 views
passing parameter to another method in python webpy
i am trying to pass the parameter to another method and i am getting an exception.
import web
import json
class Process:
def request(self, query_string):
print query_string
def ...
1
vote
2answers
97 views
using another class in webpy
I have to import another class in webpy
Web.py
urls = (
'/', "Home"
)
class Web:
def __init__(self):
app = web.application(urls, globals())
app.run()
home.py
class Home:
...
0
votes
1answer
189 views
simple hello world program gives issue in webpy
I am trying to use the webpy server and it works for the hello world if I try the same with the template it gives me this issue.
import web
render = web.template.render('templates/')
urls = (
...
2
votes
1answer
78 views
djnago or web to py for e-commerce & a normal website
I have to build an e-commerce website for a shopping system and a Content Management System website for a college.
I have to chose either Django or web to py with Python 3.x and for the backend I am ...
0
votes
1answer
125 views
Chunked encoding issue in web.py
I have my web.py application running. It receives POST request from outside. The request header contains 'transfer-encoding: chunked'. When i try to read the data with 'web.data()' the process starts ...
0
votes
1answer
104 views
use Flask-Cache in webpy. i got error <type 'exceptions.RuntimeError'> at xx working outside of request context
initial cache object code as follow:
pageCache = Cache()
cacheDir = os.path.join(path.dirname(path.dirname(__file__)),'pageCache')
pageCache.init_app(flaskApp,config={'CACHE_TYPE': ...
0
votes
1answer
54 views
How to configure Apache2 to enable error_log files per virtualHost using mod_wsgi?
I have multiple sites which are written in Python using web.py framework. I want to generate separate access logs and error logs files per site, i have enabled on Apache2.
How to achieve this ?
...
0
votes
1answer
276 views
How to display validation message on the browser in web.py python
I am using web.py framework for designing a small web application, presently i have created a login page and code is below
index.py
import web
from web import form
from web.contrib.auth import ...
1
vote
1answer
214 views
Using regex for validating a password in python web.py form validation
I am using python web.py framework for designing small web application, and trying to validate password field with concept that Password length must be more than five characters.
According to the ...
1
vote
2answers
442 views
how to get current request's url in webpy
I am using webpy framework. I want get current request's url in webpy.
please help me, thanks.
1
vote
1answer
357 views
concept of session and cookie in web development python
I am very new to web development, i am working on web.py framework to develop a small web application. suppose the login screen is localhost:9090/login, after the succesfull login it is redirecting to ...
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
99 views
TypeError: __template__() in web.py python framework
I am using python web.py framework to design a small web application following is my index.py code
index.py
import web
from web import form
import MySQLdb as mdb
render = ...
0
votes
1answer
168 views
unable to get values from a login page in web.py
I am using python web.py framework to create a small web application which has just
Login screen (Authentication)
Screen with list of records(After succesfull login)
Presently i am trying to ...
0
votes
1answer
34 views
How to find the path of a module by module name in python on fedora [duplicate]
Possible Duplicate:
Retrieving python module path
I am working on python,i installed web.py framework to develop small web applications
and installed successfully.
When i tried to import ...
1
vote
1answer
136 views
No module named auth error in python web.py
I am using the Python web.py framework to design a small web application.
As indicated in the tutorial, when working with authorization I tried the following in the
Python interpreter:
In [10]: ...
1
vote
1answer
181 views
Error in using python web.py framework
I am working on python, i want to develop some simple web application which consists of 3 pages(forms)
login screen which should validate username and password and redirect to 2nd page
If user ...
0
votes
1answer
105 views
Unable to setup web.py on apache2 using mod_wsgi
Here are my config files,
/etc/apach2/sites-availabled/currentcost
<VirtualHost *:20108>
ServerAdmin webmaster@localhost
DocumentRoot /var/www
WSGIScriptAlias /currentcost ...
0
votes
1answer
220 views
web.py form validation formatting
I'm following a web.py tutorial that is using the web.py form module. Basically, this little app creates a form consisting of a text box, does some validation to make sure it's a number and that it's ...
0
votes
0answers
169 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 ...
0
votes
2answers
145 views
web.py post variable from custom form
I'm new to Python web frameworks and chose web.py as a starting point.
I followed the tutorial on the web.py site and found how urls, POST, and GET work but I'm confused about how to use templates ...
0
votes
1answer
139 views
GAE can't import Web.py module in virtualenv
I'm trying to set up a Web.py (0.37) project in a virtualenv to run on Google App Engine (1.7.2) but I'm getting a ImportError: No module named web from the appserver.
I've installed web.py using ...
0
votes
1answer
79 views
Mapping user site to their own url in a web.py application
I'm coding a web app with web.py allowing users to add some html pages.
Currently, the pages are mapping like that:
webapp.com/user1/page1
webapp.com/user1/page2
webapp.com/user2/page1
...
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
1answer
265 views
How to deploy a simple python webserver in a right way?
I'm pretty new to python. I've started to learn a few lesssons, and for now, I'm trying to deploy a simple webserver based on web.py. Can someone help me and give an answer to these two questions:
I ...
3
votes
0answers
54 views
how to make a sub_application request in parent_application?
I have two web application: parent_app and sub_app
say that, http://www.some.com/parent.png will be handled by parent_app.
if it is refererd in another website, parent_app get a HTTP_REFERER, say ...
1
vote
2answers
313 views
Unpacking Argument Lists and Instantiating WTForms objects from web.py
After a bit of searching, I've found that it's possible to instantiate a WTForms object in web.py using the following code:
form = my_form(**web.input())
web.input() returns a "dictionary-like" ...
0
votes
1answer
438 views
web.py User Authentication with PostgreSQL database example
I am trying to copy and use the example 'User Authentication with PostgreSQL database' from the web.py cookbook. I can not figure out why I am getting the following errors.
at /login
'ThreadedDict' ...
1
vote
1answer
120 views
NoneType error while using gae and gaesessions in python 2.7
I recently attempted to migrate my GAE project from python2.5 to python2.7. Unfortunately, I have run into some issues with the required appengine_config.py file for gaesessions.
I can't tell if the ...
0
votes
0answers
267 views
Web.py on apache with mod_fcgid
I am trying to deploy a web.py application right now and am using apache with mod_fcgid on windows to do it. I have set up the httpd.conf file according to this guide on the web.py website, however I ...
0
votes
1answer
134 views
How to check browser compatibility
I've written a web app that uses features that make it incompatible with IE and require minimum versions of Firefox and Chrome. To check browser compatibility, I'm getting the User-Agent from the ...
1
vote
0answers
100 views
Running web.py on Dreamhost
I am trying to set up web.py on Dreamhost using this guide:
Web.py - Dreamhost Wiki
My problem is that many pages on this topic refers to fcgi.py and links to a svn repository that no longer exists. ...
1
vote
1answer
108 views
Accept large files in web.py app
I'm building an internal webapp to process DNA sequence data. I need to be able to accept a zipped file of several sequences that is often larger than 30MB and can be as large as 80MB.
I've ...
1
vote
1answer
245 views
Deviding Django application (social network) to Django Frontend and RESTfull API
I'm writing Django application (social network) and thinking about dividing monolithic project to two projects: UI and API. For example, Django will be used only to render pages, interacting with and ...
0
votes
2answers
357 views
Convert web.py iterbetter to dictionary or list
I'm trying to get the some data from a MySQL table (ipb_members) using web.py's database.select. This is the code I'm using: members = db.select("ipb_members", where="name=\"asdfquerty\"")
it returns ...
1
vote
1answer
148 views
Configuring apache2 conf for several python web.py apps
I am working on a small web dashboard -project that has backend implemented with python's web.py framework.
The dashboard has all sorts of widget's on it, one of which also has its backend ...