django-payments-flow


Namedjango-payments-flow JSON
Version 0.1.4 PyPI version JSON
download
home_pagehttps://mariofix.github.io/django-payments-flow/
SummarySoporte Flow para Django Payments
upload_time2023-07-26 00:45:14
maintainer
docs_urlNone
authorMario Hernandez
requires_python>=3.8.10,<4.0.0
licenseMIT
keywords flow pagos django payment django-payments
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # django-payments-flow

`django-payments-flow` es una variante de Django Payments que implementa la
creación, confirmación y expiración de pagos realizados a través de Flow. Este
módulo proporciona integración con la API de Flow para facilitar el
procesamiento y gestión de pagos en tu aplicación web Django.

[![Codacy Badge](https://app.codacy.com/project/badge/Grade/7dc3c8d6fe844fdaa1de0cb86c242934)](https://app.codacy.com/gh/mariofix/django-payments-flow/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-flow/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-flow/main.svg)](https://results.pre-commit.ci/latest/github/mariofix/django-payments-flow/main)
![PyPI](https://img.shields.io/pypi/v/django-payments-flow)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-payments-flow)
![PyPI - Implementation](https://img.shields.io/pypi/implementation/django-payments-flow)
![PyPI - License](https://img.shields.io/pypi/l/django-payments-flow)
![PyPI - Status](https://img.shields.io/pypi/status/django-payments-flow)



## Introducción

`django-payments-flow` está diseñado para simplificar la integración de
pagos de Flow en tu proyecto Django Payments. Con este módulo, puedes crear y
gestionar pagos utilizando la pasarela de pago de Flow de manera sencilla.

Características principales:

- Crea y procesa pagos de forma segura con Flow.
- Recibe notificaciones de confirmación de pago.
- Maneja automáticamente la expiración y cancelación de pagos.

## Instalación

Puedes instalar django-payments-flow utilizando pip:

```shell
pip install django-payments-flow
```

O utilizando poetry:

```shell
poetry add django-payments-flow
```

## Configuración

La configuracion se realiza como una variante de Django Payments

```python
PAYMENT_VARIANTS = {
    "flow": ("django_payments_flow.FlowProvider", {
        "key": 1,
        "secret": "qwertyasdf0123456789",
    })
}
```

Puedes ver mas opciones de configuracion [en la documentacion](https://mariofix.github.io/django-payments-flow/uso/#variables-de-configuracion)

## Licencia

El código está bajo licencia MIT


            

Raw data

            {
    "_id": null,
    "home_page": "https://mariofix.github.io/django-payments-flow/",
    "name": "django-payments-flow",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8.10,<4.0.0",
    "maintainer_email": "",
    "keywords": "flow,pagos,django,payment,django-payments",
    "author": "Mario Hernandez",
    "author_email": "mariofix@proton.me",
    "download_url": "https://files.pythonhosted.org/packages/78/c4/38fcca7bef4559447884ebf9c08ba4e164e3fa1e3af764a2ebe85cae22a2/django_payments_flow-0.1.4.tar.gz",
    "platform": null,
    "description": "# django-payments-flow\n\n`django-payments-flow` es una variante de Django Payments que implementa la\ncreaci\u00f3n, confirmaci\u00f3n y expiraci\u00f3n de pagos realizados a trav\u00e9s de Flow. Este\nm\u00f3dulo proporciona integraci\u00f3n con la API de Flow para facilitar el\nprocesamiento y gesti\u00f3n de pagos en tu aplicaci\u00f3n web Django.\n\n[![Codacy Badge](https://app.codacy.com/project/badge/Grade/7dc3c8d6fe844fdaa1de0cb86c242934)](https://app.codacy.com/gh/mariofix/django-payments-flow/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)\n[![Codacy Badge](https://app.codacy.com/project/badge/Coverage/7dc3c8d6fe844fdaa1de0cb86c242934)](https://app.codacy.com/gh/mariofix/django-payments-flow/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_coverage)\n[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/mariofix/django-payments-flow/main.svg)](https://results.pre-commit.ci/latest/github/mariofix/django-payments-flow/main)\n![PyPI](https://img.shields.io/pypi/v/django-payments-flow)\n![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-payments-flow)\n![PyPI - Implementation](https://img.shields.io/pypi/implementation/django-payments-flow)\n![PyPI - License](https://img.shields.io/pypi/l/django-payments-flow)\n![PyPI - Status](https://img.shields.io/pypi/status/django-payments-flow)\n\n\n\n## Introducci\u00f3n\n\n`django-payments-flow` est\u00e1 dise\u00f1ado para simplificar la integraci\u00f3n de\npagos de Flow en tu proyecto Django Payments. Con este m\u00f3dulo, puedes crear y\ngestionar pagos utilizando la pasarela de pago de Flow de manera sencilla.\n\nCaracter\u00edsticas principales:\n\n- Crea y procesa pagos de forma segura con Flow.\n- Recibe notificaciones de confirmaci\u00f3n de pago.\n- Maneja autom\u00e1ticamente la expiraci\u00f3n y cancelaci\u00f3n de pagos.\n\n## Instalaci\u00f3n\n\nPuedes instalar django-payments-flow utilizando pip:\n\n```shell\npip install django-payments-flow\n```\n\nO utilizando poetry:\n\n```shell\npoetry add django-payments-flow\n```\n\n## Configuraci\u00f3n\n\nLa configuracion se realiza como una variante de Django Payments\n\n```python\nPAYMENT_VARIANTS = {\n    \"flow\": (\"django_payments_flow.FlowProvider\", {\n        \"key\": 1,\n        \"secret\": \"qwertyasdf0123456789\",\n    })\n}\n```\n\nPuedes ver mas opciones de configuracion [en la documentacion](https://mariofix.github.io/django-payments-flow/uso/#variables-de-configuracion)\n\n## Licencia\n\nEl c\u00f3digo est\u00e1 bajo licencia MIT\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Soporte Flow para Django Payments",
    "version": "0.1.4",
    "project_urls": {
        "Documentation": "https://mariofix.github.io/django-payments-flow/",
        "Homepage": "https://mariofix.github.io/django-payments-flow/",
        "Repository": "https://github.com/mariofix/django-payments-flow"
    },
    "split_keywords": [
        "flow",
        "pagos",
        "django",
        "payment",
        "django-payments"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f42362bbf6d1f538389d5acb57454cc2c140731cd7aa64b1cd10b3aeae2d1be9",
                "md5": "3ac9f33640bf382e3bd4514c47dfd3f4",
                "sha256": "1b36622616f48256b4020604166fc134efe2bdf9ef9b0b2f423ff19b6dd96462"
            },
            "downloads": -1,
            "filename": "django_payments_flow-0.1.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3ac9f33640bf382e3bd4514c47dfd3f4",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8.10,<4.0.0",
            "size": 5895,
            "upload_time": "2023-07-26T00:45:12",
            "upload_time_iso_8601": "2023-07-26T00:45:12.268707Z",
            "url": "https://files.pythonhosted.org/packages/f4/23/62bbf6d1f538389d5acb57454cc2c140731cd7aa64b1cd10b3aeae2d1be9/django_payments_flow-0.1.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "78c438fcca7bef4559447884ebf9c08ba4e164e3fa1e3af764a2ebe85cae22a2",
                "md5": "c238fdf59d936e894fc7de844158857a",
                "sha256": "d0cc0ac2830ece16ebbde0bc23daa62aa432a90b20b90e4dce3be960fd847ba3"
            },
            "downloads": -1,
            "filename": "django_payments_flow-0.1.4.tar.gz",
            "has_sig": false,
            "md5_digest": "c238fdf59d936e894fc7de844158857a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8.10,<4.0.0",
            "size": 5427,
            "upload_time": "2023-07-26T00:45:14",
            "upload_time_iso_8601": "2023-07-26T00:45:14.060140Z",
            "url": "https://files.pythonhosted.org/packages/78/c4/38fcca7bef4559447884ebf9c08ba4e164e3fa1e3af764a2ebe85cae22a2/django_payments_flow-0.1.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-26 00:45:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mariofix",
    "github_project": "django-payments-flow",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "django-payments-flow"
}
        
Elapsed time: 0.09911s