diff --git a/README.md b/README.md index b31fe68..151a1be 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,20 @@ # ISO 20022 Message Generator (pyiso20022) -A suite of classes to support payment message generation (for ISO 20022 payment messages) +A suite of classes to support payment message generation (for ISO 20022 payment messages). + +These are the type of payments messages used in SWIFT for payment schemes such as TARGET2, CHAPS, CBPR+, MEPS+ etc. You may hear them refered to as PACS messages. + +You may also use these messages if you intitate payments from your company into a larger financial institution, in this scenario you will be generating PAIN (thats Payment Initiation) messages. ## Using pyiso20022 package +Install this package and some others... ```bash pip install pyiso20022 pip install xsdata[cli,lxml,soap] ``` -Then use this code: +Then use this code to parse a PAIN message...: ```python from xsdata.formats.dataclass.parsers import XmlParser diff --git a/setup.py b/setup.py index 40b1aa2..faa04d2 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="pyiso20022", - version="0.1.1", + version="0.1.2", author="Peter Houghton", author_email="pete@investigatingsoftware.co.uk", description="pyiso20022 is a library for generating ISO20022 messages in Python.",