Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/shalakhin/fondy
- Owner: shalakhin
- License: mit
- Created: 2017-04-30T08:59:19.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-24T13:21:39.000Z (almost 6 years ago)
- Last Synced: 2024-10-10T14:54:14.619Z (about 1 month ago)
- Topics: api, api-client, api-wrapper, fondy, payments, python
- Language: Python
- Homepage: https://fondy.eu/en/
- Size: 20.5 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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