How to Run :
-
Install Python 3 (make sure you can use "pip" in console)
-
Install JetBrains PyCharm(recommended ) Or you can use any other IDE
-
(optional) create a virtual environment using commands :
pip install virtualenv
virtualenv venv
-
install the dependencies with commands :
pip install django
pip install requests
-
Open the view.py in project and set your PayPing token
-
Run the project using PyCharm or manually with command :
python manage.py runserver
- for mac
python3 manage.py runserver
-
open browser with URL = http://localhost:8000
-
Done!