Skip to main content

Integration to stpmex.com

Project description

STP client python3 client library

Build Status

Cliente para el servicio SOAP de STP

Demo wsdl: https://demo.stpmex.com:7024/speidemo/webservices/SpeiActualizaServices?wsdl

Requerimientos

Python v3 o superior.

Instalación

Se puede instalar desde Pypi usando

pip install stpmex

Test

Para ejecutar los test utlizando el archivo Makefile

$ make test

Uso básico

Comenzar configurando el cliente con las credenciales

import stpmex

Obtener la llave PEM

PKEY_ADD = '/Users/test/prueba-key.pem'
with open(PKEY_ADD) as fp:
    private_key = fp.read()

Utilizar configure() para configurar las credenciales a utilizar

stpmex.configure(wsdl_path='https://demo.stpmex.com:7024/speidemo/webservices/SpeiActualizaServices?wsdl', empresa='PRUEBA', priv_key=private_key, priv_key_passphrase='12345678', prefijo=9999)

Para crear una nueva orden, crear una instancia de Orden y llamar registra()

orden = stpmex.Orden(conceptoPago='Prueba', institucionOperante=stpmex.types.Institucion.STP.value, cuentaBeneficiario='846180000400000001', institucionContraparte=846, monto=1234, nombreBeneficiario='Benito Juárez')
orden.registra()

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

stpmex-0.0.4.tar.gz (6.8 kB view hashes)

Uploaded Source

Built Distribution

stpmex-0.0.4-py3-none-any.whl (8.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page