Metadata-Version: 2.1
Name: SimpleWhois
Version: 0.0.1
Summary: This module implements WHOIS protocol and performs WHOIS requests.
Home-page: https://github.com/mauricelambert/SimpleWhois
Download-URL: https://mauricelambert.github.io/info/python/code/SimpleWhois.pyz
Author: Maurice Lambert
Author-email: Maurice Lambert <mauricelambert434@gmail.com>
Maintainer: Maurice Lambert
Maintainer-email: Maurice Lambert <mauricelambert434@gmail.com>
License: GPL-3.0 License
Project-URL: Github, https://github.com/mauricelambert/SimpleWhois
Project-URL: Documentation, https://mauricelambert.github.io/info/python/code/SimpleWhois.html
Project-URL: Python Executable, https://mauricelambert.github.io/info/python/code/SimpleWhois.pyz
Project-URL: Windows Executable, https://mauricelambert.github.io/info/python/code/SimpleWhois.exe
Keywords: WHOIS,RFC,Network,Domain,Registar
Platform: Windows
Platform: Linux
Platform: MacOS
Classifier: Topic :: System
Classifier: Topic :: Software Development :: Libraries
Classifier: Environment :: Console
Classifier: Topic :: System :: Shells
Classifier: Operating System :: POSIX
Classifier: Natural Language :: English
Classifier: Topic :: System :: Networking
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: Topic :: System :: System Shells
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: System :: Systems Administration
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# SimpleWhois

## Description

This module implements WHOIS protocol and performs WHOIS requests.

> This module is a pure python implementation and doesn't use `whois` executable.

## Requirements

This package require:
 - python3
 - python3 Standard Library

## Installation

```bash
python3 -m pip install SimpleWhois
```

```bash
git clone "https://github.com/mauricelambert/SimpleWhois.git"
cd "SimpleWhois"
python3 -m pip install .
```

## Usages

### Command line

```bash
SimpleWhois              # Using CLI package executable
python3 -m SimpleWhois   # Using python module
python3 SimpleWhois.pyz  # Using python executable
SimpleWhois.exe          # Using python Windows executable

SimpleWhois 8.8.8.8
SimpleWhois example.com 2001:1c00::78
```

### Python script

```python
from SimpleWhois import *
whois("8.8.8.8")
whois("example.com")
whois("2001:1c00::78")
```

## Links

 - [Pypi](https://pypi.org/project/SimpleWhois)
 - [Github](https://github.com/user/SimpleWhois)
 - [Documentation](https://mauricelambert.github.io/info/python/code/SimpleWhois.html)
 - [Python executable](https://mauricelambert.github.io/info/python/code/SimpleWhois.pyz)
 - [Python Windows executable](https://mauricelambert.github.io/info/python/code/SimpleWhois.exe)

## License

Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).
