https://github.com/numb95/is_wordpress
A python package to detect if a website is based on wordpress :)
https://github.com/numb95/is_wordpress
pypi-packages python python3 wordpress wordpress-api
Last synced: 25 days ago
JSON representation
A python package to detect if a website is based on wordpress :)
- Host: GitHub
- URL: https://github.com/numb95/is_wordpress
- Owner: numb95
- License: mit
- Created: 2019-02-15T19:21:51.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T01:36:52.000Z (over 3 years ago)
- Last Synced: 2026-02-12T19:55:53.587Z (30 days ago)
- Topics: pypi-packages, python, python3, wordpress, wordpress-api
- Language: Python
- Size: 19.5 KB
- Stars: 18
- Watchers: 1
- Forks: 4
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# is_wordpress
A simple (or useless) Program to check if a website is based on wordpress or not and if it's on wordpress which version does it use.
# Installing
``` pip install is-wordpress```
# Usage
```
usage: main.py [-h] url
Check if selected website is based on wordpress or not.It also show the
wordpress version.
positional arguments:
url URL to check the website.
optional arguments:
-h, --help show this help message and exit
```
## Docker usage
Build docker image
```
$ docker build -t is_wordpress .
```
Now you can simply invoke `is_wordpress` by:
```
$ docker run --rm is_wordpress goodarzi.net
```
Or simply run it by **docker hub**
```
$ docker run theyahya/is_wordpress goodarzi.net
```
## Example
```
$ is_wordpress goodarzi.net
WordPress 4.9.8
```
# Contribution
Feel free to fork and fix problems. PRs are welcome. :heart:
# Issues
Use Issues section to report any problem.