Metadata-Version: 2.1
Name: VerifyKit
Version: 0.4
Summary: VerifyKit is the next gen phone number validation system. Users can easily verify their phone numbers without the need of entering phone number or a pin code.
Home-page: https://github.com/verifykit/verifykit-sdk-python
Author: VerifyKit
Author-email: sdk@verifykit.com
License: UNKNOWN
Download-URL: https://github.com/verifykit/verifykit-sdk-python/archive/master.zip
Description: # VerifyKit
        
        VerifyKit is the next gen phone number validation system. Users can easily verify their  phone numbers without the need of entering phone number or a pin code.
        
        ## Requirements
        
         - Python 2.7+
         - Python 3.6+
        
        ## Installation
        
        You can install pip package
        
        ```bash
        pid install VerifyKit
        ```
        
        
        ## Usage
        
        ```swift
        import VerifyKit
        
        
        let kit = VerifyKit()
        let viewController = kit.viewControllerForLogin()
        self.present(viewController, animated: true, completion: nil)
        ```
        
        You can get the result via ```VerifyKitDelegate``` protocol.
        
        ```python
        
        from VerifyKit import Verify
        
        verify = Verify(server_key="{SERVER-KEY}")
        verify.validation(session_id='{SESSION-ID}')
        
        if verify.is_valid:
            #Validation success.
            print(verify.response())
        
        elif verify.is_valid == False:
            #Validation fail.
            print(verify.response())
         
        ```
        
        ### Validation Success Response
        ```json
        {
            "validationType": "whatsapp",
            "validationDate": "2019-11-07 07:35:28",
            "phoneNumber": "+905555555555"
        }
        ```
        
        
        ### Validation Fail Response
        ```json
        {
            "status": false,
            "errorCode": "ErrorCode",
            "errorMessage": "Error Message",
            "requestId": "app02-REQ-5dc3f853a9b84"
        }
        ```
        
        
        ## Author
        
        VerifyKit is owned and maintained by [VerifyKit DevTeam](mailto:sdk@verifykit.com).
        
        
        ## License
        
        The MIT License
        
        Copyright (c) 2019-2020 VerifyKit. [http://verifykit.com](http://verifykit.com)
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in
        all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        THE SOFTWARE.
        
Keywords: verifykit,
Platform: UNKNOWN
Description-Content-Type: text/markdown
