Metadata-Version: 1.1
Name: altapay
Version: 1.3.0
Summary: Unofficial Python SDK for AltaPay (formerly Pensio).
Home-page: https://github.com/coolshop-com/AltaPay
Author: Coolshop.com
Author-email: altapaysdk@coolshop.com
License: MIT
Description-Content-Type: UNKNOWN
Description: .. image:: https://travis-ci.org/coolshop-com/AltaPay.svg
            :target: https://travis-ci.org/coolshop-com/AltaPay
        
        .. image:: https://codecov.io/github/coolshop-com/AltaPay/coverage.svg?branch=master
            :target: https://codecov.io/github/coolshop-com/AltaPay?branch=master
        
        .. image:: https://img.shields.io/pypi/v/altapay.svg
            :target: https://pypi.python.org/pypi/altapay
        
        This is an unofficial Python SDK for AltaPay (formerly Pensio), https://altapay.com/. The SDK is maintained by Coolshop.com, https://www.coolshop.com/.
        
        Documentation
        =============
        `Documentation is available at Read the Docs <http://altapay.readthedocs.org/en/latest/>`_.
        
        Requirements
        ============
        - Python (2.7, 3.3, 3.4, 3.5)
        
        Other versions of Python may also be supported, but these are the only versions we test against.
        
        Dependencies
        ++++++++++++
        - requests
        - six
        
        Installation
        ============
        The easiest way is using pip.
        
        .. code:: python
        
            pip install altapay
        
        Getting Started
        ===============
        Refer to the `introduction on the documentation <http://altapay.readthedocs.org/en/latest/>`_ for some getting started use cases.
        
        Contributing
        ============
        Currently, this library only implements the bare minimum of the AltaPay API. It will allow you to create payment links, and do basic subscription functionality. If you need anything else, feel free to submit a full request, or if you have ideas, open an issue.
        
        If you do decide to submit a pull request, do note that both isort and flake8 (including pep8-naming) are run for all pull requests. You are also advised to write test cases.
        
        Running the Tests
        +++++++++++++++++
        First of all, have `tox <http://tox.readthedocs.org/en/latest/>`_ installed on your system. System-wide is probably the better choice. Once you have tox installed, simply run:
        
        .. code:: python
        
            tox
        
        This will run all tests, against all supported Python versions.
        
        
        Change Log
        ----------
        
        1.3.0 (2017-10-20)
        ++++++++++++++++++
        
        **Features**
        
        - Added ``altapay.Transaction.refund()`` with functionality for refunding a transaction, both full and partial.
        
        1.2.1 (2016-11-02)
        ++++++++++++++++++
        
        **Bugfix**
        
        - Fixed a bug where parsing the values "nan", "inf" or "-inf" would lead to a float value, when handling XML values. While this could potentially be correct, it's safer to assume that these values are in fact string values
        
        1.2.0 (2016-04-19)
        ++++++++++++++++++
        
        **Features***
        
        - Added ``altapay.FundingList`` and ``altapay.Funding``. These two objects will interact with the funding list features of AltaPay, and will allow you to both list all of your funding files, as well as download individual files. Currently no guide section is written on the subject, but full API documentation is available
        - Added ``altapay.CustomReport`` which mimics the custom reporting module of AltaPay. Using a custom report ID and additional kwargs based on the report, you can either view or download your custom reports
        
        1.1.0 (2016-04-12)
        ++++++++++++++++++
        
        - Previously, all calls would use an HTTP GET, since the AltaPay documentation in some cases suggests that this is the case. This works, however, it breaks when payments start to contain many order lines. Because of this, all calls have been changed to HTTP POST, which is the recommended way of communicating with the AltaPay API.
        
        1.0.1 (2016-03-15)
        ++++++++++++++++++
        
        **API Change**
        
        - **Backwards incompatible** ``altapay.Transaction.capture()`` will now return an ``altapay.Callback`` object instead of a ``altapay.Transaction`` object
        
        1.0 (2016-03-03)
        ++++++++++++++++
        
        **First Production Release**
        
        **Features**
        
        - Addded ``altapay.Transaction.release()``
        
        1.0.dev9 (2016-02-26)
        +++++++++++++++++++++
        
        **Improvements**
        
        - **Backwards incompatible** Moved ``altapay.Transaction.create_invoice_reservation()`` to ``altapay.Callback.create_invoice_reservation()``. The method will now return a ``altapay.Callback`` object in order to read the result key (#41)
        
        1.0.dev8 (2016-02-22)
        +++++++++++++++++++++
        
        **Features**
        
        - Added ``altapay.Transaction.create_invoice_reservation()``
        
        1.0.dev7 (2016-02-17)
        +++++++++++++++++++++
        
        **Improvements**
        
        - **Backwards incompatible** Changed the name of ``altapay.Transaction.reserve()`` to ``altapay.Transaction.reserve_subscription_charge()``
        
        1.0.dev6 (2016-02-17)
        +++++++++++++++++++++
        
        **Features**
        
        - Added ``altapay.Transaction.reserve()`` which will reserve an amount on a subscription
        
        1.0.dev5 (2016-02-11)
        +++++++++++++++++++++
        
        **Improvements**
        
        - **Backwards incompatible** Changed the return type of ``altapay.Transaction.charge_subscription()``. It will not return a ``altapay.Callback`` object instead of a list of transactions
        - **Backwards incompatible** Changed the argument of ``altapay.Callback.transactions()`` to be keyword only. Will now accept any number of filters, and these will be matched using AND logic
        
        1.0.dev4 (2016-02-03)
        +++++++++++++++++++++
        
        **Features**
        
        - Added ``altapay.Transaction.charge_subscription()`` which will charge a subscription on a transaction, if this transaction is setup as a subscription
        
        **Bugfixes**
        
        - Fixed a bug where looking up a non-existent transaction ID would result in a ``KeyError`` (#32)
        
        0.1.dev3 (2016-01-18)
        +++++++++++++++++++++
        
        **Bugfixes**
        
        - Added missing apostrophe's in the documentation for the callback guide (#24)
        - Fixed a bug where filtering transactions on a ``altapay.Callback`` object might result in a ``KeyError`` (#25)
        
        **Improvements**
        
        - Made it more explicit how attributes on response objects work (#26)
        
        0.1.dev2 (2016-01-14)
        +++++++++++++++++++++
        
        **Features**
        
        - Added ``altapay.Transaction`` and the ability to find a transaction by its transaction ID in the AltaPay service
        - Added ``altapay.Transaction.capture()`` which captures a transaction that has already been loaded. Optinally, parameters can be passed which allows for partial captures (see the AltaPay documentation for full list of possible arguments)
        - Added a public facing API for converting an AltaPay XML response (as a string) to a Python dictionary (``altapay.utils.xml_to_dict``)
        - Added ``altapay.Callback`` which wraps a callback response from AltaPay, and automatically wraps the coupled transactions in ``altapay.Transaction`` objects
        
        **Bugfixes**
        
        - Fixed a bug where specifying a non-existing terminal while creating an ``altapay.Payment`` object would result in ``altapay.Payment.success`` returning ``True``
        - Fixed a bug where running in production mode was not possible. It is now possible by specifying a shop name when instantiating the API
        
        0.1.dev1 (2016-01-05)
        +++++++++++++++++++++
        
        - Complex payments are now possible. This means it is now possible to send detailed payment information in a Pythonic way using just lists and dictionaries, instead of the PHP style query params syntax
        - Documentation now includes a small guide for available parts of the SDK, which will make is easier to get started easily without reading the raw API documentation
        
        0.1.dev0 (2015-12-18)
        +++++++++++++++++++++
        
        - Basic API connection class implemented in ``altapay.api.API``
        - Basic Payment class implemented in ``altapay.payment.Payment`` which is currently mainly for creating a very basic payment request with the AltaPay service
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
