Skip to main content

Safepay's python SDK for checkout integration

Project description

Safepay Python SDK

Official python library for Safepay API.

Installation

With Pip

pip install @sfpy/python-sdk

Usage

Import and create a Safepay client by passing your config;

from "python_sdk" import safepay;

env = safepay.Safepay(
    {
        "environment": "sandbox",
        "apiKey": "sec_asd12-2342s-1231s",
        "v1Secret": "bar",
        "webhookSecret": "foo",
    }
)

You can now create payments and checkout links.

Payments

Create payment

Parameter Type Required
amount number Yes
currency PKR, USD Yes
payment_response = env.set_payment_details({"amount": 10000, "currency": "PKR"})

token = payment_response["data"]["token"]



# Pass `token` to create checkout link

Checkout

Create checkout link

Parameter Type Description Required
token string Token from env.set_payment_details Yes
orderId string Your internal invoice / order id No
cancelUrl string Url to redirect to if user cancels the flow Yes
redirectUrl string Url to redirect to if user completes the flow Yes
source string Optional, defaults to custom No
webhooks boolean Optional, defaults to false No
checkout_url = env.get_checkout_url(
    {
        "beacon": token,
        "cancelUrl": "http://example.com/cancel",
        "orderId": "T800",
        "redirectUrl": "http://example.com/success",
        "source": "custom",
        "webhooks": True,
    }
)


# set webhooks = True if want to subscribe to webhooks
# redirect user to `url`

Verification

Signature

Parameter Type Description Required
request object The req object from your server Yes
signature_verification = env.is_signature_valid({"sig": "abcd", "tracker": token})


# mark the invoice as paid if valid
# show an error if invalid

Webhook

Parameter Type Description Required
request object The req object from your server Yes
webhook_verification = env.is_webhook_valid(
    {"x-sfpy-signature": "abcd"}, {"data": data}
)



# mark the invoice as paid if valid
# show an error if invalid

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

safepay_python-0.0.1.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

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

safepay_python-0.0.1-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file safepay_python-0.0.1.tar.gz.

File metadata

  • Download URL: safepay_python-0.0.1.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.6

File hashes

Hashes for safepay_python-0.0.1.tar.gz
Algorithm Hash digest
SHA256 d83538508a9bde8b430824086044510021cabfd562bb0f71e92487456f298b27
MD5 62c1c7b30bd978803881ed5cb61a79c9
BLAKE2b-256 ceff42876ff707509c84fb0a39a133c830ea0e694191bc33b209454afd5b057e

See more details on using hashes here.

File details

Details for the file safepay_python-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: safepay_python-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 7.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.6

File hashes

Hashes for safepay_python-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0f37ce6d356dfb5178f719408787de16ec2e182c7a1ed3451d58e5aece1d0497
MD5 1b7301fcae66c6a0ea8f3e83888a4e8b
BLAKE2b-256 9c71a9f32b008e606db7037dc8054ece4c5ba4db736de7394ef514a7031d1eda

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