
python3.6 安装builtwith模块
import builtwith
builtwith.parse('https://ggstudy.herokuapp.com/')pip install python-whoisimport whois
whois.whois('https://ggstudy.herokuapp.com')----------
import urllib.request
urllib.request.urlopen(url).read().decode('utf-8')import urllib.request
req= urllib.request.urlopen('http://panda.www.net.cn/cgi-bin/check.cgi?area_domain=ggstudy.herokuapp.com')
print(req.read().decode('utf-8'))python2为 urlparse
import urllib.parse