Metadata-Version: 1.1
Name: pykhipu
Version: 0.1.5
Summary: Wrapper for the Khipu payment service API v2.0
Home-page: http://github.com/fixmycode/pykhipu
Author: Pablo Albornoz
Author-email: pablo.albornoz.n@gmail.com
License: MIT
Description: PyKhipu
        =======
        
        Wrapper for the Khipu payment service API v2.0
        
        Installation
        ------------
        
        ::
        
            pip install pykhipu
        
        Usage
        -----
        
        ::
        
            from pykhipu.client import Client
            client = Client(receiver_id='1234', secret='abcd')
            payment = client.payments.post('test', 'USD', 100)
            print(payment.payment_url)
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Environment :: Console
