skillfed

ibmmq

Python Extension for IBM MQ

ibmmq v2.1.0 2.4M downloads/30d#3,109 on PyPI12
License unclear Python-2.0 Active released

What it is and what it does

ibmmq is a Python extension that wraps IBM MQ's native messaging interface, allowing developers to connect to IBM MQ queue managers and perform message operations—putting messages onto queues and retrieving them—from Python code. It implements the full MQI programming interface and includes helper functions for monitoring and managing MQ systems.

The package is compiled for specific platforms (macOS ARM64, Linux x86_64, Windows) and requires Python 3.9 or later. It has no runtime dependencies beyond the system's IBM MQ client libraries. The library is actively maintained, recently released, and carries no known security vulnerabilities.

Use it for:

  • Send and receive messages from IBM MQ queues in Python applications for enterprise messaging workflows.
  • Monitor and manage IBM MQ systems programmatically using the helper functions included in the library.
  • Integrate IBM MQ messaging into asynchronous or event-driven Python services and microservices.
  • Build middleware connectors or ESB-style integrations that route messages between IBM MQ and other systems.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

ibmmq provides a Python interface to IBM MQ, implementing the MQI programming interface for putting and getting messages on queues, plus helper functions for system monitoring and management.

Yes, if you need to integrate with IBM MQ from Python. The package is actively maintained, has no known vulnerabilities, and is in production-stable status. The medium install friction is typical for compiled extensions. Verify the Python-2.0 license implications for your use case and ensure IBM MQ client libraries are available on your deployment platform.

Install

ibmmq on PyPI

pip

pip install ibmmq

uv

uv add ibmmq

poetry

poetry add ibmmq

Installing ibmmq

Before you install

Medium install friction due to compiled wheels for specific platforms (macOS ARM64, Linux x86_64, Windows). Package is actively maintained with a recent release (58 days old) and no known vulnerabilities.

License in practice

License treatment is unclear; the raw license is listed as Python-2.0 but SPDX classification is absent, so the actual legal implications for your use case should be verified before deployment.

Quickstart

import ibmmq

queue_manager = ibmmq.connect('QM1', 'DEV.APP.SVRCONN', '192.168.1.121(1414)')
q = ibmmq.Queue(queue_manager, 'DEV.QUEUE.1')
q.put('Hello from Python!')
msg = q.get()
print('Here is the message:', msg)

Requires Python 3.9 or later; IBM MQ server must be accessible at the specified host and port.

Verify before relying

  • What does Python-2.0 license permit or restrict for commercial use and redistribution?
  • Does the package require IBM MQ client libraries to be installed separately on the system?
  • What is the actual scope of the 'helper functions for system monitoring and management' mentioned in the description?

Package facts

License Python-2.0 (unclear)
Python support supports the current Python release (>=3.9)
Install friction medium — platform-specific wheel
Runtime dependencies none
Maintenance actively maintained — 58 days since the last release
Last repo commit
First released
Downloads 2,356,274/month — #3,109 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: ibmmq-2.1.0-cp39-abi3-macosx_11_0_arm64.whl; ibmmq-2.1.0-cp39-abi3-manylinux_2_28_x86_64.whl; ibmmq-2.1.0-cp39-abi3-win_amd64.whl

Keywords: pymqi, IBMMQ, MQ, WebSphere, WMQ, MQSeries, IBM, middleware, messaging, queueing, asynchronous, SOA, EAI, ESB, integration

Development Status :: 5 - Production/StableIntended Audience :: DevelopersNatural Language :: EnglishOperating System :: OS IndependentProgramming Language :: CProgramming Language :: PythonTopic :: Software Development :: Libraries :: Python Modules

Tags

IBM MQ Python clientmessage queue PythonMQI interface PythonIBM messaging libraryqueue manager Pythonasynchronous messaging Pythonenterprise messaging Python
enterprise-messagingibm-mqmessage-queue

More Python Modules packages