![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
.. image:: https://img.shields.io/badge/License-MIT-green.svg :alt: registrant-alert-py license :target: https://opensource.org/licenses/MIT
.. image:: https://img.shields.io/pypi/v/registrant-alert.svg :alt: registrant-alert-py release :target: https://pypi.org/project/registrant-alert
.. image:: https://github.com/whois-api-llc/registrant-alert-py/workflows/Build/badge.svg :alt: registrant-alert-py build :target: https://github.com/whois-api-llc/registrant-alert-py/actions
The client library for
Registrant Alert API <https://registrant-alert.whoisxmlapi.com/>
_
in Python language.
The minimum Python version is 3.6.
.. code-block:: shell
pip install registrant-alert
Full API documentation available here <https://registrant-alert.whoisxmlapi.com/api/documentation/making-requests>
_
.. code-block:: python
from registrantalert import *
client = Client('Your API key')
.. code-block:: python
# 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
)
Extra request parameters
.. code-block:: python
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)
.. code-block:: python
Response:
- domains_count: int
- domains_list: [Domain]
- domain_name: str
- date: datetime.date
- action: str
FAQs
Python client library for Registrant Alert API.
We found that registrant-alert demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.