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:
<pre>
pip install nameapi-python-client
</pre>
**Usage**
Here’s a quick example to get started:
<pre>
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"
</pre>
**Notes**
* Requirements: Python 3.8 or higher.
* License: MIT License.