10 lines
183 B
Python
10 lines
183 B
Python
|
|
from Wappalyzer import Wappalyzer, WebPage
|
|
import builtwith
|
|
|
|
webpage = WebPage.new_from_url("http://iqiyi.com")
|
|
wappalyzer = Wappalyzer.latest()
|
|
print(wappalyzer.analyze(webpage))
|
|
|
|
|