Metadata-Version: 2.1
Name: wpdetect
Version: 1.3.7
Summary: A WordPress detection tool, detects if a website is running WordPress
Project-URL: Homepage, https://github.com/IamLizu/wpdetect
Project-URL: Bug Tracker, https://github.com/IamLizu/wpdetect/issues
Author-email: S M Mahmudul Hasan <thegeek@iamlizu.com>
License-File: LICENSE.txt
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.4
Requires-Dist: pyfiglet
Description-Content-Type: text/markdown

# WP DETECT

A WordPress detection tool, detects if a website is running WordPress. wpdetect is a great tool when you just want to check WordPress' presence but do not want to scan the site for vulnerabilities or issues.

## Installation

You can install wpdetect using pip,

```sh
pip install wpdetect
```

wpdetect requires Python 3 or above to run. If you have Python 2 installed too, make sure to use the right pip.

## Usage

```sh
wpdetect <website_url>
```

Example

```sh
wpdetect https://wordpress.org
```

Or feed a text file with a list of domains, each domain should be separated with new lines.

```sh
wpdetect -f sites.txt
```

Where `sites.txt` will contain domains like this,

```sh
https://wordpress.org
https://www.newyorker.com/
http://www.techcrunch.com/
```

Please note that, it is not always possible to detect the presence of WordPress, website admins can take extra measures to remove sign of WordPress.

## Changelog

#### What's new in version 1.3.7

-   Migrated to Hatchling build system
-   Updated README

#### What's new in version 1.3.6

-   Fixed minor bugs
