-6
votes
1answer
55 views

How to develop Monitoring Website, technical analyse [on hold]

I have a special question well I need to know technologies behind monitoring website like pingdom.com What is the beneficial language to use to develop this platform ? what library we can use ? What ...
-1
votes
2answers
35 views

Getiing defferent results while accessing the same website at different locations? [on hold]

I was trying to access the same website at different locations, with different timezone and different ip addresses. The website responses differently, it seems that it was based on the ip address. How ...
1
vote
1answer
22 views

How send multiple HTTP Responses with Intervals from the Server using Python

Is there a way I can send multiple HTTP responses to a client, once a connection is open? For an instance, suppose it's a game server written in Python running on a PaaS like OpenShift. And a client ...
1
vote
2answers
29 views

is there a way to capture network calls a site makes using python?

I've looked and urllib(2), mechanize, and Beautiful Soup in hopes to find something that captures network calls such as pixel/beacon fires from a page. Unfortunately i'm not very familiar with any of ...
-3
votes
1answer
26 views

Using urllib2 cannot change HTTP method to PUT

Why can I not change method to PUT. Can I change to PUT without too many code changes? Here is my code: cj = cookielib.CookieJar() opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj)) ...
2
votes
2answers
26 views

How do I add data to http request

Here is my code: cj = cookielib.CookieJar() opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj)) urllib2.install_opener(opener) opener.add_data(json_data) #runtime error on this line r ...
0
votes
0answers
30 views

Where is the do_CONNECT method in goagent being called?

I am reading an early version of goagent, I don't know where is the do_CONNECT method being called. class GaeProxyHandler(BaseHTTPServer.BaseHTTPRequestHandler): ... def do_CONNECT(self): ...
-1
votes
1answer
17 views

How to get a callback notification when Http session expired

I am using python bottle with Beaker to manage Http sessions. So far I know how to set beaker session timeout parameters, and the sessions are cleaned automatically once expired, but I need to do ...
1
vote
1answer
53 views

Understanding Python HTTP streaming

I'm struggling to access a streaming API using Python and Requests. What the API says: "We’ve enabled a streaming endpoint to for requesting both quote and trade data utilizing a persistent HTTP ...
0
votes
0answers
25 views

Custom webbot development : response sent to program and mozilla differ for similar post requests

I am working on a personal project that involves fetching data from my universities servers. Unfortunately, the responses are not the same for the browser and the program. I am trying to post to ...
1
vote
1answer
13 views

Python requests arguments/dealing with api pagination

I'm playing around with the Angel List (AL) API and want to pull all jobs in San San Francisco. Since I couldn't find an active Python wrapper for the api (if I make any headway, I think I'd like to ...
1
vote
1answer
25 views

Browser caching and history with HTML/JSON route

I have a route in my application with a single URL which responds differently based on the Accepts header in the request. The idea is that if the URL is entered in a browser, an HTML template will be ...
1
vote
0answers
21 views

Keeping state between HTTP requests with python's BaseHTTPRequestHandler

I have a HTTP handler derived from BaseHTTPRequestHandler class MyHandler(BaseHTTPRequestHandler): do_GET(): ... The problem I've been having is that I'd like to report the state of my ...
0
votes
2answers
28 views

HTML Image Insertion Django

I'm working to build a django web application. I'm using adobe brackets for the html and I'm trying to use an image from my folders on the website. The image appears during the brackets simulation, ...
0
votes
1answer
34 views

How to Send Huge Files over HTTPPost Method in Python

I am tring to post huge .ova file through HTTPPost Method in Python **ResponseHeaders** Pragma no-cache Date Thu, 18 Jul 2013 11:17:13 GMT Content-Encoding gzip Vary Accept-Encoding Server ...

1 2 3 4 5 70
15 30 50 per page