Metadata-Version: 1.1
Name: zerobounce
Version: 0.1.3
Summary: ZeroBounce Python API
Home-page: https://github.com/zerobounce/zerobounce-python-api
Author: Tudor Aursulesei
Author-email: tudor@zerobounce.net
License: UNKNOWN
Download-URL: https://github.com/zerobounce/zerobounce-python-api/archive/0.1.3.tar.gz
Description: zerobounce-python-api
        =====================
        
        `ZeroBounce <https://www.zerobounce.net>`__ Python API The response
        object allows an attribute-like style access.
        
        .. code:: python
        
            from zerobounce import ZeroBounceAPI
        
            zba = ZeroBounceAPI('yourapikey____________')
            print zba.get_credits()
            resp1 = zba.validate('flowerjill@aol.com')
            resp2 = zba.validatewithip('flowerjill@aol.com')
        
            print resp1
            {
              "address":"flowerjill@aol.com",
              "status":"Valid",
              "sub_status":"", 
              "account":"flowerjill",
              "domain":"aol.com",
              "disposable":False,
              "toxic":False,
              "firstname":"Jill",
              "lastname":"Stein",
              "gender":"female",
              "location":None,
              "creationdate":None,
              "processedat":"2017-04-01 02:48:02.592"
            }
        
            print resp2
            {
              "address":"flowerjill@aol.com",
              "status":"Valid",
              "sub_status":"", 
              "account":"flowerjill",
              "domain":"aol.com",
              "disposable":False,
              "toxic":False,
              "firstname":"Jill",
              "lastname":"Stein",
              "gender":"female",
              "location":None,
              "country":"United States",
              "region":"Florida",
              "city":"West Palm Beach",
              "zipcode":"33401",
              "creationdate":None,
              "processedat":"2017-04-01 02:48:02.592"
            }
        
            print resp.firstname
            Jill
        
            print resp2.status
            Valid
        
        
        
Keywords: email,validation
Platform: UNKNOWN
