WordPress information enumeration and scraping tool
Project description
📰 WPInfo
WPInfo is a lightweight Python library that extracts publicly available information from any WordPress website.
It fetches metadata such as site title, theme name, plugin hints, RSS feed, sitemap, WordPress version (if visible), and more — all using clean and simple Python code.
🚀 Features
- Get site title and meta description
- Detect WordPress version (if disclosed)
- Extract active theme name
- Detect plugin paths
- Find RSS feed, sitemap, and robots.txt URLs
- Clean, simple interface with no dependencies other than
requestsandbeautifulsoup4
📦 Installation
You can install from PyPI:
pip install wpinfo
🧪 Example Usage
from wpinfo import WPInfo
site = WPInfo("https://example.wordpress.com")
info = site.get_info()
for key, value in info.items():
print(f"{key.capitalize()}: {value}")
🧠 Output Example
Title: Example WordPress Site
Meta_description: This is an example WordPress website.
Wordpress_version: WordPress 6.3.1
Theme: twentytwentythree
Plugins: contact-form-7, jetpack
Rss_feed: https://example.com/feed/
Sitemap: https://example.com/sitemap.xml
Robots_txt: https://example.com/robots.txt
🛠 Requirements
- Python 3.7+
requestsbeautifulsoup4
Install dependencies:
pip install -r requirements.txt
📃 License
This project is licensed under the MIT License.
✨ Author
Made with ❤️ by Deadpool2k
GitHub: @Deadpool2000
📬 Contributions & Feedback
Pull requests, feature ideas, and bug reports are welcome.
Feel free to open an issue or submit a PR.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wpinfo-0.1.0.tar.gz.
File metadata
- Download URL: wpinfo-0.1.0.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43b6f07bba79f3e8903dfd4e10f3aeee2722f17b95cf612669e1787e79f52e25
|
|
| MD5 |
21fa5b715295dd6f8ca10217cd952dba
|
|
| BLAKE2b-256 |
900694c675829a207e0055790aea53ae4935436bdd5b77a36d221ed75d69e544
|
File details
Details for the file wpinfo-0.1.0-py3-none-any.whl.
File metadata
- Download URL: wpinfo-0.1.0-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b2cbcbab195684751e1c188d1170c4b28611fb651542c625b75e7a10c2c03b7
|
|
| MD5 |
8c645c5e5e1d9d497ee61d409545a808
|
|
| BLAKE2b-256 |
1277b4b21125cf36e780375cbc8f98d52d2691e4ee94b27baf903621f7ef81f4
|