Metadata-Version: 2.1
Name: webdetect
Version: 0.0.1
Summary: Detects technologies of a web page using Wappalyzer in a headless browser.
Home-page: http://github.com/0xcrypto/webdetect
Author: Vikrant Singh Chauhan
Author-email: vi@hackberry.xyz
License: MIT
Keywords: detect technology,web,wappalyzer
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Topic :: Security
Classifier: License :: Public Domain
Requires-Dist: asyncio
Requires-Dist: python-Wappalyzer
Requires-Dist: click
Requires-Dist: pyppeteer

`License: MIT <LICENSE.md>`__ \| `Author:
0xcrypto <https://twitter.com/0xcrypto>`__

webdetect
=========

Detects technologies of a web page using Wappalyzer in a headless
browser.

Installation
============

.. code:: bash

   pip install webdetect

Usage
=====

**As an application:**

.. code:: bash

   Usage: webdetect [OPTIONS] [URLS]

     webdetect v0.0.1 by @0xcrypto <vi@hackberry.xyz>

   Options:
     --file FILENAME
     --json / --active-data      Print result in JSON format.
     --tabs INTEGER              Maximum tabs to open in chromium.
     --headless / --no-headless  Whether to open chromium in headless mode.
     --help                      Show this message and exit.

**In your scripts:**

.. code:: python

   import asyncio
   from webdetect import WebDetect

   async def getTech():
       return await WebDetect().detect(domains, maxtabs=20, headless=True, logging=False)

   asyncio.run(getTech())


