Metadata-Version: 1.1
Name: bancardconnectorpython
Version: 0.5
Summary: The Bancard Python connector provides Python APIs to create, process and manage payments.
Home-page: https://github.com/vcajes/bancard-connector-python
Author: Victor Cajes
Author-email: vcajes@gmail.com
License: MIT License

Copyright (c) [2018] [Victor Manuel Cajes Gonzalez]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Description: Bancard VPOS 1.0 - Bancard Python Connector 0.4 library
        =======================================================
        
        Getting Started
        ---------------
        
        This library allows developers to integrates their Python backend
        applications to the Bancard VPOS API.
        
        This library works with the following Python versions: 2.6, 2.7, 3.3,
        3.4, 3.5, 3.6
        
        Prerequisites
        ~~~~~~~~~~~~~
        
        See the requirements.txt file to see which Python libraries will be
        required.
        
        Usage in Staging or Production
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        You can either include this library from:
        
        ::
        
            https://github.com/vcajes/bancard-connector-python
        
        Or install the library from the `PYPI
        repository <https://pypi.python.org/pypi/bancardconnectorpython/>`__:
        
        ::
        
            pip3 install bancardconnectorpython
        
        Usage in development
        ~~~~~~~~~~~~~~~~~~~~
        
        -  Downlaod and install `Python (2.6 <= version <=
           3.6) <https://www.python.org/downloads/>`__.
        -  Run ``pip3 install bancardpythonconnector``.
        -  Import and use library in your source code: ``from decimal import Decimal from bancardconnectorpython import connector, BancardAPI, BancardAPIException``.
        
        This will autoconfigure the connector from the following OS environment variables:
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        BANCARD\_ENVIRONMENT=sandbox\|production
        
        BANCARD\_PUBLIC\_KEY=your\_public\_key
        
        BANCARD\_PRIVATE\_KEY=your\_private\_key
        
        bancard\_api = bancardpythonconnector.connector
        
        or you could just create your own BancardAPI
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        bancard\_api = BancardAPI(environment=BancardAPI.ENVIRONMENT\_SANDBOX,
        public\_key=your\_public\_key, private\_key=your\_private\_key)
        
        
        Running tests
        -------------
        
        -  Download and install `Python (2.6 <= version <= 3.6) <https://www.python.org/downloads/>`__
        -  Install the library from PYPI: ``pip install bancardconnectorpython``
        -  View the Python tests under the ``./tests/`` folder for examples of
           how to use it.
        -  Modify the global variables ``TEST_BANCARD_PUBLIC_KEY`` and
           ``TEST_BANCARD_PRIVATE_KEY`` from the test files with the values
           provided by Bancard.
        -  Run any of the tests, i.e.:
           ``python /path/to/tests/test_bancard_rollback.py``
        
        Versioning
        ----------
        
        For the versions available, see the `tags on this
        repository <https://github.com/vcajes/bancard-connector-python/tags>`__
        
        Authors
        -------
        
        -  **Victor Cajes** - [@vcajes](https://github.com/vcajes)
        
        License
        -------
        
        This project is licensed under the MIT License - see the
        `LICENSE <LICENSE.txt>`__ file for details.
Keywords: bancard,paraguay,python,rest,sdk,charges,webhook
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
