Metadata-Version: 1.1
Name: django-payments-payu
Version: 0.1.0
Summary: PayU payments provider for django-payments
Home-page: https://github.com/PetrDlouhy/django-payments-payu
Author: Petr Dlouhý
Author-email: petr.dlouhy@email.cz
License: MIT
Description: =============================
        Django payments payu
        =============================
        
        .. image:: https://badge.fury.io/py/django-payments-payu.svg
            :target: https://badge.fury.io/py/django-payments-payu
        
        .. image:: https://travis-ci.org/PetrDlouhy/django-payments-payu.svg?branch=master
            :target: https://travis-ci.org/PetrDlouhy/django-payments-payu
        
        .. image:: https://codecov.io/gh/PetrDlouhy/django-payments-payu/branch/master/graph/badge.svg
            :target: https://codecov.io/gh/PetrDlouhy/django-payments-payu
        
        PayU payments provider for django-payments
        
        Documentation
        -------------
        
        The full documentation is at https://django-payments-payu.readthedocs.io.
        
        Quickstart
        ----------
        
        Install `django-payments <https://github.com/mirumee/django-payments>`_ and set up PayU payment provider backend according to `django-payments documentation <https://django-payments.readthedocs.io/en/latest/modules.html>`_:
        
        .. class:: payments_payu.provider.PayuProvider(client_secret, second_key, pos_id, [sandbox=False, endpoint="https://secure.payu.com/", recurring_payments=False, express_payments=False, widget_branding=False])
        
           This backend implements payments using `PayPal.com <https://www.paypal.com/>`_.
        
           :param client_secret: PayU OAuth protocol client secret
           :param pos_id: PayU POS ID
           :param second_key: PayU second key (MD5)
           :param sandbox: if ``True``, set the endpoint to sandbox
           :param endpoint: endpoint URL, if not set, the will be automatically set based on `sandbox` settings
           :param recurring_payments: enable recurring payments, only valid with ``express_payments=True``, see bellow for additional setup, that is needed
           :param express_payments: use PayU express form
           :param widget_branding: tell express form to show PayU branding
        
        
        Example::
        
              # use sandbox
              PAYMENT_VARIANTS = {
                  'payu': ('payments_payu.provider.PayuProvider', {
                      'pos_id': '123456',
                      'second_key': 'iseedeadpeople',
                      'client_secret': 'peopleiseedead',
                      'sandbox': True,
                      'capture': False,
                  }),
              }
        
        
        Additional settings:
        
           PayU requires users first name, last name and email. Override ether ``get_user`` or ``get_user_email``, ``get_user_first_name`` and ``get_user_last_name`` methods from ``BasePayment``.
        
        
        **Recurring payments**:
        
           If recurring payments are enabled, the PayU card token needs to be stored in your application for usage in next payments. The next payments can be either initiated by user through (user will be prompted only for payment confirmation by the express form) or by server.
           To enable recurring payments, you will need to set additional things:
        
           * In order to make payments recurring, the card token needs to be stored for the ``Payment``'s user (not just the payment itself). Implement the ``Payment.set_renew_token()`` and ``Payment.get_renew_token()``.
           * Implement ``Payment.get_payment_url()``.
           * For the server initiated recurring payments you will need to create the new payment and then call ``payment.auto_complete_recurring()``.
              * The method returns either string 'success' or url where the user can provide his CVV2 or 3D secure information.
              * The ``'success'`` string means, that the payment is waiting for notification from PayU, but no further user action is required.
        
        
        Example of triggering recurring payment::
        
               payment = Payment.objects.create(...)
               redirect_url = payment.auto_complete_recurring()
               if redirect_url != 'success':
                   send_mail(
                       'Recurring payment - action required',
                       'Please renew your CVV2/3DS at %s' % redirect_url,
                       'noreply@test.com',
                       [user.email],
                       fail_silently=False,
                   )
        
        Running Tests
        -------------
        
        Does the code actually work?
        
        ::
        
            source <YOURVIRTUALENV>/bin/activate
            (myenv) $ pip install tox
            (myenv) $ tox
        
        Credits
        -------
        
        Tools used in rendering this package:
        
        *  Cookiecutter_
        *  `cookiecutter-djangopackage`_
        
        .. _Cookiecutter: https://github.com/audreyr/cookiecutter
        .. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage
        
        
        
        
        History
        -------
        
        0.1.0 (2020-04-06)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: django-payments-payu
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
