Metadata-Version: 2.4
Name: vanguard-osint-core
Version: 1.0.0
Summary: Elite Asynchronous OSINT Framework for Criminal Tracking and Digital Investigation.
Project-URL: Homepage, https://github.com/cipher-vanguard/vanguard-osint
Project-URL: Bug Tracker, https://github.com/cipher-vanguard/vanguard-osint/issues
Author-email: The Cipher Vanguard <ops@cipher-vanguard.com>
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Security
Requires-Python: >=3.9
Requires-Dist: aiohttp>=3.8.0
Requires-Dist: colorama>=0.4.6
Requires-Dist: rich>=13.0.0
Description-Content-Type: text/markdown

# 🛡️ Vanguard OSINT Core
**The Official Intelligence Framework of The Cipher Vanguard**

![OSINT](https://img.shields.io/badge/Focus-Cyber_Criminal_Tracking-red)
![Python](https://img.shields.io/badge/Python-3.9+-blue)
![License](https://img.shields.io/badge/License-MIT-green)

## 🚀 Overview
**Vanguard OSINT Core** is a high-performance, asynchronous wrapper designed for elite digital investigators. It integrates multiple industry-standard CLI tools into a single, seamless Python library. 

The library is designed for speed, efficiency, and automation. It automatically handles dependency management by checking, installing, and configuring required OSINT tools on the fly.

## ✨ Key Features
* **Auto-Dependency Injection:** Automatically detects and installs missing tools (`Maigret`, `Holehe`, etc.).
* **Asynchronous Execution:** Runs multiple reconnaissance modules in parallel to save critical time.
* **Unified Reporting:** Aggregates data from different sources into structured `JSON` or `TXT` files.
* **Stealth-First:** Built-in logic to handle headers and basic anonymity.

## 📦 Installation
You can install the library directly from PyPI (once published):
```bash
pip install vanguard-osint-core


🛠️ Usage
​Using the library is designed to be simple for members of The Cipher Vanguard.
​Simple Implementation:

import asyncio
from vanguard_core import VanguardEngine

async def run_investigation():
    # Initialize the engine
    vanguard = VanguardEngine()
    
    # Target Data
    target_username = "suspect_alias"
    target_email = "suspect@darkweb.com"
    
    # This will check dependencies, install them if missing, 
    # and run the tools asynchronously.
    report = await vanguard.launch_scan(target_username, target_email)
    
    print(f"Investigation complete. Data stored in: {report['file_path']}")

if __name__ == "__main__":
    asyncio.run(run_investigation())

📊 Output
​The tool generates a comprehensive intelligence report in the project directory:
​report_[username].json: Structured data for database integration.
​report_[username].txt: Human-readable summary for quick briefing.
​⚖️ Legal Disclaimer
​This tool is intended for authorized digital forensics and criminal investigation purposes only. The Cipher Vanguard does not condone illegal use of this software.
​Maintained by The Cipher Vanguard - 2026
