Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nemurici/python3-wappalyzer

python3-wappalyzer
https://github.com/nemurici/python3-wappalyzer

Last synced: 3 days ago
JSON representation

python3-wappalyzer

Awesome Lists containing this project

README

        

# python3-wappalyzer
=================

Python driver for [Wappalyzer][], a web application
detection utility.

>>> from Wappalyzer import Wappalyzer, WebPage
>>> wappalyzer = Wappalyzer.latest()
>>> webpage = WebPage.new_from_url('http://example.com')
>>> wappalyzer.analyze(webpage)
set([u'EdgeCast'])
or

>>> from Wappalyzer import Wappalyzer, WebPage
>>> wappalyzer = Wappalyzer.latest()
>>> webpage = WebPage.new_from_response(response) #here you can provide a requests response object
>>> apps = wappalyzer.analyze(webpage)
set([u'EdgeCast'])
[Wappalyzer]: http://wappalyzer.com/