Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rhymiz/python-mope

A client library for interacting with Mopé
https://github.com/rhymiz/python-mope

api client hakrinbank merchant mope python suriname webshop

Last synced: 3 months ago
JSON representation

A client library for interacting with Mopé

Awesome Lists containing this project

README

        

![build](https://github.com/rhymiz/python-mope/workflows/build/badge.svg)
[![downloads](https://pepy.tech/badge/python-mope)](https://pepy.tech/project/python-mope)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

# Python Mopé
Client library for Mopé by Hakrinbank

### Token acquisition and API Docs
- [API Docs](https://api.mope.sr/integration/doc)
- Instructions for [acquiring a token](https://drive.google.com/file/d/10fWqgpl2Ip9JIacl0pwzUDi_HV6WLbCi/view?usp=sharing)

### Requirements
- Python >= 3.8,<4
- Mopé API Token

### Getting Started
First, install from PyPi by running `pip install python-mope`

Example usage:

```python
from mope import Mope

mope = Mope(token='test_123')
mope.shop.get_payment_request(payment_id='123')
```

### Resources
#### shop

*Methods*

##### `shop.create_payment_request`

| Argument | Type | Required |
| --- |--- | --- |
|amount | int | yes |
|description | string | yes |
|order_id | string | yes |
|currency | enum (USD, SRD, EU) | yes |
|redirect_url| string | yes |

return type: `mope.models.payments.CreatePaymentResponse`

##### `shop.get_payment_request`

| Argument | Type | Required |
|--- |--- |--- |
|payment_id | string | yes |

return type: `mope.models.payments.PaymentRequest`