Skip to content

Version 1.0.0

Choose a tag to compare

@g1ca g1ca released this 01 Nov 08:39
· 3 commits to main since this release

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.