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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ pip install duitku-python
## Example Usage
```python
import requests
import duitku
import Duitku

from http import HTTPStatus
from datetime import datetime

duitku = duitku.Duitku()
duitku = Duitku.Duitku()

client = duitku.client
client.merchant_code = "YOUR MERCHANT CODE"
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "duitku-python"
version = "0.2.5"
name = "Duitku"
version = "0.2.6"
authors = [
{name = "Ido Yudhatama", email = "idowidya.yudhatama@gmail.com"},
]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
long_description = (here / 'README.md').read_text(encoding='utf-8')

setup(
name="duitku",
version="0.2.5",
name="Duitku",
version="0.2.6",
description="Duitku Python SDK",
long_description=long_description,
url="https://github.com/idoyudha/duitku-python",
Expand Down
4 changes: 2 additions & 2 deletions test/test_invoice.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest
import os

import duitku
import Duitku

from http import HTTPStatus
from datetime import datetime
Expand All @@ -10,7 +10,7 @@
load_dotenv()

class TestInvoice(unittest.TestCase):
duitku = duitku.Duitku()
duitku = Duitku.Duitku()

client = duitku.client
client.merchant_code = os.getenv('MERCHANT_CODE')
Expand Down
4 changes: 2 additions & 2 deletions test/test_payment.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest
import os

import duitku
import Duitku

from http import HTTPStatus
from dotenv import load_dotenv
Expand All @@ -10,7 +10,7 @@
load_dotenv()

class TestPayment(unittest.TestCase):
duitku = duitku.Duitku()
duitku = Duitku.Duitku()

client = duitku.client
client.merchant_code = os.getenv('MERCHANT_CODE')
Expand Down
4 changes: 2 additions & 2 deletions test/test_transaction.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest
import os

import duitku
import Duitku

from http import HTTPStatus
from dotenv import load_dotenv
Expand All @@ -10,7 +10,7 @@
load_dotenv()

class TestTransaction(unittest.TestCase):
duitku = duitku.Duitku()
duitku = Duitku.Duitku()

client = duitku.client
client.merchant_code = os.getenv('MERCHANT_CODE')
Expand Down