यह क्या करता है
`pacs.008` और संबंधित pacs संदेश परिभाषाओं के लिए XML उत्पन्न करता है; स्कीमाओं के विरुद्ध डेटा और XML को मान्य करता है; स्वचालित वर्कफ़्लो के लिए FastAPI सेवा प्रदान करता है
वित्तीय संस्थानों के बीच ग्राहक क्रेडिट ट्रांसफर वर्कफ़्लो के लिए जनरेशन, वैलिडेशन, API ऑर्केस्ट्रेशन और अनुपालन समर्थन।
# Install
$ pip install pacs008
# Generate a pacs.008 message
from pacs008 import Pacs008Generator
gen = Pacs008Generator()
msg = gen.create(
debtor="ACME Corp",
creditor="Global Bank",
amount=50000.00,
currency="EUR"
)
gen.validate(msg) # XSD + business rules
gen.to_xml(msg) # ISO 20022 XMLISO 20022 compliant
Built against official ISO 20022 message schemas and SWIFT guidelines
Open source
MIT-licensed on GitHub with full transparency and community contributions
Available on PyPI
Production-ready Python package with semantic versioning