Skip to content

Releases: optimaize/nameapi-client-python

Version 1.0.1

01 Nov 14:57

Choose a tag to compare

Version 1.0.0

01 Nov 08:39

Choose a tag to compare

This is the initial release of the NameAPI Python Client, a Python library designed to interact with NameAPI services at www.nameapi.org

Key Features:

  • Provides easy access to NameAPI’s RESTful services for name-related data processing.
  • Supports commands such as ping, disposable email detection, name parsing, etc.

Install the library using pip:

pip install nameapi-python-client

Usage
Here’s a quick example to get started:

from nameapi_client import NameApiClient

# Initialize with your API key
client = NameApiClient(api_key="YOUR_API_KEY")

# Example: Ping command
response = client.ping()
print(response)  # Prints "pong"

Notes

  • Requirements: Python 3.8 or higher.
  • License: MIT License.