import urllib
url = 'https://127.0.0.1:123/?action=actionName=true'
res = urllib.urlopen( url )
text = res.read()
print text
import requests
res = requests.get( url )
print r.text
<h1 class="title">
<a href="http://habrahabr.ru/post/233297/" class="post_title">Опыт работы эникейщиком/системным администратором в бюджетной организации</a>
<a href="/sandbox/" class="flag flag_sandbox" title="Перейти в песочницу">из песочницы</a>
</h1>
import re, urllib
if __name__ == "__main__":
web_page = urllib.urlopen("http://2ip.ru")
web_page = web_page.read()
ip = re.findall("(\d+\.\d+\.\d+\.\d+)", web_page)[0]
username = 'username'
password = 'password'
host = 'host'
update = urllib.urlopen("http://"+str(username)+":"+str(password)+
"@dynupdate.no-ip.com/nic/update?hostname="+str(host)+"&myip="+ ip)
res = update.read()
if re.match("(good)|(nochg)", res):
print 'ok'
else:
print 'error\n' + res