Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nemurici/python3-wappalyzer
python3-wappalyzer
https://github.com/nemurici/python3-wappalyzer
Last synced: 3 days ago
JSON representation
python3-wappalyzer
- Host: GitHub
- URL: https://github.com/nemurici/python3-wappalyzer
- Owner: nemurici
- Created: 2016-04-13T20:47:31.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-10-08T09:38:48.000Z (about 5 years ago)
- Last Synced: 2024-08-01T21:55:12.841Z (3 months ago)
- Language: Python
- Size: 38.1 KB
- Stars: 14
- Watchers: 2
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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/