Metadata-Version: 1.1
Name: swish
Version: 1.0b1
Summary: Swish Python Client Library
Home-page: https://github.com/playing-se/swish-python
Author: Playing Media Sverige AB
Author-email: kontakt@playing.se
License: MIT
Description: Swish Python Client Library

        ===========================

        

        This client library is designed to support the Swish API. It was originally developed at `Playing <https://playing.se/>`_.

        

        Installation

        ------------

        

        It's easy! Just install it with pip:

        

        .. code-block:: bash

        

            $ pip install swish

        

        Quick Start Example

        -------------------

        

        .. code-block:: python

        

            import swish

            

            swish_client = swish.SwishClient(

                environment=swish.Environment.Test,

                merchant_swish_number='1231181189',

                cert=('/path/to/cert.pem', '/path/to/key.pem'),

                verify='/path/to/swish.pem'

            )

            

            payment = swish_client.create_payment(

                payee_payment_reference='0123456789',

                callback_url='https://example.com/api/swishcb/paymentrequests',

                payer_alias='46712345678',

                amount=100,

                currency='SEK',

                message='Kingston USB Flash Drive 8 GB'

            )

            

            # YOUR CODE: Save payment.id and other info in your database for later!

        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
