web.py is a minimalist web framework for Python.
0
votes
0answers
18 views
Can I get a callback during the main loop of a WebPy server?
Lets say I have a very simply webpy script
import web
urls = (
'/', 'index'
)
app = web.application(urls, globals())
class index:
def GET(self):
i = web.input(name = 'web')
...
0
votes
1answer
21 views
vars in web.py layout template are all strings?
code.py:
true_var = True
return render.edit(some)
edit.html:
$var true_in_layout: $true_var
layout.html:
$def with(ctx):
$if ctx.true_in_layout == True:
$#pass
the question is if I want ...
0
votes
0answers
6 views
How to create a webpy 0.3 form field to get date of birth?
I need to create a registration form in webpy framework. As the form feature of web module have a definite format, I couldn't create the date of birth field.
How to make a webpy form with a field to ...
0
votes
1answer
11 views
OPTIONS Request instead of PUT in XMLHTTPRequest
I trying to do the html+javascript part of a web service in REST. With this code as example:
<!DOCTYPE html>
<html lang="en"
<script type="text/javascript">
function testPut( url ){
...
-1
votes
0answers
17 views
I want to run a WebPy server on port 8080 using DDNS of dlink router and i need to access this site from internet. How can I do it? [closed]
i have two major issue with setting up a web server using my dlink DIR-600L router.
Issue 1:-
I run a WebPy server on port 8080. But the DDNS service providers (like dlinkddns.com or dyndns.org) ...
0
votes
0answers
20 views
Return data from submitted form targeted to iframe
I have a web.py application with which i have implemented a form that uploads a file to my server via post with the target set as an iframe in my page. This works a charm but I want to be able to send ...
-1
votes
1answer
18 views
How to upload file with Web.py+phonegap
I'm using web.py as a RESTful server for my project,and now I'm faced a problem is how to upload file.
In the Phonegap offical document,i found the example ,but it was written by PHP,on the server ...
0
votes
1answer
24 views
Fabric deployment with virtualenv - which user?
I'm trying to deploy an "app" written on top off web.py with fabric on a VPS running Arch Linux.
But I'm confused about best pratices regarding Fabric and virtualenv: which user should I use to ...
0
votes
0answers
17 views
Faceted search with session dictionary in Python
Using web.py I am trying to build a website able to search the autoscout24.de using its API (autoscout24 is a german car sales website). I am now able to get some results from the API and display them ...
-1
votes
1answer
28 views
postgres not recognizing password [closed]
I am trying to make an application that reads from a database using webpy. When I run python code and try to access localhost from browser I am getting
>
class 'psycopg2.OperationalError' at /
...
0
votes
0answers
28 views
Print postgresql query field types web.py
When executing a query in web.py using a PostgreSQL database, is there anyway to get the type names of the fields that are returned? This is my code so far:
# queryString set above
result = ...
1
vote
1answer
20 views
Authenticating with imaplib.IMAP4 and OAuth without OAuth2
I'm using web.py to build a simple server that learns on a user's gmail messages. I've gone through the OAuth flow using the rauth library and I now have the access token. I now want to use imaplib to ...
0
votes
2answers
58 views
Global variable usage with web.py in Apache
I have come across a strange problem when I configured my web.py code with Apache.
I have 3 variable which I need to use across 2 classes. I used to handle this using global variables but ...
1
vote
1answer
43 views
How to redirect to another handler in web.py from a POST method
The project is a simple web crawler and and search engine. The "Index" handler has a form for entering the domain to search and the term to find. I would like the POST method to redirect to the ...
0
votes
1answer
31 views
Effectively use query results using web.py
I am using web.py for managing my web application and using MySQL as the database. I make a raw query and get the results and i convert it to a list and iterate over it. I need to push the retrieved ...
0
votes
1answer
45 views
dealing with web.py sessions with subapp?
I have read http://webpy.org/cookbook/sessions_with_subapp.
The session works fine while I
have only one app, but when I create a sub app, I am encountering error ~ ,details below:
The main.py:
...
0
votes
1answer
55 views
how to deploy two web.py apps using uwsgi?
I am going to make some work with web.py, i dunno how to deal with two apps while
deploying with uwsgi. below is my work.
my dir tree, two simplest apps:
├── index
│ └─── index.py
└── index2
...
0
votes
2answers
77 views
web.py: Get the original web request
I need to access to the original http request that the browser send to the server in web.py.
E.g., this is the request that Chromium issues when I surf to some page:
$ nc -l 8081
GET / HTTP/1.1
...
0
votes
1answer
29 views
error 404 on web.py subapps. How to handle urls?
last time I wrote the answer was fast and efficient, so here I go again.
I got these 3 files, 2 .py and an html. The thing is that for some reason I get an error 404. It's clearly my url handing the ...
0
votes
0answers
26 views
reading value from user to read rss feeds in web.py getting error
i want to read URL Value of rss feed from user and then get data from respective feed. For that i m using web.py and form value but i am getting error
"need more than 1 value to unpack"
my web.py ...
0
votes
0answers
50 views
Python web.py hasattr not defined[solved]
If my explanation is lacking, please look here as well: https://github.com/webpy/webpy/issues/199
In this instance, I am trying to hide/show certain elements in the layout based on certain variables.
...
0
votes
2answers
60 views
list Index error
UPDATED -
Hi i have "half" a problem with my web development:
I have this method in a class which takes a value from a database call, (the table in the database has a key: catId and another field)
...
0
votes
1answer
34 views
Can't make categories in my webpy blog, bad default value use, using browser direction bar input like alias
I'm trying to make categories in my self-developed blog with webpy
I try to make :
mywebpage.com/c/categorieName
be the input that shows the categorie (like an alias ?¿?)
urls = (
...
1
vote
1answer
48 views
error 405 web.py
I got an error 405 as you can read, here is my code and my guess of what's wrong. The code is pretty basic, they are 3 files, main.py, blog.py, and form.html. As additional info: this code uses ...
2
votes
1answer
65 views
Same template across multiple pages in web.py[solved]
I am having difficulty understanding how to do a site layout with the same template across multiple pages (PLEASE don't just link me to the 'site layout cookbook' on the Web.Py page. It only uses a ...
0
votes
2answers
63 views
SCRIPT_NAME does not match REQUEST_URI with web.py in apache cgid module
I am trying to deploy my web.py application in Apache with mod_cgid module.
I have defined the urls like this in urls.py
urls = (
'/app/', 'index.index',
'/', 'index.index'
)
This is where ...
0
votes
1answer
36 views
bad use of variables in db.query
Hi i'm trying to develope a blog usign webpy,
def getThread(self,num):
myvar = dict(numero=num)
print myvar
que = ...
0
votes
2answers
69 views
how to set synchronous transmission under reverse proxy using nginx?
I'm using reverse proxy with Nginx.
When I POST a file to the Nginx, it seems that it will store the whole file in local and forward it to the backend server after received the whole file.
Is there a ...
0
votes
2answers
53 views
Github api v3 access via python oauth2 library - Redirect issue
Environment - Python 2.7.3, webpy.
I'm trying a simple oauth 3 way authentication for github using Python web.py. Per the basic oauth guide on github I'm doing something like this:
import ...
0
votes
1answer
42 views
web.py doesnt detect GET method
I am a noob to both python and web.py worlds.
I just created three files
urls.py
url_mappings = (
'/', 'index'
)
index.py
class index:
def GET(self):
return "<h1>Hello ...
1
vote
2answers
136 views
How to specify the previous page for browser back button
I am creating a web application.
I have a landing page which the user sees after logging in.
From the landing page they can click a link to go to detail page.
The detail page loads data for the ...
0
votes
1answer
59 views
Nginx+web.py+fastcgi error: not found
The error is not found, and the Nginx has no errors, I have checked the /var/log/nginx/error.log file, it's empty. so where is the error come from ??
the python file named app.py, it's excuable, the ...
0
votes
1answer
113 views
Using JSON-RPC call from Pyjamas/PyJs with a web.py backend
This has already cost me many hours of Googling and I still cannot get it working, time to ask SO for help :-)
I try to put together a simple test application where the frontend is written in ...
0
votes
1answer
70 views
web.py obtain request headers
im starting with python and web.py
im trying to build a REST api with it.
i know hoy to use the basics of web.py
but i still can figure a way to get the Content-Type of a request
i got this post ...
0
votes
1answer
39 views
What does “render._keywords['globals']['render'] = render” mean in web.py skeleton code?
What does "render._keywords['globals']['render'] = render" mean in web.py skeleton code?
http://webpy.org/skeleton/0.3
1
vote
1answer
126 views
how can I use uwsgi web.py to run background function?
Say I need to send an email to myself when there is new comment.
and I don't want to block web.py presenting HTML to browser.
and Threading seems don't work here.
class comment:
def POST(self):
...
0
votes
1answer
51 views
web.py templator passed jsons not being parsed correctly in javascript
I am using web.py and templetor and passing a variable full of jsons to javascript embedded in the templetor file. These jsons are to be consumed by D3.
Python Code
for row in rs:
...
0
votes
1answer
38 views
I get a 404 error in web.py when using /(.+) (Newbie Q)
here is my code and my issue.
import web
render = web.template.render('templates/')
urls = (
'/(.+)', 'index'
)
class index:
def GET(self, lang):
return render.index(lang)
...
1
vote
1answer
61 views
What is the purpose of passing “globals()” as web.py fvars?
web.application accepts an undocumented fvars argument to which the web.py tutorial passes globals() like so:
import web
class index:
def GET(self):
return "Hello, world!"
urls = (
...
1
vote
0answers
51 views
Webpy and Facebook Graph API
I am writing a simple python web service to get content out of Facebook Graph API. Now while testing I had written everything together in one single python class and it was working fine. Now that I ...
0
votes
0answers
214 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
...
0
votes
1answer
155 views
How to achieve pagination with results from a list in web.py python
I am using python web.py to design a small web app , here actually i am not using any database for fetching results/records, i will have a list of records(which i will get from some where according to ...
0
votes
1answer
64 views
How can I preserve line breaks in a string when using web.py to generate HTML from a template?
I'm using web.py to generate HTML pages using templates.
The HTML template is like this:
$def with (scene)
...
<p id="descriptions">
$scene.descriptions[scene.status]
</p>
Some ...
0
votes
1answer
144 views
Correct way to serve a dynamic image in Python/Web.Py using PIL
I need to have a Python file act as if it's an image. i.e. The path to the Python file will be used inside an tag of a web page. The Python file will dynamically create an image using PIL (no ...
0
votes
1answer
41 views
Using web.py's web.database with MyISAM
I have a web.py app that's using web.database for its DB work. It's running on a low-powered VPS, so I turned off InnoDB to save resources. However, when I try to access the database, I get this ...
0
votes
1answer
64 views
Web.py daemon communication
I try to create a web server using web.py in order to talk with a daemon.
The goal is to send commands via HTTP to my web.py (executed in a thread opened by my main daemon); then use a pipe to ...
0
votes
1answer
120 views
how to import named web in python
I tried web.py installing on Windows -64bit-
I didn't install.
Error : " ImportError: No module named 'utils' "
from __future__ import generators
import utils, db, net, wsgi, http, webapi, ...
0
votes
1answer
31 views
String concatenation in templating webpy [closed]
i want to add a string and variable
here is my python code
$ tables = ["aapl","goog","bac"]
$for i in tables:
$values[$i+'_per']
$values is a dict and its ...
0
votes
1answer
68 views
Trying to host a persistent web app using EC2
I just created a lightweight web.py web app that I was able to successfully host on an Amazon EC2 instance. I am able to serve the webpage just fine with the following command:
python bin/app.py ...
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 ...





