You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The WHOIS API already supports an rdap flag, but there is currently no way to set this flag in the RequestParameters class within the Python client library.
Proposal
Add an rdap parameter to the RequestParameters class so that users can set rdap=1 (with the default rdap=0, consistent with the Whois API documentation) when building their request. This would help the Python client fully support the existing API functionality.
Example Usage
# Current usage (no RDAP support):params=RequestParameters(ignore_raw_texts=1, da=2) # etc.# params.rdap = ?# Proposed usage:params=RequestParameters(rdap=1, **kwargs)
The text was updated successfully, but these errors were encountered:
Overview
The WHOIS API already supports an
rdap
flag, but there is currently no way to set this flag in theRequestParameters
class within the Python client library.Proposal
Add an
rdap
parameter to theRequestParameters
class so that users can setrdap=1
(with the defaultrdap=0
, consistent with the Whois API documentation) when building their request. This would help the Python client fully support the existing API functionality.Example Usage
The text was updated successfully, but these errors were encountered: