Metadata-Version: 2.1
Name: wizard-domaininfo
Version: 0.1.1
Summary: DNS/Whois Domain Information library
Home-page: https://gitlab.com/mikeramsey/wizard-domaininfo
License: MIT
Author: Michael Ramsey
Author-email: mike@hackerdise.me
Requires-Python: >=3.6.1,<4.0.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: aiodns (>=2.0.0,<3.0.0)
Requires-Dist: atomicwrites (>=1.4.0,<2.0.0)
Requires-Dist: cached-property (>=1.5.2,<2.0.0)
Requires-Dist: contextvars (>=2.4,<3.0)
Requires-Dist: immutables (>=0.15,<0.16)
Requires-Dist: importlib-metadata (>=3.7.0,<4.0.0)
Requires-Dist: requests (>=2.25.1,<3.0.0)
Requires-Dist: setuptools (>=54.1.0,<55.0.0)
Requires-Dist: tomlkit (>=0.7.0,<0.8.0)
Requires-Dist: typing (>=3.7.4,<4.0.0)
Requires-Dist: wheel (>=0.36.2,<0.37.0)
Requires-Dist: wizard-whois (>=2.5.9,<3.0.0)
Requires-Dist: zipp (>=3.4.1,<4.0.0)
Project-URL: Repository, https://gitlab.com/mikeramsey/wizard-domaininfo
Description-Content-Type: text/markdown

# Wizard Domaininfo

[![pipeline status](https://gitlab.com/mikeramsey/wizard-domaininfo/badges/master/pipeline.svg)](https://gitlab.com/mikeramsey/wizard-domaininfo/pipelines)
[![coverage report](https://gitlab.com/mikeramsey/wizard-domaininfo/badges/master/coverage.svg)](https://gitlab.com/mikeramsey/wizard-domaininfo/commits/master)
[![documentation](https://img.shields.io/badge/docs-mkdocs%20material-blue.svg?style=flat)](https://mikeramsey.gitlab.io/wizard-domaininfo/)
[![pypi version](https://img.shields.io/pypi/v/wizard-domaininfo.svg)](https://pypi.org/project/wizard-domaininfo/)
[![gitter](https://badges.gitter.im/join%20chat.svg)](https://gitter.im/wizard-domaininfo/community)

DNS/Whois Domain Information library

## Requirements

Wizard Domaininfo requires Python 3.6 or above.

<details>
<summary>To install Python 3.6, I recommend using <a href="https://github.com/pyenv/pyenv"><code>pyenv</code></a>.</summary>

```bash
# install pyenv
git clone https://github.com/pyenv/pyenv ~/.pyenv

# setup pyenv (you should also put these three lines in .bashrc or similar)
export PATH="${HOME}/.pyenv/bin:${PATH}"
export PYENV_ROOT="${HOME}/.pyenv"
eval "$(pyenv init -)"

# install Python 3.6
pyenv install 3.6.12

# make it available globally
pyenv global system 3.6.12
```
</details>

## Installation

With `pip`:
```bash
python3.6 -m pip install wizard_domaininfo
```

With [`pipx`](https://github.com/pipxproject/pipx):
```bash
python3.6 -m pip install --user pipx

pipx install --python python3.6 wizard_domaininfo
```

