Hi,

I'm happy to announce the release of PyMQI 1.1.

*INTRODUCTION*

PyMQI allows users to connect Python applications to WebSphere MQ queue
managers.

It can be used to develop test harnesses for WebSphere MQ based systems,
for rapid prototyping of WebSphere MQ applications, for development
of administrative GUIs or for mainstream MQ application development.

PyMQI has been used in production environments for several years on Linux, Windows, Solaris and AIX with queue managers running on Linux, Windows, Solarix, AIX and z/OS mainframe. Supported WebSphere MQ versions are 5.0, 5.1, 5.3, 6.0 and 7.0.

*What's new*

* Added support for Windows AMD64,
* Fixed several bugs related to PCF processing,
* Added 20+ usage examples to documentation,
* Created a PyMQI mailing list at http://mailman-mail5.webfaction.com/listinfo/pymqi-list. It's a good place to join if you'd like to be informed of upcoming releases and new planned features.

*Hello world with PyMQI*

Here's an example showing how easy it is to connect to WebSphere MQ and put a message on a queue.

import pymqi

qmgr = pymqi.QueueManager(None)
qmgr.connectTCPClient("QM.1", pymqi.cd(), "SVRCONN.CHANNEL.1", "192.168.1.121(1434)")

q = pymqi.Queue(qmgr, "TEST.QUEUE.1")
q.put("Hello from Python")

*Links*

Project's homepage: http://packages.python.org/pymqi/
Download URL: https://launchpad.net/pymqi/+download
Usage examples: http://packages.python.org/pymqi/examples.html
Twitter: https://twitter.com/fourthrealm

cheers,

--
Dariusz Suchojad
--
http://mail.python.org/mailman/listinfo/python-announce-list

       Support the Python Software Foundation:
       http://www.python.org/psf/donations/

Reply via email to