Metadata-Version: 2.1
Name: payflow
Version: 0.1.4
Summary: Client for Flow Payment Acquirer
Home-page: https://gitlab.com/dansanti/payflow
Author: Daniel Santibáñez Polanco
Author-email: dansanti@gmail.com
License: GPLV3+
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Environment :: Console
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: urllib3

- Alpha release
- Works for make a payment
Usage:

from .pyflow.client import Client

client = Client(
                'flow_api_key',
                'flow_private_key',
		'flow_enviroment_url',
		True, #test Mode
            )

post = {
	    'email': 'testclient@test.tld',
	    'amount': 500,
	    'commerceOrder': 'code_comerce',
            'subject': 'so1',
            'paymentMethod': 9,
            'urlConfirmation': 'url.tld/confirm',
            'urlReturn': 'url.tld/return',

       }

client.payments.post(post)
