Skip to content

BrooksWatson717/Cloudmersive.APIClient.Python.Validate

 
 

Repository files navigation

cloudmersive_validate_api_client

The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API.

This Python package is automatically generated by the Swagger Codegen project:

  • API version: v1
  • Package version: 1.1.2
  • Build package: io.swagger.codegen.languages.PythonClientCodegen

Requirements.

Python 2.7 and 3.4+

Installation & Usage

pip install

If the python package is hosted on Github, you can install directly from Github

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)

Then import the package:

import cloudmersive_validate_api_client 

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import cloudmersive_validate_api_client

Getting Started

Please follow the installation procedure and then run the following:

from __future__ import print_function
import time
import cloudmersive_validate_api_client
from cloudmersive_validate_api_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: Apikey
cloudmersive_validate_api_client.configuration.api_key['Apikey'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# cloudmersive_validate_api_client.configuration.api_key_prefix['Apikey'] = 'Bearer'
# create an instance of the API class
api_instance = cloudmersive_validate_api_client.DomainApi()
domain = 'domain_example' # str | Domain name to check, for example \"cloudmersive.com\".  The input is a string so be sure to enclose it in double-quotes.

try:
    # Validate a domain name
    api_response = api_instance.domain_check(domain)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DomainApi->domain_check: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to https://api.cloudmersive.com

Class Method HTTP request Description
DomainApi domain_check POST /validate/domain/check Validate a domain name
DomainApi domain_post POST /validate/domain/whois Get WHOIS information for a domain
EmailApi email_address_get_servers POST /validate/email/address/servers Partially check whether an email address is valid
EmailApi email_full_validation POST /validate/email/address/full Fully validate an email address
EmailApi email_post POST /validate/email/address/syntaxOnly Validate email adddress for syntactic correctness only
IPAddressApi i_p_address_post POST /validate/ip/geolocate Geolocate an IP address
NameApi name_get_gender POST /validate/name/get-gender Get the gender of a first name
NameApi name_validate_first_name POST /validate/name/first Validate a first name
NameApi name_validate_full_name POST /validate/name/full-name Parse and validate a full name
NameApi name_validate_last_name POST /validate/name/last Validate a last name
PhoneNumberApi phone_number_syntax_only POST /validate/phonenumber/basic Validate phone number (basic)
VatApi vat_vat_lookup POST /validate/vat/lookup Lookup a VAT code

Documentation For Models

Documentation For Authorization

Apikey

  • Type: API key
  • API key parameter name: Apikey
  • Location: HTTP header

Author

About

Python client for Cloudmersive Validate API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.2%
  • Other 0.8%