Django PayOnline is an application for integration with PayOnline System.
Install django-payonline with pip:
pip install django-payonline
Add
payonline
app toINSTALLED_APPS
:INSTALLED_APPS = ( ... 'payonline', )
Run
syncdb
command (with--migrate
flag if you use South).Set app config in project's settings:
PAYONLINE_CONFIG = { 'MERCHANT_ID': '...', 'PRIVATE_SECURITY_KEY': '...', }
Add
payonline.urls
to project's urlconf:urlpatterns = patterns( ... url(r'^payonline/', include('payonline.urls')), )
Feel free to fork, send pull requests or report bugs and issues on github.