@@ -18,7 +18,7 @@ import asyncwhois
18
18
# pick a domain
19
19
domain = ' bitcoin.org'
20
20
# domain could also be a URL; asyncwhois uses tldextract to parse the URL
21
- domain = ' https://www.google.com?q=asyncwhois'
21
+ # domain = 'https://www.google.com?q=asyncwhois'
22
22
23
23
# basic example
24
24
query_string, parsed_dict = asyncwhois.whois(domain)
@@ -99,9 +99,9 @@ client = asyncwhois.DomainClient(whodap_client=whodap_client)
99
99
100
100
```
101
101
102
- #### Using Proxies
102
+ #### Proxies
103
103
104
- SOCKS4 and SOCKS5 proxies are supported for WHOIS and RDAP queries.
104
+ SOCKS proxies are supported for WHOIS and RDAP queries.
105
105
106
106
``` python
107
107
import whodap
@@ -132,28 +132,28 @@ async with httpx.AsyncClient(transport=transport) as httpx_client:
132
132
133
133
#### Exported Functions
134
134
135
- | Function/Object | Description |
136
- | --------------------| --------------------------------------------------------|
137
- | ` DomainClient ` | Reusable client for WHOIS or RDAP domain queries |
138
- | ` NumberClient ` | Reusable client for WHOIS or RDAP ipv4/ipv6 queries |
139
- | ` ASNClient ` | Reusable client for RDAP asn queries |
140
- | ` whois ` | WHOIS entrypoint for domain, ipv4, or ipv6 queries |
141
- | ` rdap ` | RDAP entrypoint for domain, ipv4, ipv6, or asn queries |
142
- | ` aio_whois ` | async counterpart to ` whois ` |
143
- | ` aio_rdap ` | async counterpart to ` rdap ` |
144
- | ` whois_ipv4 ` | [ DEPRECATED] WHOIS lookup for ipv4 addresses |
145
- | ` whois_ipv6 ` | [ DEPRECATED] WHOIS lookup for ipv6 addresses |
146
- | ` rdap_domain ` | [ DEPRECATED] RDAP lookup for domain names |
147
- | ` rdap_ipv4 ` | [ DEPRECATED] RDAP lookup for ipv4 addresses |
148
- | ` rdap_ipv6 ` | [ DEPRECATED] RDAP lookup for ipv6 addresses |
149
- | ` rdap_asn ` | [ DEPRECATED] RDAP lookup for Autonomous System Numbers |
150
- | ` aio_whois_domain ` | [ DEPRECATED] async counterpart to ` whois_domain ` |
151
- | ` aio_whois_ipv4 ` | [ DEPRECATED] async counterpart to ` whois_ipv4 ` |
152
- | ` aio_whois_ipv6 ` | [ DEPRECATED] async counterpart to ` whois_ipv6 ` |
153
- | ` aio_rdap_domain ` | [ DEPRECATED] async counterpart to ` rdap_domain ` |
154
- | ` aio_rdap_ipv4 ` | [ DEPRECATED] async counterpart to ` rdap_ipv4 ` |
155
- | ` aio_rdap_ipv6 ` | [ DEPRECATED] async counterpart to ` rdap_ipv6 ` |
156
- | ` aio_rdap_asn ` | [ DEPRECATED] async counterpart to ` rdap_asn ` |
135
+ | Function/Object | Description |
136
+ | --------------------| --------------------------------------------------------- |
137
+ | ` DomainClient ` | Reusable client for WHOIS or RDAP domain queries |
138
+ | ` NumberClient ` | Reusable client for WHOIS or RDAP ipv4/ipv6 queries |
139
+ | ` ASNClient ` | Reusable client for RDAP asn queries |
140
+ | ` whois ` | WHOIS entrypoint for domain, ipv4, or ipv6 queries |
141
+ | ` rdap ` | RDAP entrypoint for domain, ipv4, ipv6, or asn queries |
142
+ | ` aio_whois ` | async counterpart to ` whois ` |
143
+ | ` aio_rdap ` | async counterpart to ` rdap ` |
144
+ | ` whois_ipv4 ` | [ DEPRECATED] WHOIS lookup for ipv4 addresses |
145
+ | ` whois_ipv6 ` | [ DEPRECATED] WHOIS lookup for ipv6 addresses |
146
+ | ` rdap_domain ` | [ DEPRECATED] RDAP lookup for domain names |
147
+ | ` rdap_ipv4 ` | [ DEPRECATED] RDAP lookup for ipv4 addresses |
148
+ | ` rdap_ipv6 ` | [ DEPRECATED] RDAP lookup for ipv6 addresses |
149
+ | ` rdap_asn ` | [ DEPRECATED] RDAP lookup for Autonomous System Numbers |
150
+ | ` aio_whois_domain ` | [ DEPRECATED] async counterpart to ` whois_domain ` |
151
+ | ` aio_whois_ipv4 ` | [ DEPRECATED] async counterpart to ` whois_ipv4 ` |
152
+ | ` aio_whois_ipv6 ` | [ DEPRECATED] async counterpart to ` whois_ipv6 ` |
153
+ | ` aio_rdap_domain ` | [ DEPRECATED] async counterpart to ` rdap_domain ` |
154
+ | ` aio_rdap_ipv4 ` | [ DEPRECATED] async counterpart to ` rdap_ipv4 ` |
155
+ | ` aio_rdap_ipv6 ` | [ DEPRECATED] async counterpart to ` rdap_ipv6 ` |
156
+ | ` aio_rdap_asn ` | [ DEPRECATED] async counterpart to ` rdap_asn ` |
157
157
158
158
#### Contributions
159
159
0 commit comments