Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/shalakhin/fondy

Python library for the Fondy API
https://github.com/shalakhin/fondy

api api-client api-wrapper fondy payments python

Last synced: about 1 month ago
JSON representation

Python library for the Fondy API

Awesome Lists containing this project

README

        

# fondy

Fondy.eu Python SDK

## Install

```shell
pip install fondy
```

## Usage example

```python
from fondy import API
api = API(merchant_id, merchant_key, server_callback_url)
# generate Fondy payment url to checkout 200 UAH for "123456" order id
api.checkout('123456', 200 * 100)
```

## Supported API endpoints

|Endpoint |Explanation |
|----------------|----------------------|
|order_status |Check order status |
|p2pcredit |Pay to credit card |
|checkout |Generate checkout URL |

## Requirements

- requests