kount-access-sdk

Kount Python Access SDK


Keywords
kount, sdk, access
License
Other
Install
pip install kount-access-sdk==2.1.1

Documentation

Welcome to the kount-access-python-sdk!

Overview

This package contains a python library to utilize the API services of Kount's Access Product. For more information on what Kount Access is, go to http://www.kount.com

This library allows you to connect to the Kount Access API services and get information back from your login transactions. In order to use this library you will need:

  1. A Merchant ID provided by Kount
  2. An API Key generated for Kount Access
  3. The Session ID used by the Data Collector
  4. Login Information used by the user (login/password)

Kount Access™ is designed for high-volume login, account creation and affiliate networks, cross-checking individual component with several other components to calculate the velocity of related login attempts, and providing the client with dozens of velocity checks and essential data to help determine the legitimacy of the user and account owners.

After the user submits their credentials for login (data collection completes), the merchant can request information about the device and then can request velocity details (the tallies of credential combinations used) about the user's login attempt(s). Each response is returned in JSON format. With this information the merchant can make business decisions on how it wants to react.

The Kount Access API SDK is used directly in the merchant's website (or authentication service) that handles user login. The Kount Access API SDK should be integrated into the client code so that it is called after the user submits their login, typically where the login form POST is handled. This will be used regardless of whether the login is successful or not.

Downloading or Install the SDK

If you want to use the Kount Access SDK, you need to download and build it locally. There are some options for downloading:

  • Clone the kount-access-python-sdk repository and use its master branch if you want to have the latest (unreleased) features, improvements and bugfixes.

  • Download (the latest) release from the Releases page for a stable version of the SDK.

  • pip - the easiest way to install kount-access is using pip

    pip install kount-access-python-sdk
    

.ℹ️ This SDK is only Python 2.7.13 compatible.

How it works:

https://github.com/Kount/kount-access-python-sdk/wiki/Kount-Access-Examples