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.7.9.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.7.9-py3-none-any.whl (21.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: payrex_python-1.7.9.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.7.9.tar.gz
Algorithm Hash digest
SHA256 cbc53ca0fd022df112d98cc9b0a3ee8ab69b228ce7a9ff8bb601871e66641de9
MD5 1b61ad25cc010fc108b7ed1018e3feb4
BLAKE2b-256 64ae9e58d8629952800621a6ab524a6d5d15764e0c235ace8ad971388b77ef95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: payrex_python-1.7.9-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.7.9-py3-none-any.whl
Algorithm Hash digest
SHA256 e7d71e02f42fab700b7310dff668854fa7dbb93e08ea3a78774b2c7d13121555
MD5 4960a139c9c2e72d86787b12a6163c4c
BLAKE2b-256 5ff309d436b23453dac5f0e2cb0d15dbbcc346f82cc89b890cc9bc20161c2ee2

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