0
votes
1answer
46 views
I set a proxy server on urllib2, and then I can’t change it.
Like the title says, my code basically does this:
set proxy, test proxy, do some cool stuff
But after the proxy is set the first time, it sticks that way, never changing. This is …
0
votes
1answer
33 views
Python: appengine urllib2 headers from a 302
A normal urllib2 works fine:
>>> import urllib2
>>> r = urllib2.urlopen(u"http://bit.ly/4ovTZw")
>>> r.geturl()
'http://www.writing.com/main/handler/act …
0
votes
1answer
37 views
Convert gzipped data fetched by urllib2 to HTML
I currently use mechanize to read gzipped web page as below:
br = mechanize.Browser()
br.set_handle_gzip(True)
response = br.open(url)
data = response.read()
I wonder how to dec …
3
votes
1answer
42 views
Open web page with custom cookies in Python
Hi everyone.
For example, I have cookies
my_cookies = {'name': 'Albert', 'uid': '654897897564'}
and I want to open page http://website.com
opener = urllib2.build_opener(urllib …
0
votes
1answer
30 views
Client Digest Authentication Python with URLLIB2 will not remember Authorization Header Information
I am trying to use Python to write a client that connects to a custom http server that uses digest authentication. I can connect and pull the first request without problem. Using …
0
votes
0answers
31 views
Getting a myriad of socket issues while writing desktop Python bot.
The issue stems from the OAuth authentication portion of my code. I truncated a bunch of it and cut at the part where I get my error. My specific error is "gaierror: (11001, 'getad …
0
votes
3answers
115 views
Trace/BPT trap when calling urllib.urlopen
For some reason I'm getting a Trace/BPT trap error when calling urllib.urlopen. I've tried both urllib and urllib2 with identical results. Here is the code which throws the error:
…
2
votes
4answers
55 views
Python fetching <title>
I want to fetch the title of a webpage which I open using urllib2. What is the best way to do this, to parse the html and find what I need (for now only the -tag but might need mor …
1
vote
2answers
123 views
Get json data via url and use in python (simplejson)
I imagine this must have a simple answer, but I am struggling: I want to take a url (which outputs json) and get the data in a usable dictionary in python. I am stuck on the last …
0
votes
3answers
125 views
I am downloading a file using Python urllib2. How do I check how large the file size is?
And if it is large...then stop the download?
I don't want to download files that are larger than 12MB.
request = urllib2.Request(ep_url)
request.add_header('User-Agent',random.cho …
2
votes
2answers
92 views
Grab some ofx data with python
I was trying to use http://www.jongsma.org/gc/scripts/ofx-ba.py to grab my bank account information from wachovia. Having no luck, I decided that I would just try to manually cons …
0
votes
1answer
28 views
urlretrieve returns an empty file
I'm trying to use urlretrieve to download files from urls that take the form:
http://example.com/download.php?id=6456&name=foo
yet for some reason I just get an empty respons …
5
votes
4answers
337 views
How to download any(!) webpage with correct charset in python?
Problem
When screen-scraping a webpage using python one has to know the character encoding of the page. If you get the character encoding wrong than your output will be messed up. …
3
votes
5answers
196 views
urlopen error 10045, ‘address already in use’ while downloading in Python 2.5 on Windows
I'm writing code that will run on Linux, OS X, and Windows. It downloads a list of approximately 55,000 files from the server, then steps through the list of files, checking if the …
1
vote
4answers
90 views
non-blocking read/log from an http stream
I have a client that connects to an HTTP stream and logs the text data it consumes.
I send the streaming server an HTTP GET request... The server replies and continuously publi …
