web.py is a minimalist web framework for Python.

learn more… | top users | synonyms (1)

0
votes
1answer
107 views

web.py safeunicode function bugs?

I found a bug on web.py utils.safeunicode function. the version is 0.36 >>> import web >>> app=web.application(('/hello','hello'),locals()) >>> class hello: ... def ...
0
votes
1answer
618 views

Getting custom HTTP request headers in web.py?

I know that, with web.ctx.env, I can get a lot of information that comes from the headers -- but only the standard headers. Is it possible to obtain all HTTP request headers from within a GET or POST ...
1
vote
1answer
556 views

web connection with python

I have this code to create a webapp in my server: import web urls = ( '/update', 'Update', ) app = web.application(urls, globals()) class Update: print "hola" if __name__=='__main__': ...
1
vote
1answer
606 views

ImportError: no module named templates on Google App Engine with Web.py DESPITE having compiled templates

Using Python26 on Windows 7 and latest webpy. I copied the basic example (http://webpy.appspot.com/) for setting up Web.py on GAE, and followed the instructions for compiling templates for use with ...
1
vote
1answer
165 views

Running web.py app with custom cmd options

I would like to use web.py to build an http interface for some larger library, which also provides a command line script that takes optional parameters. When I tried the simple web.py tutorial ...
0
votes
1answer
361 views

uwsgi web app with cron tasks?

I wrote an app using webpy (webpy.org). Part of this web app is recurring background tasks for statistical functions. I used APScheduler python library to perform cron style schedules. Because ...
1
vote
3answers
375 views

Not able to get web.py sessions to work using python 2.6 on OS X

I can not seem to get this script to work: import web web.config.debug=False urls = ( '/', 'hello', '/bye/', 'bye') app = web.application(urls, globals()) session = web.session.Session(app, ...
0
votes
1answer
226 views

webpy with nginx + mod_wsgi template file cannot be found

I am using webpy with nginx + mod_wsgi. To import modules(controllers etc.), I wrote curdir = os.path.dirname(__file__) sys.path.append(curdir) in app.py, and corresponding nginx configuration is ...
1
vote
2answers
122 views

How portable (or not) is using SQLLiteral(“NOW()”) in web.py DB INSERTs?

I know this works fine if my database is MySQL. And maybe others. seq_id = db.insert('mytable', first="Bob",last="Smith",joined=web.SQLLiteral("NOW()")) Well, right now, the database customers will ...
0
votes
1answer
234 views

Can web.py be set to use the server's 404 page?

I have a server (nginx) which is routing some urls to static directories, and others to a web.py wsgi app. The server's config also defines a 404 page, which is displayed when somebody tries to visit ...
0
votes
1answer
284 views

How to run web.py server inside of another application

I have a little desktop game written in Python and would like to be able to access internal of it while the game is running. I was thinking of doing this by having a web.py running on a separate ...
0
votes
1answer
278 views

How does web.py handle url mapping?

edit - the question was not properly researched. The problem turned out to be that the map was not being matched against the url I thought it was. I understand basically how the mechanism works: ...
0
votes
1answer
167 views

Web.py Templator Dictionaries

I'm having problems getting data from a dictionary that I pass to the templator in web.py. For example, when I render with return render.resp({'foo':'bar'}) Then in my template try $def with ...
1
vote
2answers
122 views

What is the possibility of using a Python app, deployed online, that has access to a users local disk?

I currently have a local python application that scans a users drive, maps it into a tree and displays this information with javascript. I would really like to try to develop something with a Drop-Box ...
2
votes
3answers
872 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 = ...
0
votes
2answers
145 views

How to transfer message between different request in web.py?

In web.py, I use web.seeother() to redirect to another page, is there a way to transfer some message to that page too?
1
vote
1answer
90 views

Few lines from app.py script I don't understand

So I understand here that python is assigning the render variable to web.template.render, but I don't really get what it's doing in english. My templates directory is being "called" (is this the right ...
1
vote
1answer
152 views

Putting python code online- confusion with my app.py script

So I'm getting into the process of putting some of my first python code online and I'm a little fuzzy about some things. When we assign app to web.application(urls, globals()), what is going on ...
0
votes
1answer
183 views

Logging web.ctx

I'm using web.py & python's logging module. I would like to log add lots of logging. To make things more useful, I would like to add as standard the ip address of the client to the logging format ...
0
votes
1answer
464 views

How to make web.py and jQuery UI work together?

Can jQuery UI be used with web.py? With jQuery and web.py, you can trigger events using jQuery or $$ (because $ is used by web.py for template variables) - but the same does not seem to be true with ...
2
votes
1answer
495 views

python web.py form - not getting any value

I'm testing web.py and forms but I cant get any value in return. This is the code: import web from web import form class add: def GET(self): f = login() return render.formtest(f) ...
0
votes
1answer
100 views

what kind of situation will we use the 'load hook' and 'unload hook' of the framework?

i'm learning webpy through this tutorial: http://webpy.org/cookbook/application_processors when i see this article i got confused,the two hooks seems like two methods that the web framework can ...
0
votes
1answer
128 views

How to skip default encoding done by web.py render or what is the best way to decode it as JSON variable?

I have a python dictionary being passed to javascript in web.py framework. The double quotes in the dict are replaced by special characters and I am unable to get back to original format. Is there any ...
0
votes
1answer
1k views

Web.py todo list with login

I try to add a login functionality to the web.py todo example. This is my code: """ Basic todo list using webpy 0.3 """ import web import model ### Url mappings urls = ( '/', 'Index', ...
0
votes
1answer
150 views

Multiline html variables in webpy

I have a snippet in template like this: $ html = """<p id="address"> Адрес: <span id="postcode">123456</span>, <span id="city">Москва</span>, <span ...
2
votes
1answer
370 views

Web.py todo list example but with database in memory

First of all I must say I am a complete newbie to web.py. I want to modify the todo list example to use a database in memory instead of using mysql. I ended up writing: import web db = ...
5
votes
1answer
525 views

Web Form with Web.py on PythonAnywhere

I'm trying to make a simple web script using the PythonAnywhere.com's web.py platform. My intention is to create a simples Form which gets the data of textboxes and is able to work with them just like ...
0
votes
1answer
120 views

Web.py: passing varibles into <iframe>

Is it possible to pass a varible into and out <iframe>? The problem is that i have data display in <iframe>, but all controls and data-sending / recieving scripts in parent frame.
1
vote
3answers
237 views

Where should I store variables between calls to web.py?

I am trying to cache some API responses in my website (written with web.py). Thus I want to save a variable somewhere on the server side between different calls to my webserver. Were is the best ...
2
votes
5answers
99 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
148 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 ...
0
votes
2answers
212 views

Rendering a page after jQuery POST

I have a problem with web.py. Basically the user clicks a button, which makes a POST request to the server. The POST request returns "render.edit()", which is short hand for rendering the "edit" ...
1
vote
1answer
240 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
1answer
428 views

Get upload status in webpy

I'm making an uploader for my project, and I try to avoid any flash-based solutions (I dont like flash much and target for mobile platforms support). The whole process seems rather simple: I have a ...
0
votes
3answers
232 views

How to make URL routing execute after StaticMiddleware in web.py

I have a URL route in my web.py application that I want to run to catch all URLs that hit the server, but only after any static assets are served. For example, if theres is js/test.js in my static ...
0
votes
1answer
186 views

Why POST gets two arguments?

I have a server-side webpy code like this: urls = ( '/home', 'homePage', '/clients/(.*)', 'clientsPage', ) # Class for common pages methods and parameters class allpages(object): .... ...
1
vote
2answers
664 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: ...
4
votes
1answer
2k 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 ...
0
votes
2answers
207 views

How to access a logger object from other modules in a web application

I have my main.py as follows: import logging import os import web def is_test(): if 'WEBPY_ENV' in os.environ: return os.environ['WEBPY_ENV'] == 'test' app = web.application(router.urls, ...
1
vote
2answers
915 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
1k views

How to check if sql query result is empty in web.py/python

I'm working on a web application in the web.py framework and need a way for web.py/python to check if the result of a sql query is empty. Here's my current function: def get_hours(): result = ...
0
votes
1answer
586 views

Python Tornado Request Handler Mapping

I'm just getting started with Tornado and I was wondering how i can define a mapping so that all requests like below are are handled by a single handler. /products/list /products/find/123 ...
2
votes
2answers
331 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
votes
1answer
1k views

Authentication in web application [closed]

I'm making my first web app (python+webpy+mongodb). What's the best way to make authentication module? Should I save login to cookies, or just keep login/pass in variables? Do i have to make every ...
1
vote
2answers
159 views

MySQL Not Properly Storing Ciphertext Produced from the PyCrypto Library

I'm building an application in web.py, but am having some trouble when it comes to storing encrypted data in MySQL. PyCrypto creates cypher text that looks ...
2
votes
3answers
515 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', ...
1
vote
1answer
186 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 ...
0
votes
1answer
644 views

Recieving variable from webpy POST via jQuery.ajax

In my webpy app I have a function: def POST (self): signal = web.input()['signal'] if signal == 'next': errMessage = self.cinstall.testConnection() print ...
0
votes
1answer
333 views

How to manage db connections using webpy with SQLObject?

Web.py has its own database API, web.db. It's possible to use SQLObject instead, but I haven't been able to find documentation describing how to do this properly. I'm especially interested in ...
0
votes
2answers
983 views

How to get data from jQuery script (web.py)?

I can't find any tutorial for jQuery + web.py. So I've got basic question on POST method. I've got jQuery script: <script> jQuery('#continue').click(function() { var command = ...

1 3 4 5 6 7 9