Metadata-Version: 1.1
Name: direct-sdk-python3
Version: 1.8.0
Summary: SDK to communicate with the Ingenico ePayments platform using the Ingenico Direct Server API
Home-page: https://github.com/Ingenico/direct-sdk-python3
Author: Ingenico dev team
Author-email: 60233882+ingenico-dev-team@users.noreply.github.com
License: MIT
Description: Ingenico Direct Python SDK
        ==========================
        
        Introduction
        ------------
        
        The Python SDK helps you to communicate with the `Ingenico
        Direct <https://support.direct.ingenico.com/>`__ Server API. Its primary
        features are:
        
        -  convenient Python library for the API calls and responses
        
           -  marshalls Python request objects to HTTP requests
           -  unmarshalls HTTP responses to Python response objects or Python
              exceptions
        
        -  handling of all the details concerning authentication
        -  handling of required meta data
        
        Its use is demonstrated by an example for each possible call. The
        examples execute a call using the provided API key.
        
        See the `Ingenico Direct Support
        Site <https://support.direct.ingenico.com/documentation/sdk/server/python/>`__
        for more information on how to use the SDK.
        
        Structure of this repository
        ----------------------------
        
        This repository consists out of three main components:
        
        #. The source code of the SDK itself: ``/ingenico/direct/sdk/``
        #. The source code of the SDK unit tests: ``/tests/unit/``
        #. The source code of the example integration tests:
           ``/tests/integration/``
        
        Note that the source code of the unit tests and integration tests can
        only be found on GitHub.
        
        Requirements
        ------------
        
        Python 3.5 or higher is required. In addition, the following package is
        required:
        
        -  `requests <https://requests.readthedocs.io/>`__ 2.20.0 or higher
        
        This package will be installed automatically if the SDK is installed
        manually or using pip following the below instructions.
        
        Installation
        ------------
        
        To install the SDK using pip, execute the following command:
        
        ::
        
            pip install direct-sdk-python3
        
        Alternatively, you can install the SDK from a source distribution file:
        
        #. Download the latest version of the Python SDK from GitHub. Choose the
           ``direct-sdk-python3-x.y.z.zip`` file from the
           `releases <https://github.com/Ingenico/direct-sdk-python3/releases>`__
           page, where ``x.y.z`` is the version number.
        #. Execute the following command in the folder where the SDK was
           downloaded to:
        
           ::
        
               pip install direct-sdk-python3-x.y.z.zip
        
        Uninstalling
        ------------
        
        After the Python SDK has been installed, it can be uninstalled using the
        following command:
        
        ::
        
            pip uninstall direct-sdk-python3
        
        The required package can be uninstalled in the same way.
        
        Running tests
        -------------
        
        | There are two types of tests: unit tests and integration tests. The
          unit tests will work out-of-the-box; for the integration tests some
          configuration is required.
        | First, some environment variables need to be set:
        
        -  ``direct.api.apiKeyId`` for the API key id to use.
        -  ``direct.api.secretApiKey`` for the secret API key to use.
        -  ``direct.api.merchantId`` for your merchant ID.
        
        In order to run the unit and integration tests, the
        `mock <https://pypi.python.org/pypi/mock>`__ backport and
        `mockito <https://pypi.python.org/pypi/mockito>`__ packages are
        required. These can be installed using the following command:
        
        ::
        
            pip install mock mockito
        
        The following commands can then be executed from the ``tests`` directory
        to execute the tests:
        
        -  Unit tests:
        
           ::
        
               python run_unit_tests.py
        
        -  Integration tests:
        
           ::
        
               python run_integration_tests.py
        
        -  Both unit and integration tests:
        
           ::
        
               python run_all_tests.py
        
Keywords: Ingenico ePayments Direct SDK
Platform: python 3.5
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Office/Business :: Financial
Classifier: License :: OSI Approved :: MIT License
