Skip to main content

PayRex Python Library

Project description

PayRex Python

PayRex Python library provides Python applications an easy access to the PayRex API. Explore various Python classes that represents PayRex API resources on object instantiation.

Requirements

Python 3.9.+

Installation

If you want to use the package, run the following command:

pip install payrex-python

If you want to build the library from source:

Create a virtual environment

python -m venv venv

Activate the virtual environment

source venv/bin/activate

Install the package to the virtual environment

pip install -e /Your/Local/Path/payrex-python

python

Getting Started

Simple usage looks like:

from payrex import Client as PayrexClient

payrex_client = PayrexClient('sk_test_...')
payment_intent = payrex_client.payment_intents.retrieve('pi_...')

payment_intent = payrex_client.payment_intents.create(
    {
        'amount': 10000,
        'currency': 'PHP',
        'description': 'Dino Treat',
        'payment_methods': ['gcash']
    }
)

Handle errors

try:
    payrex_client = PayrexClient('sk_test_...')

    payment_intent = payrex_client.payment_intents.create(
        {
            'amount': 10000,
            'description': 'Dino Treat',
            'payment_methods': ['gcash']
        }
    )
except BaseException as e:
    # Handle error
    print(type(e))
    print(e.errors[0].code)
    print(e.errors[0].detail)
    print(e.errors[0].parameter)

Verify webhook signature

try:
    payload = '{"id":"evt_...","resource":"event","type":"payment_intent.succeeded","data":{...'
    signature_header = 't=1715236958,te=,li=...'
    webhook_secret_key = 'whsk_...'

    payrex_client.webhooks.parse_event(
        payload,
        signature_header,
        webhook_secret_key
    )
except SignatureVerificationException as e:
    # Handle invalid signature

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

payrex_python-1.8.0.tar.gz (10.5 kB view details)

Uploaded Source

Built Distribution

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

payrex_python-1.8.0-py3-none-any.whl (21.0 kB view details)

Uploaded Python 3

File details

Details for the file payrex_python-1.8.0.tar.gz.

File metadata

  • Download URL: payrex_python-1.8.0.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for payrex_python-1.8.0.tar.gz
Algorithm Hash digest
SHA256 a58578aaa1e1f11d013adbd15f02fe0dee50b053f4f8e6ce2cd81b1daaa7e3ef
MD5 e5e4066bcde14661494a1e9264d0a93d
BLAKE2b-256 0c29ec4811735cb481c9d7c71ddfbc20eee37657a62ba1f334571bf269e6d790

See more details on using hashes here.

File details

Details for the file payrex_python-1.8.0-py3-none-any.whl.

File metadata

  • Download URL: payrex_python-1.8.0-py3-none-any.whl
  • Upload date:
  • Size: 21.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for payrex_python-1.8.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e4c99214097700d999871f79d6e55c2c65dc9a71d3fe930de2f01708d044220e
MD5 6c35f09b9da083fc899c28e86e2f6ac1
BLAKE2b-256 62ec7692d1f6fc1c3b5b26a7ab82b0e9b105a69773185cd746649dcfdfcde42e

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