Metadata-Version: 2.1
Name: hiosint
Version: 1.2.0
Summary: An OSINT tool designed to gather reliable information from multiple sources.
Home-page: https://github.com/iamosint/hiosint/
License: GPL-3.0-or-later
Keywords: OSINT,python,aiohttp,email-osint
Author: iamosint
Author-email: osint@iamosint.33mail.com
Requires-Python: >=3.9,<4.0
Classifier: Framework :: aiohttp
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: aiohttp (>=3.8.5,<4.0.0)
Requires-Dist: colorama (>=0.4.6,<0.5.0)
Requires-Dist: duckduckgo-search (>=3.8.5,<4.0.0)
Requires-Dist: google (>=3.0.0,<4.0.0)
Project-URL: Repository, https://github.com/iamosint/hiosint/
Description-Content-Type: text/markdown

![](https://i.ibb.co/DK40cC4/hiosint-blue.png)

### What is hiosint?
hiosint was developed to gather reliable PII (Personal Identifiable Information) from email addresses utilizing sources like data breaches, search engines, and more.
## Installation

Install hiosint with PyPI (pip)

```bash
pip install hiosint
```

Install hiosint from source

```bash
git clone https://github.com/iamosint/hiosint.git
cd hiosint/
pip install .
```
## Usage

With CLI

```bash
hiosint --help
```

With Library

- **hiosint Uses [aiohttp](https://docs.aiohttp.org/en/stable/) behind the scenes for HTTP requests**

```py
import asyncio
from hiosint.modules.leaks import leakcheck


async def main():
    results = await leakcheck(
        "target email",
        "leakcheck.io API key",
        "email",  # default query type is "auto"
    )
    print(results)


asyncio.run(main())
```
## License

[GNU General Public License v3 or later (GPLv3+)](https://choosealicense.com/licenses/gpl-3.0/)


