Skip to main content

Asyncio LiqPay SDK for Python

Project description

neoliqpay

Python 3.6+

SDK-Python3

What python version is supported?

  • Python 3.6, 3.7, 3.8, 3.9, 3.10

Get Started

  1. Sign up in https://www.liqpay.ua/en/authorization.
  2. Create a company.
  3. In company settings, on API tab, get Public key and Private key.
  4. Done.

Installation

With pip:

pip install neoliqpay[sync]   # for sync variant

pip install neoliqpay[async]  # for async variant

pip install neoliqpay[async,sync]  # for both

Working with LiqPay Callback locally

If you need debugging API Callback on local environment use https://github.com/inconshreveable/ngrok

Using

Example 1: Basic

Backend

Get payment button (html response)

liqpay = LiqPay(public_key, private_key)
html = liqpay.cnb_form(
    action='pay',
    amount=1,
    currency='UAH',
    description='description text',
    order_id='order_id_1',
    language='ua'
)

Get plain checkout url:

liqpay = LiqPay(public_key, private_key)
html = liqpay.checkout_url({
    action='auth',
    amount=1,
    currency='UAH',
    description='description text',
    order_id='order_id_1',
    language='ua',
    recurringbytoken=1'
})
# Response:

str: https://www.liqpay.ua/api/3/checkout/?data=<decoded data>&signature=<decoded signature>

Frontend

Variable html will contain next html form

    <form method="POST" action="https://www.liqpay.ua/api/3/checkout" accept-charset="utf-8">
        <input type="hidden" name="data" value="eyAidmVyc2lvbiIgOiAzLCAicHVibGljX2tleSIgOiAieW91cl9wdWJsaWNfa2V5IiwgImFjdGlv
        biIgOiAicGF5IiwgImFtb3VudCIgOiAxLCAiY3VycmVuY3kiIDogIlVTRCIsICJkZXNjcmlwdGlv
        biIgOiAiZGVzY3JpcHRpb24gdGV4dCIsICJvcmRlcl9pZCIgOiAib3JkZXJfaWRfMSIgfQ=="/>
        <input type="hidden" name="signature" value="QvJD5u9Fg55PCx/Hdz6lzWtYwcI="/>
        <input type="image"
        src="//static.liqpay.ua/buttons/p1ru.radius.png"/>
    </form>

Example 2: Integrate Payment widget with Django

Payment widget documentation https://www.liqpay.ua/documentation/en/api/aquiring/widget/

Backend

views.py

    from neoliqpay import LiqPay

    from django.views.generic import TemplateView
    from django.shortcuts import render
    from django.http import HttpResponse


    liqpay = LiqPay(settings.LIQPAY_PUBLIC_KEY, settings.LIQPAY_PRIVATE_KEY)


    class PayView(TemplateView):
        template_name = 'billing/pay.html'

        def get(self, request, *args, **kwargs):
            params = {
                'action': 'pay',
                'amount': 100,
                'currency': 'USD',
                'description': 'Payment for clothes',
                'order_id': 'order_id_1',
                'server_url': 'https://test.com/billing/pay-callback/', # url to callback view
            }
            signature, data = liqpay.cnb_signature_data_pair(params)
            
            return render(
                request,
                self.template_name,
                {
                    'signature': signature,
                    'data': data
                }
            )


    class PayCallbackView(View):
        def post(self, request, *args, **kwargs):
            data = request.POST.get('data')
            signature = request.POST.get('signature')

            if liqpay.callback_is_valid(signature, data):
                print('callback is valid')

            response = liqpay.decode_data(data)
            print('callback data', response)
            return HttpResponse()

urls.py

    from django.conf.urls import path

    from billing.views import PayView, PayCallbackView


    urlpatterns = [
        path('pay/', PayView.as_view(), name='pay_view'),
        path('pay-callback/', PayCallbackView.as_view(), name='pay_callback'),
    ]

billing/pay.html

    <div id="liqpay_checkout"></div>
    <script>
        window.LiqPayCheckoutCallback = function() {
            LiqPayCheckout.init({
                data: "{{ data }}",
                signature: "{{ signature }}",
                embedTo: "#liqpay_checkout",
                mode: "embed" // embed || popup,
            }).on("liqpay.callback", function(data){
                console.log(data.status);
                console.log(data);
            }).on("liqpay.ready", function(data){
                // ready
            }).on("liqpay.close", function(data){
                // close
            });
        };
    </script>
    <script src="//static.liqpay.ua/libjs/checkout.js" async></script>

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

neoliqpay-3.0.0.tar.gz (7.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

neoliqpay-3.0.0-py3-none-any.whl (8.2 kB view details)

Uploaded Python 3

File details

Details for the file neoliqpay-3.0.0.tar.gz.

File metadata

  • Download URL: neoliqpay-3.0.0.tar.gz
  • Upload date:
  • Size: 7.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for neoliqpay-3.0.0.tar.gz
Algorithm Hash digest
SHA256 4bd41067f190e165ffda6b99409d07d6d23a50ceb8ed9ded721f7b333259afcd
MD5 12654263caa8e44aecfc56d16395f555
BLAKE2b-256 efa07298354ae2c32b645affa60606fbbcce12e34c960cb889d24b2e723ccb51

See more details on using hashes here.

File details

Details for the file neoliqpay-3.0.0-py3-none-any.whl.

File metadata

  • Download URL: neoliqpay-3.0.0-py3-none-any.whl
  • Upload date:
  • Size: 8.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for neoliqpay-3.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5b85a81ef448d0575f264a2b0131ef38cdb69d1eb58c68c2356cb90469af4db9
MD5 220b36f5d409fa6e9beb22d461e7cbb1
BLAKE2b-256 4a22ea590c76cc7935c84a9c91065c5a282ab621c21c817f21f885e68e3676bd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page