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
- Host: GitHub
- URL: https://github.com/kkent030315/onamae-domain-check
- Owner: kkent030315
- License: mit
- Created: 2020-11-07T13:56:17.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-10T12:57:50.000Z (almost 5 years ago)
- Last Synced: 2025-07-15T13:48:09.441Z (3 months ago)
- Language: Python
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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}
```