Skip to main content

A Django application for integration with PayOnline System

Project description

Django PayOnline is an application for integration with PayOnline System.

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': '...',
    }
  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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-payonline-0.1.1.tar.gz (4.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page