Skip to content

django-paymill is a django app for easily integrating Paymill as a payment gateway for django projects.

Notifications You must be signed in to change notification settings

ulfur/django-paymill

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-paymill

django-paymill is a django app for easily integrating Paymill as a payment gateway for django projects.

django-paymill requires pymill and as a resulting dependency Requests

django-paymill also requires, for the time being, django-crispy-forms

Simply install the app and the requirements and add them to your INSTALLED_APPS:

INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',

    'crispy_forms',
    'paymill',
)

Then add your Paymill public and private keys to settings:

PAYMILL_PRIVATE_KEY = ''
PAYMILL_PUBLIC_KEY = ''

For webhooks to work you will need to declare the receiving host:

PAYMILL_WEBHOOK_HOST = 'http://mydomain.com/'

And off you go! :)

(More documentation to follow soon)

About

django-paymill is a django app for easily integrating Paymill as a payment gateway for django projects.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published