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 safepay-python

Usage

Import and create a Safepay client by passing your config;

from safepay_python.safepay import *

env = 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
sig string The signature string from your server Yes
tracker string The tracker string 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
x-sfpy-signature string The signature string from your server Yes
data object The data 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.5.tar.gz (4.5 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.5-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for safepay_python-0.0.5.tar.gz
Algorithm Hash digest
SHA256 8f9d708e30e78aad728e82e322ede5e8d93c99bfe129365fdb8b881e5acc2b0c
MD5 7307a1f776a10b448410ed2738f4c7fe
BLAKE2b-256 f5328e2af1f2a944f608af48b118f2e6c195d8869142c1cf808dbf440ea66acd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: safepay_python-0.0.5-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.11.2

File hashes

Hashes for safepay_python-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 d2ed18d7379e808fc73a7f2f8a143643eb49aee6aa7c3e9407acf4f40f1998d0
MD5 d5698a11407103ca882a8cc5b116736b
BLAKE2b-256 40137c394a018f898664ff808b86d5dab33dfdbb9917134b12a60078600dbab8

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