An open API service indexing awesome lists of open source software.

https://github.com/kkent030315/onamae-domain-check

A python module that provides check if the domain is available, via Onamae.com Status API
https://github.com/kkent030315/onamae-domain-check

Last synced: 3 months ago
JSON representation

A python module that provides check if the domain is available, via Onamae.com Status API

Awesome Lists containing this project

README

          







https://pypi.org/project/domainchecker/

# onamae-domain-check

A python module that provides check if the domain is available, via Onamae.com Status API

# Requirements

`python>=3.7`

# Usage

Install:

```
pip install domainchecker
```

Example:

```python
print(check_domain('google', ['.com', '.jp']))
# output: {'google.com': False, 'google.jp': False}
```