Last updated:
0 purchases
paymeuz 0.2
Introduction
this package helps to integrate payme.uz and your application is built on django.
Installation
Use the package manager pip to install.
pip install requests
pip install djangorestframework
pip install paymeuz
Usage
# settings.py
INSTALLED_APPS = [
...
'paymeuz',
'rest_framework',
...
]
PAYME_SETTINGS = {
'DEBUG':True, #True - test, False - production
'ID':'',
'SECRET_KEY':'',
'ACCOUNTS':{
'KEY_1':'order_id',
'KEY_2':'',
}
}
# urls.py
urlpatterns = [
...
path('api/payme/',include('paymeuz.urls'))
]
Get started
python manage.py migrate
python manage.py runserver
Documentation
payme.uz docs
django-rest-framework docs
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.