ما يفعله
يُنشئ XML لتعريف `pacs.008` وتعريفات رسائل pacs ذات الصلة; يتحقق من صحة البيانات و XML وفقاً للمخططات; يوفر خدمة FastAPI لسير العمل الآلي
التوليد والتحقق وتنسيق واجهات البرمجة ودعم الامتثال لتدفقات تحويل الائتمان بين المؤسسات المالية.
# 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