From e5d5cb888112c88313d27267d244a9ce8fe9477a Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 4 Mar 2015 14:48:38 +0100 Subject: [PATCH] Add get_backends() function --- eopayment/__init__.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/eopayment/__init__.py b/eopayment/__init__.py index 6f21b9e..a2da06d 100644 --- a/eopayment/__init__.py +++ b/eopayment/__init__.py @@ -5,7 +5,7 @@ import logging from common import URL, HTML __all__ = ['Payment', 'URL', 'HTML', '__version__', 'SIPS', 'SYSTEMPAY', - 'SPPLUS', 'DUMMY', 'get_backend'] + 'SPPLUS', 'DUMMY', 'get_backend', 'get_backends'] __version__ = "0.0.22" @@ -22,6 +22,17 @@ def get_backend(kind): module = __import__(kind, globals(), locals(), []) return module.Payment +__BACKENDS = [ DUMMY, SIPS, SYSTEMPAY, SPPLUS ] + +def get_backends(): + '''Return a dictionnary mapping existing eopayment backends name to their + description. + + >>> get_backends()['dummy'].description['caption'] + 'Dummy payment backend' + + ''' + return {backend: get_backend(backend) for backend in __BACKENDS} class Payment(object): ''' -- 1.7.10.4