4
votes
1answer
44 views
How to auto log into gmail atom feed with Python?
Gmail has this sweet thing going on to get an atom feed:
def gmail_url(user, pwd):
return "https://"+str(user)+":"+str(pwd)+"@gmail.google.com/gmail/feed/atom"
Now when you …
2
votes
1answer
22 views
parse query string with urllib in Python 2.4
Using Python2.4.5 (don't ask!) I want to parse a query string and get a dict in return. Do I have to do it "manually" like follows?
>>> qs = 'first=1&second=4&thi …
0
votes
1answer
38 views
Python won’t refresh URL to receive new forex ticker data
Hello,
I am trying to save updated Forex ticker data from this website: http://forex.offers4u.biz/TickDBReadDB.php?p=EURUSD
just hit refresh to update the ticker.
when I use my …
0
votes
2answers
20 views
How to ignore “Enter username for Private Proxy Access” prompt?
Hello, I'm using urllib.urlopen with some http proxies and sometimes (probably when they require authorization) I get the following prompt printed into the console:
Enter username …
0
votes
1answer
49 views
relevent query to how to fetch public key from public key server
import urllib
response = urllib.urlopen('http://pool.sks-keyservers.net/')
print 'RESPONSE:', response
print 'URL :', response.geturl()
headers = response.info()
print 'DATE …
0
votes
3answers
117 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:
…
3
votes
2answers
85 views
In Python, how do I use urllib to see if a website is 404 or 200?
How to get the code of the headers through urllib?
2
votes
1answer
89 views
How to percent-encode url parameters in python?
If I do
url = "http://example.com?p=" + urllib.quote(query)
It doens't encode "/" to "%2F" (breaks OAuth normalization)
It doens't handle unicode (it throw an exception)
is …
1
vote
2answers
54 views
parse.unquote_plus TypeError
I'm trying to format a file so that it can be inserted into a database, the file is originally compressed and arround 1.3MB big.
Each line looks something like this:
398,%7EAno …
0
votes
4answers
57 views
TypeError: cannot concatenate ‘str’ and ‘instance’ objects (python urllib)
Writing a python program, and I came up with this error while using the urllib.urlopen function.
Traceback (most recent call last):
File "ChurchScraper.py", line 58, in <module …
0
votes
3answers
55 views
how to open a URL with non utf-8 arguments
Hello,
Using Python I need to transfer non utf-8 encoded data (specifically shift-jis) to a URL via the query string.
How should I transfer the data? Quote it? Encode in utf-8?
T …
0
votes
2answers
69 views
Python MultiThreading With Urllib2 Issue
I can download multiple files quite fast with many threads at once but the problem is that after a few minutes it tends to slow down gradually to almost a full stop, I have no idea …
2
votes
4answers
997 views
Python: get http headers from urllib call?
does urllib fetch the whole page? when a urlopen call is made?
I'd like to just read the http response header without getting the page it looks like urllib opens the http connec …
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 …
0
votes
1answer
34 views
How can I bind secondary IP address to urllib2
My server comes with one primary and five additional IP addresses. By default, urllib2 requests are all from primary IP addresses. How can I bind those secondary IP addresses to ur …
