Skip to content

cloudipsp/python-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cloudipsp Python SDK client

Downloads Downloads Downloads

Payment service provider

A payment service provider (PSP) offers shops online services for accepting electronic payments by a variety of payment methods including credit card, bank-based payments such as direct debit, bank transfer, and real-time bank transfer based on online banking. Typically, they use a software as a service model and form a single payment gateway for their clients (merchants) to multiple payment methods. read more

Requirements

  • Python (2.4, 2.7, 3.3, 3.4, 3.5, 3.6, 3.7)

Dependencies

  • requests
  • six

Installation

pip install cloudipsp

Simple start

from cloudipsp import Api, Checkout
api = Api(merchant_id=1396424,
          secret_key='test')
checkout = Checkout(api=api)
data = {
    "currency": "USD",
    "amount": 10000
}
url = checkout.url(data).get('checkout_url')

Tests

First, install tox <http://tox.readthedocs.org/en/latest/>

To run testing:

tox

This will run all tests, against all supported Python versions.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages