Metadata-Version: 2.1
Name: payeezy
Version: 1.1.2
Summary: Unofficial Python 3 module to process basic(purchase and authorize) transactions with Payeezy
Home-page: https://github.com/lemmetry/payeezy
Author: Artem Kisel
Author-email: artem.a.kisel@gmail.com
License: UNKNOWN
Keywords: Payeezy purchase authorize transaction FirstData
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Office/Business :: Financial :: Point-Of-Sale

Payeezy
=======

.. image:: https://img.shields.io/pypi/v/payeezy.svg?branch=master
    :target: https://pypi.python.org/pypi/payeezy

.. image:: https://travis-ci.org/lemmetry/payeezy.svg?branch=master
    :target: https://travis-ci.org/lemmetry/payeezy

This is an **unofficial** package-to-be for processing transactions with `Payeezy <https://developer.payeezy.com/>`_ using Python3.6

.. code-block:: python

    >>> transaction = api.process_purchase(transaction_total='2499',
                                           card_type='VISA',
                                           card_number='4005519200000004',
                                           card_expiry='1218',
                                           card_cvv='123',
                                           cardholder_name='Donald Duck',
                                           merchant_reference='Sale')


Installation:
=============

.. code-block:: bash

    $ pip install payeezy


Usage:
======

See `example.py <https://github.com/lemmetry/payeezy/blob/master/example.py>`_


Functions supported:
====================

- `Credit Card Payments <https://developer.payeezy.com/creditcardpayment/apis/post/transactions>`_: Purchase/Authorize
- Check the status of the submitted transaction
- Check error messages for failed transaction


