ANN: PyMQI 1.3 - Python interface to WebSphere MQ

Dariusz Suchojad dsuch at gefira.pl
Mon Apr 29 19:12:54 CEST 2013


Hi,

I'm very happy to announce the release of PyMQI 1.3.

*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 10+ years on Linux, 
Windows, Solaris and AIX with queue managers running on Linux, Windows, 
Solarix, AIX, HP-UX and z/OS mainframe. Supported WebSphere MQ versions 
are 5.0 onwards, including 7.5.

*What's new*

* Support for MQ 7.5
* The development effort has moved to GitHub https://github.com/dsuch/pymqi

Special thanks to Alexander Fomichev and Umapathy Subburam for their 
support and patches!

*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.connect('QM01', 'SVRCONN.1', '192.168.1.121(1434)')

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

*Links*

Project's homepage: https://github.com/dsuch/pymqi
Documentation: https://pythonhosted.org/pymqi/
Download URL: https://pypi.python.org/pypi/pymqi
Usage examples: https://pythonhosted.org/pymqi/examples.html
Twitter: https://twitter.com/fourthrealm
Blog: http://www.gefira.pl/blog
LinkedIn: http://www.linkedin.com/groups?gid=3726448
IRC: #pymqi channel on Freenode network

cheers,

-- 
Dariusz Suchojad


More information about the Python-announce-list mailing list