ルーターからページを取得したいのですが192.168.1.1 /basic/home_dhcplist.htm
、最初にユーザー名とパスワードを要求されます。
urllib2 を介して Python でページを取得しています
import urllib2
response = urllib2.urlopen('http://192.168.1.1/basic/home_dhcplist.htm')
html = response.read()
str="Prasads"
value= html.find(str)
print value
if value!=-1 :
print "found"
else:
print "not found"
response.close()