我想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()