tenproduct / adyen-python-api-library

Adyen API Library for Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

Integration

The Library supports all APIs under the following services:

  • checkout
  • checkout utility
  • payments
  • modifications
  • payouts
  • recurring

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

Support

If you have any problems, questions or suggestions, create an issue here or send your inquiry to support@adyen.com.

Licence

MIT license see LICENSE

About

Adyen API Library for Python

License:MIT License


Languages

Language:Python 100.0%