File: domain-ip-availability.md

package info (click to toggle)
python-pyfunceble 4.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,144 kB
  • sloc: python: 27,918; sh: 142; makefile: 48
file content (28 lines) | stat: -rw-r--r-- 858 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Domain or IP Availability

```python linenums="1" title="Availability of a domain or IP using the API"
from PyFunceble import DomainAndIPAvailabilityChecker

checker = DomainAndIPAvailabilityChecker()
to_test = ["github.com", "192.0.2.1"]


for subject in to_test:
    # You can do it this way.
    status = checker.set_subject(subject).get_status()

    # Or this way.
    checker.set_subject(subject)
    status = checker.get_status()

    # We can convert the status to json.
    status_json = status.to_json()

    # We can convert the status to dict.
    status_dict = status.to_dict()

    # We can ask "questions".
    print(f"Is {subject} ACTIVE ?", "yes" if status.is_active() else "no")
    print(f"Is {subject} INACTIVE ?", "yes" if status.is_inactive() else "no")
    print(f"Is {subject} INVALID ?", "yes" if status.is_invalid() else "no")
```