https://github.com/begyy/paycomuz
Django RestFramework PaycomUz
https://github.com/begyy/paycomuz
django django-rest-framework paycom paymeuz pypi python
Last synced: 21 days ago
JSON representation
Django RestFramework PaycomUz
- Host: GitHub
- URL: https://github.com/begyy/paycomuz
- Owner: begyy
- License: mit
- Created: 2018-10-27T10:00:11.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T06:19:24.000Z (11 months ago)
- Last Synced: 2025-03-27T09:49:50.257Z (about 2 months ago)
- Topics: django, django-rest-framework, paycom, paymeuz, pypi, python
- Language: Python
- Homepage: https://payme.uz/
- Size: 613 KB
- Stars: 37
- Watchers: 3
- Forks: 16
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

[](https://pepy.tech/project/paycomuz)

[](https://pypi.org/project/PaycomUz)
[](https://github.com/begyy/PaycomUz/blob/master/LICENSE)### Requirements
````
pip install django
pip install djangorestframework
pip install PaycomUz
pip install requests# supported versions
python 3.5 +
django 2 +
djangorestframework 3.7 +
PaycomUz 2 +
````**settings.py**
```python
PAYCOM_SETTINGS = {
"KASSA_ID": "KASSA ID", # token
"SECRET_KEY": "TEST KEY OR PRODUCTIN KEY", # password
"ACCOUNTS": {
"KEY": "order_id"
},
}INSTALLED_APPS = [
'rest_framework',
'paycomuz',
...
]
``````
python manage.py migrate
```### Create paycom user
```python
python manage.py create_paycom_user
```### view.py
```python
from paycomuz.views import MerchantAPIView
from paycomuz import Paycom
from django.urls import pathclass CheckOrder(Paycom):
def check_order(self, amount, account, *args, **kwargs):
return self.ORDER_FOUND
def successfully_payment(self, account, transaction, *args, **kwargs):
print(account)def cancel_payment(self, account, transaction, *args, **kwargs):
print(account)
class TestView(MerchantAPIView):
VALIDATE_CLASS = CheckOrderurlpatterns = [
path('paycom/', TestView.as_view())
]
```### create_initialization.py
https://help.paycom.uz/uz/initsializatsiya-platezhey/otpravka-cheka-po-metodu-get
```python
from paycomuz import Paycom
paycom = Paycom()
url = paycom.create_initialization(amount=5.00, order_id='197', return_url='https://example.com/success/')
print(url)
```
