Metadata-Version: 1.0
Name: tranchitella.adyen
Version: 0.1
Summary: Interface to the Adyen payment gateway
Home-page: http://pypi.python.org/pypi/tranchitella.adyen
Author: Tranchitella Kft.
Author-email: info@tranchitella.eu
License: GPL 2
Description: tranchitella.adyen
        ==================
        
        This package offers a Python interface to the Adyen payment gateway.
        
        Usage
        -----
        
        This is an example usage of the package:
        
        >>> from tranchitella.adyen import AdyenPaymentGateway
        >>> obj = AdyenPaymentGateway(
        ...     url='https://pal-test.adyen.com/pal/servlet/soap/Payment',
        ...     user='ws@Company.YourCompany', password='YourPassword',
        ...     merchantAccount='MerchantAccount',
        ... )
        >>> obj.authorise('T-1', 100, 'EUR', 'FABIO TRANCHITELLA',
        ...     '5555444433331111', '12', '2012', '737', ipAddress='127.0.0.1')
        {'authCode': ... }
        >>> print obj.cancel('8112083591854919')
        True
        >>> print obj.capture('8112083586124880', 100, 'EUR')
        True
        >>> print obj.refund('8112083586124880', 100, 'EUR')
        True
        
        
        0.1 (2010-02-26)
        ================
        
        - First public release.
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
