1
vote
2answers
671 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
934 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
1k views

how to import / add module named web in python

import web ImportError: No module named web in below code: import web urls = ( '/(.*)', 'hello' ) app = web.application(urls, globals()) class hello: def GET(self, name): ...
3
votes
1answer
353 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 ...
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 ...
0
votes
3answers
916 views

Access files from web.py urls

I'm using web.py for a small project and I have files I want the user to be able to access in /files directory on the server. I can't seem to find how to return a file on a GET request so I can't work ...
12
votes
4answers
2k 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 ...