Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ Duitku API Library for Python
## Supported Feature
| Feature | Function | HTTP Request | Description |
|------------------------|--------------------------------------|-----------------------------------------------|---------------------------------------|
| Get Payment Method | client.payment.get_methods | POST /merchant/paymentmethod/getpaymentmethod | Get list of available payment methods |
| Craete New Invoice | client.invoice.create | POST /merchant/createInvoice | Create Transaction via POP API |
| Get Payment Method | duitku.payment.get_methods | POST /merchant/paymentmethod/getpaymentmethod | Get list of available payment methods |
| Craete New Invoice | duitku.invoice.create | POST /merchant/createInvoice | Create Transaction via POP API |
| Create New Transaction | duitku.transaction.create | POST /merchant/v2/inquiry | Create Transaction via V2 API |
| Get Transaction | duitku.transaction.get_status | POST /merchant/transactionStatus | Get Transaction via V2 API |

## Requirements
- Python 3.5 or later
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "duitku-python"
version = "0.2.3"
version = "0.2.4"
authors = [
{name = "Ido Yudhatama", email = "idowidya.yudhatama@gmail.com"},
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name="duitku",
version="0.2.3",
version="0.2.4",
description="Duitku Python SDK",
long_description=long_description,
url="https://github.com/idoyudha/duitku-python",
Expand Down