cardlinky

Wrapper for the Cardlink API in Python


Keywords
cardlink, api, python, wrapper
License
MIT
Install
pip install cardlinky==1.7

Documentation

cardlinky

📘 Official documentation

Usage

Firstly, you need to create an account and а shop in https://cardlink.link/. After confirmation, you will be able to get a token and a shop ID to work with the API.

Creating a bill and getting a payment link:

from cardlinky import Cardlinky


def print_bill_url(token: str, shop_id: str, amount: float) -> None:
    # Creating an instance of the class
    cardlinky = Cardlinky(token)

    # Create a bill and save it
    bill = cardlinky.create_bill(amount=amount, shop_id=shop_id)

    # Getting a payment link and printing
    print(bill.link_url)


print_bill_url("YOUR-TOKEN", "YOUR-SHOP-ID", 100.0)
# https://cardlink.link/link/GkLWvKx3

Getting a bill status:

from cardlinky import Cardlinky


def print_bill_status(token: str, bill_id: str) -> None:
    # Creating an instance of the class
    cardlinky = Cardlinky(token)

    # Create a bill and save it
    bill_status = cardlinky.get_bill_status(bill_id=bill_id)

    # Getting a status and printing
    print(bill_status.status)


print_bill_status("YOUR-TOKEN", "BILL-ID")
# Status.NEW

Installation

pip install cardlinky

Dependencies:

Package Version
requests >=2.28.2