Overview
The client library for Registrant Alert API in Python language.
The minimum Python version is 3.6.
Installation
pip install registrant-alert
Examples
Full API documentation available here
Create a new client
from registrantalert import *
client = Client('Your API key')
Make basic requests
# Get the number of domains.
terms = {
'include': ['blog']
}
result = client.preview(basic_terms=terms)
print(result.domains_count)
# Get raw API response
raw_result = client.raw_data(
basic_terms=terms,
response_format=Client.XML_FORMAT,
mode=Client.PREVIEW_MODE)
# Get a list of registered/dropped domains (up to 10,000)
result = client.purchase(
basic_terms=terms
)
Advanced usage
Extra request parameters
advanced_terms = [{
'field': Fields.registrant_contact_organization,
'term': 'Airbnb, Inc.',
'exactMatch': True
}]
since_date = datetime.date(2021, 8, 12)
result = client.purchase(
advanced_terms=advanced_terms,
since_date=since_date,
punycode=False)
Response model overview
Response:
- domains_count: int
- domains_list: [Domain]
- domain_name: str
- date: datetime.date
- action: str
Changelog
1.0.0 (2021-09-14)
First release
Release files for registrant-alert 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| registrant-alert-1.0.0.tar.gz | 10.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| registrant_alert-1.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 22.5 kB
Release files / registrant-alert-1.0.0.tar.gz
| Download URL | registrant-alert-1.0.0.tar.gz |
|---|---|
| Size | 10.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
16f0a357521486d0b5f252255b1b97094c6af5871b59e42d1067af6b9605447d
|
|
BLAKE2b-256 checksum How to use checksums |
ea07a37a7c16ea0b769fd5ef2e112d510f61dc94fef8d6cb72cb6aad70a0fd20
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
|
Release files / registrant_alert-1.0.0-py3-none-any.whl
| Download URL | registrant_alert-1.0.0-py3-none-any.whl |
|---|---|
| Size | 11.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
12b5091153abfd4404b0b4eaa4462f5dc5eba9f8122245a44d8aa7b54ca4eb1f
|
|
BLAKE2b-256 checksum How to use checksums |
1f47c3a52fea7ee569717ecfffbee0e9a1134f409013dfa0117083f53629b7b4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
|