--- id: ibmmq version: "2.1.0" license: Python-2.0 license_treatment: unclear maintenance: active --- # ibmmq — Python Extension for IBM MQ License: unclear · Maintenance: active · Downloads: 2.4M/mo ## 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 above — 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 pip install ibmmq uv add ibmmq 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_current - Install friction: medium - Maintenance: active - Downloads: 2.4M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags IBM MQ Python client, message queue Python, MQI interface Python, IBM messaging library, queue manager Python, asynchronous messaging Python, enterprise messaging Python, enterprise-messaging, ibm-mq, message-queue [View on SkillFed](https://skillfed.io/packages/ibmmq) · [View on PyPI](https://pypi.org/project/ibmmq/)