Tagged Questions
1
vote
1answer
32 views
Google App Engine: Response “Content-Length” header is always 0
I followed the Google App Engine tutorial and I'm having a bit of trouble with adding content to the response object in the guestbook class.
class Guestbook(webapp2.RequestHandler):
def post(self):
...
0
votes
1answer
40 views
data request string python
After a post request with data at a site
f = urllib.request.urlopen(request,data)
i get back a responce and after
res = f.responce.read().decode()
i get a type type(res) <class string> ...
0
votes
0answers
27 views
python socket & HTTP server response: sending non-text files via http protocol [duplicate]
Im trying to write my own little HTTP-server on python. At this moment it successfully sends to browser only text/html pages. Now i want it to sent images (favicon.ico for example), but i dont know ...
0
votes
1answer
71 views
What could cause the response body to be cut off (on client-side)?
I am writing a python language plugin for an active code generator that makes calls to our Rest API. After making many attempts to use the requests library and failing, I opted to use the much lower ...
0
votes
0answers
25 views
Is there an existing library or example for mapping django response objects to models?
I'm writing a dynamic proxy to be used as a test harness for a number of REST services. It will work by exposing endpoints for each proxied service that match the URI structure of the target, then ...
0
votes
0answers
164 views
Request / Response with Mechanize in Python 2.7
I'm using the Mechanize module in Python 2.7. I've logged into the site I'm trying to access and pulled HTML from behind authenticated pages. The site uses AJAX / JavaScript to post some values in ...
3
votes
1answer
426 views
Python and AJAX - HTTP Response
I'm trying to answer an ajax-request with a python script. The ajax-request sends a json-object just like follows:
$.ajax({
url : "cgi-bin/mycgi.py",
type : "POST",
data : ...
0
votes
2answers
154 views
Raspberry pi 'Response IndentationError'
I have been looking at a tutorial on how to send sms texts through the rasp pi. Here is the code that I have and I'm not sure why I have an error.
#!/usr/bin/python
...
0
votes
1answer
115 views
Redirect and requests in flask microframework
Is there any difference in the way redirects and requests are handled in the flask micro-framework? I have a bunch of functions which are to be run before a request is made but apparently they are not ...
-2
votes
2answers
86 views
Python, response and if statement
I am writing a program that sends command codes to a serial device and gets a response from the device, then sends another command. I can send the commands perfectly, and even get a response. However, ...
0
votes
2answers
66 views
python imaplib unexpected response 220
I have the following line of code using imaplib
M = imaplib.IMAP4('smtp.gmail.com', 587)
I get the following error from imaplib:
abort: unexpected response: '220 mx.google.com ESMTP ...
1
vote
1answer
244 views
python telnetlib module: reading and waiting for responses
I am having a similar problem to this poster:
Python telnetlib: surprising problem
Note the response and my response below it.
Essentially telnetlib is not letting me read an entire response when ...
0
votes
2answers
99 views
How can I rename a file in a Python Pyramid Response object? [duplicate]
Possible Duplicate:
How to set file name in response
I store files in MongoDB. To serve a file from Pyramid, I do this:
# view file
def file(request):
id = ...
-3
votes
1answer
77 views
getting responses from a django view with ajax
I have an online order form and im trying to post it with ajax. But i have a problem with getting validation responses from view. I'm trying to validate min order value , payment type etc. So I need ...
1
vote
2answers
272 views
ssl handshake failure error in scrapy python
Presently i am working on scrapy and following is my spider.py code
class Example(BaseSpider):
name = "example"
allowed_domains = {"http://www.example.com"}
start_urls = [
...
0
votes
2answers
135 views
Scrapy is not downloading the tags from the responses
I am presently working on scrapy, below is my spider.py code
class ExampleSpider(BaseSpider):
name = "example"
allowed_domains = {"careers-preftherapy.icims.com"}
start_urls = [
...
1
vote
1answer
75 views
Receive HTTP request in one Python process, reply from another
Can I "move" response object somehow from one process to another?
The first process is a non-blocking server which does some other IO. It needs to be done in a non-blocking environment like Tornado ...
0
votes
2answers
403 views
Django “The view didn't return an HttpResponse object.”
I have a very basic view where I'm saving a form. For some reason I keep getting a "view didn't return an HttpResponse object" error. I looked at this common issue here but haven't found a solution ...
0
votes
2answers
173 views
How to write inline files in a Makefile
I've seen some shell scripts in which they pass a file by writing the contents of the file in the same shell script. For instance:
if [[ $uponly -eq 1 ]]; then
mysql $tabular -h database1 -u ...
0
votes
1answer
533 views
How to set file name in response
I know about content-disposition but I read what it uses for email messages. And I want to know how I can set file name with content-type.
ps I use Pyramid framework
edit:
Web site has button ...
0
votes
1answer
221 views
Middleware class being create but process_template_response not executed
I have defined a middleware class. and i have added it to the middleware_classes attribute in setting. When a request comes in, the middleware class gets created (the debugger catches the code when ...
1
vote
3answers
380 views
Django: only blank page
I have a server with Apache and I would like to start website written in Django. I user mod_wsgi. Now I have it prepared. But the respond of a server is empty. And in error log, there is nothing. Do ...
0
votes
4answers
639 views
Standardised JSON response from views
When my page POSTs a form to my Django view, the view returns a response with some data but soon I ran into the issue that my views returned data in different formats and different sets of ...
1
vote
0answers
210 views
Why do I got “KeyError: template_name” when serializing a Django Response object?
The cache middleware must pickle the Response object but sometime when it does, it fails:
[...]/.virtualenvs/project/lib/python2.7/site-packages/django/template/response.py in __getstate__
...
1
vote
2answers
368 views
Django: Shut off console output of http response messages
So we made an app with django and it prints all these http response messages on the console everytime it gets a request.
[Date String] 'GET /urlpath/..blah blah ' 200 216
[Date String] 'DELETE ...
2
votes
2answers
3k views
Suds: Type not found on response
I'm having a hard time getting a python SOAP client based on suds to parse a response: the client is constructed correctly and parses the WSDL just fine. As far as I can see there are no imports in ...
0
votes
2answers
2k views
What is the proper format for a JSON Response?
I've worked with several different APIs where I needed to parse JSON. And in all cases the Response is constructed a bit differently.
I now need to expose some data via a JSON API and want to know ...
0
votes
3answers
269 views
How can i ignore server response to save bandwidth?
I am using a server to send some piece of information to another server every second. The problem is that the other server response is few kilobytes and this consumes the bandwidth on the first server ...
2
votes
2answers
683 views
Python Webserver: How to serve requests asynchronously
I need to create a python middleware that will do the following:
a) Accept http get/post requests from multiple clients.
b) Modify and Dispatch these requests to a backend remote application (via ...
7
votes
2answers
374 views
WSGI request and response wrappers for Python 3 [closed]
Are there WSGI request and response wrappers for Python 3?
WebOb looks nice (although there is some critique), but it seems to be written in Python <3. Werkzeug seems also to be written in Python ...
0
votes
1answer
153 views
add extra data to response object to render in template
İ ned to write a code sniplet that enables to disable connection to some parts of a site. Admin and the mainpage will be displayable, but user section (which uses ajax) will be displayed, but can not ...
0
votes
1answer
376 views
Pylons: response renaming? Is there a better way?
I've got a Pylons controller with an action called serialize returning content_type=text/csv. I'd like the response of the action to be named based on the input patameter, i.e. for the following ...
8
votes
5answers
12k views
Python urllib2 Response header question
I'm trying to extract the response header of a URL request. When I use firebug to analyze the response output of a URL request, it returns
Content-Type text/html
however when I use the python code
...
