Skip to content

A Django application for integration with PayOnline System.

License

Notifications You must be signed in to change notification settings

ZvonokComGroup/django-payonline

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django PayOnline

Django PayOnline is an application for integration with payonlinesystem.com.

Installation

Install django-payonline with pip:

pip install django-payonline

Configuration

  1. Add payonline app to INSTALLED_APPS:

    INSTALLED_APPS = (
        ...
        'payonline',
    )
    
  2. Run syncdb command (with --migrate flag if you use South).

  3. Set app config in project's settings:

    PAYONLINE_CONFIG = {
        'MERCHANT_ID': '...',
        'PRIVATE_SECURITY_KEY': '...',
        'SUCCESS_URL': '...',
    }
    
  4. Add payonline.urls to project's urlconf:

    urlpatterns = patterns(
        ...
        url(r'^payonline/', include('payonline.urls')),
    )
    

Contributing

Feel free to fork, send pull requests or report bugs and issues on github.

About

A Django application for integration with PayOnline System.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.6%
  • Makefile 0.4%