Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1.46 KB

README.md

File metadata and controls

43 lines (28 loc) · 1.46 KB

Build Status Coverage Status

Adyen APIs Library for Python

This library simplifies working with Adyen APIs and allows you to integrate Adyen payments within any Python application.

Requirements

Installation

Clone this git repository or use pip: pip install Adyen

Usage

Create a class instance of the 'Adyen' class.

import Adyen

ady = Adyen.Adyen()

ady.payment.client.username = "webservice user name"
ady.payment.client.skin_code = "skin code for Hosted Payment pages"
ady.payment.client.hmac = "HMAC key for skin code"
ady.payment.client.platform = "test" # Environment to use the library in.
ady.payment.client.merchant_account = "merchant account name from CA"
ady.payment.client.password = "webservice user password"
ady.payment.client.app_name = "your app name"

Documentation

Follow the rest of our guides from the documentation on how to use this library.

Licence

MIT license see LICENSE