Skip to content

harishbisht/paytm-django

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 

Repository files navigation

Paytm-Python-Django (For python 3)

Paytm-Payment Gateway Example On Python-Django

  • First clone the project, open your terminal and enter the command
git clone https://github.com/harishbisht/paytm-django.git
  • Now create a virtual environment
virtualenv paytm
  • Now activate the virtual environment
source paytm/bin/activate
  • Now enter into the project folder
cd paytm-django/payments/
  • Now install the requirements
pip install -r requirements.txt
  • Now go to payments ->settings.py and enter your credentials
PAYTM_MERCHANT_KEY=  "<YOUR-PAYTM-MERCHANT-KEY>"
PAYTM_MERCHANT_ID = "<YOUR-PAYTM-MERCHANT-ID>"
PAYTM_CALLBACK_URL = "http://localhost:8000/response/"

*Staging Credentials

PAYTM_MERCHANT_KEY = "bKMfNxPPf_QdZppa"
PAYTM_MERCHANT_ID = "DIY12386817555501617"
PAYTM_WEBSITE = 'WEB_STAGING'

*Make Migrations

python manage.py makemigrations

*Migrate paytm app for transactions details

python manage.py migrate paytm

*Create Super user

python manage.py createsuperuser
python manange.py runserver

*Go to

1) http://localhost:8000/admin
    - Log in using superuser credentials
2) http://localhost:8000/paytm

This should redirect you to Paytm Page.
Test Credentials to use for login:
Mobile Number – 7777777777
Password – Paytm12345
OTP – 489871

Stuff used to make this:

About

paytm payment gateway example

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published