识别网站使用的技术和寻找网站的所有者

识别网站使用的技术

为了更好的了解网站,抓取该网站的信息,我们可以先了解一下该网站大致所使用的技术架构。

安装builtwith :  

    Windows: pip install bulitwith

    Linux:     sudo pip install builtwith

使用:在Python交互环境下,输入:

    import builtwith

    builtwith.parse("http://www.sina.com.cn")


寻找网站的所有者

有时候,我们需要知道网站的所有者是谁,这里在技术上有个简单的方法可以参考。

安装python-whois :  

Windows: pip install python-whois

使用:在Python交互环境下,输入:

import whois

whois.whois("http://www.sina.com.cn")

猜你喜欢

转载自blog.csdn.net/qq_31835117/article/details/81001391