Skip to content

ma1onso/depayco

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django integration with ePayco (epayco.co), Colombian payment gateway.

Installation

  • pip install depayco.

  • Set depayco on INSTALLED_APPS.

  • Run python manage.py migrate.

Configurations (settings.py)

EPAYCO_PUBLIC_KEY: String

EPAYCO_SECRET_KEY: String

DEBUG_EPAYCO: Boolean

PLANS

PLANS = (
    {
        'id_plan': 'love2d_course',
        'name': 'love2d Course',
        'description': 'The most beautiful love2d course',
        'amount': 29.99,
        'currency': 'USD',
        'interval': 'month',
        'interval_count': 1,
        'trial_days': 14,
    },
    {
        'id_plan': 'defold_course',
        'name': 'defold Course',
        'description': 'The most mad defold course',
        'amount': 29.99,
        'currency': 'USD',
        'interval': 'month',
        'interval_count': 1,
        'trial_days': 14,
    }
)

How to use

python manage.py sync_plans to create plans on epayco.co

Buy me a coffee