Skip to main content

A Python implementation of the Paystack API

Project description

paystack-lib-python

This library provides a Python implementation of the Paystack API.

Installation

pip3 install --upgrade paystacklib

Requirements

Python 3.5+

Usage

The Paystack secret key should be defined in the Environment as PAYSTACK_SK or assigned to paystacklib.secret_key

>>> import paystacklib
>>> paystacklib.secret_key = 'sk_your_paystack_secret_key' 
>>> transaction = paystacklib.Transaction.initialize(500000, 'customer@customer.com')
>>> transaction
{'status': True, 'message': 'Authorization URL created', 
    'data': {'authorization_url': 'https://checkout.paystack.com/6rklpsq157c8bef', 
        'access_code': '6rklpsq157c8bef', 'reference': 'i1wdh5b2r3'}}
>>> transaction.status
True
>>> transaction.message
'Authorization URL created'
>>> transaction.data.authorization_url
'https://checkout.paystack.com/6rklpsq157c8bef'
>>> transaction.data.access_code
'6rklpsq157c8bef'
>>> transaction.data.reference
'i1wdh5b2r3'
>>> transaction['status'] #you can also access values this way
True
>>> transaction.whatever  #accessing non-existent element will return a 'False' value
{}

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

paystacklib-0.1.0.tar.gz (7.1 kB view hashes)

Uploaded Source

Built Distribution

paystacklib-0.1.0-py3-none-any.whl (16.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page