Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've coded a python script to update a dynamic IP in dyndns.org. Dyndns needs a petition like:

"http://"+dyndns_user+":"+dyndns_pass+"@members.dyndns.org/nic/update?hostname="+dyndns_host+"&myip="+ip

I was using urllib to process the request and it worked OK:

dyndns = "http://"+dyndns_user+":"+dyndns_pass+"@members.dyndns.org/nic/update?hostname="+dyndns_host+"&myip="
dyndns_update = urllib.urlopen(dyndns+newip)
dyndns_msg = dyndns_update.read()

But I read that urllib is Deprecated since version 2.6 in favor of urllib2, so I tried it:

dyndns = "http://"+dyndns_user+":"+dyndns_pass+"@members.dyndns.org/nic/update?hostname="+dyndns_host+"&myip="
dyndns_update = urllib2.urlopen(dyndns+newip)
dyndns_msg = dyndns_update.read()

The problem is: If I execute latter code in Linux works OK, but in Windows I obtain a URLError exception because apparently, urllib2.urlopen() is trying to parse the ":" in dyndns string as url port (and fails). If I execute former code (using urllib) the script works OK both in Linux AND Windows.

Anybody know what's happening? I believe that it's probably my fault, but the fact that the script works in Linux but not in Windows bothers me...

share|improve this question
1  
Read this link – Denis Mar 27 '12 at 9:51
Thank you, That was exactly my problem. I think I'll keep using urllib cause it's easier and I don't need extra features in urllib2. – Manuel Mar 27 '12 at 10:02
Yes. In the new version they are a bit complicated. – Denis Mar 27 '12 at 10:04

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.