This repository has been archived by the owner on Dec 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,3 @@ | ||
# django-payments-khipu | ||
|
||
`Proyecto en desarrollo activo, no listo para produccion` | ||
|
||
`django-payments-khipu` es una variante de Django Payments que implementa la | ||
creación, confirmación y expiración de pagos realizados a través de Khipu. Este | ||
módulo proporciona integración con la API de Khipu para facilitar el | ||
procesamiento y gestión de pagos en tu aplicación web Django. | ||
|
||
![PyPI - Status](https://img.shields.io/pypi/status/django-payments-khipu) | ||
[![Downloads](https://pepy.tech/badge/django-payments-khipu)](https://pepy.tech/project/django-payments-khipu) | ||
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/7dc3c8d6fe844fdaa1de0cb86c242934)](https://app.codacy.com/gh/mariofix/django-payments-khipu/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade) | ||
[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/7dc3c8d6fe844fdaa1de0cb86c242934)](https://app.codacy.com/gh/mariofix/django-payments-khipu/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage) | ||
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/mariofix/django-payments-khipu/main.svg)](https://results.pre-commit.ci/latest/github/mariofix/django-payments-khipu/main) | ||
![PyPI](https://img.shields.io/pypi/v/django-payments-khipu) | ||
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-payments-khipu) | ||
![PyPI - Implementation](https://img.shields.io/pypi/implementation/django-payments-khipu) | ||
![PyPI - License](https://img.shields.io/pypi/l/django-payments-khipu) | ||
|
||
|
||
## Introducción | ||
|
||
`django-payments-khipu` está diseñado para simplificar la integración de | ||
pagos de Khipu en tu proyecto Django Payments. Con este módulo, puedes crear y | ||
gestionar pagos utilizando la pasarela de pago de Khipu de manera sencilla. | ||
|
||
Características principales: | ||
|
||
- Crea y procesa pagos de forma segura con Khipu. | ||
- Recibe notificaciones de confirmación de pago. | ||
- Maneja automáticamente la expiración y cancelación de pagos. | ||
|
||
## Instalación | ||
|
||
Puedes instalar django-payments-khipu utilizando pip: | ||
|
||
```shell | ||
pip install django-payments-khipu | ||
``` | ||
|
||
O utilizando poetry: | ||
|
||
```shell | ||
poetry add django-payments-khipu | ||
``` | ||
|
||
## Configuración | ||
|
||
La configuracion se realiza como una variante de Django Payments | ||
|
||
```python | ||
PAYMENT_VARIANTS = { | ||
"khipu": ("django_payments_khipu.KhipuProvider", { | ||
"key": 1, | ||
"secret": "qwertyasdf0123456789", | ||
}) | ||
} | ||
``` | ||
|
||
Puedes ver mas opciones de configuracion [en la documentacion](https://mariofix.github.io/django-payments-khipu/uso/#variables-de-configuracion) | ||
|
||
## Licencia | ||
|
||
El código está bajo licencia MIT | ||
Este proyecto a sido fusionado con [django-payments-chile](https://mariofix.github.io/django-payments-chile) |