3

Is anyone aware of an IBM Websphere MQ module compatible with python3? pymqi doesn’t seem compatible and the author seems unconcerned with that fact.

JoshMc
  • 10,239
  • 2
  • 19
  • 38
Rich Homolka
  • 1,805
  • 2
  • 13
  • 13
  • Well, since PyMQI is open source, do what you need to do to it to make it compatible with Python 3. – Roger Aug 04 '17 at 20:23
  • rich did you ever find a solution to this? i have the same issue – gnr Jan 11 '18 at 12:57
  • Did anyone find the solution to this? – Andi Feb 15 '18 at 11:56
  • A users provided and the maintainer recently merged in 3.5 support, see "[Python 3.5 and 2.7 #60](https://github.com/dsuch/pymqi/issues/60) – JoshMc May 29 '18 at 16:56
  • Hi Rich, the py3mqi fork has not been maintained since it was put out there. The original pymqi has supported Python 3 since 1.8 (around 2 years ago). Users of py3mqi keep coming to the pymqi github site with issues. Could you please accept the answer provided by @Seyf to help point more people to the current state that pymqi does support Python 3. – JoshMc Jun 08 '20 at 14:56
  • @JoshMc done so (sorry @max) I’m no longer using MQ but i get what you mean – Rich Homolka Jun 09 '20 at 16:31
  • Great, thank you for your time. – JoshMc Jun 09 '20 at 18:09

2 Answers2

3

pymqi v1.10.1 compatible with python 3.x (tested with 2.7, 3.5, 3.6, 3.7, 3.8)

Seyf
  • 305
  • 2
  • 10
2

For using pymqi in python3 you can use the module 'py3mqi'.

pip install py3mqi

You are also more than welcome to check my wrapper for the pymqi in python3 https://github.com/Hyaxia/pymqiwm

Good luck!

Max
  • 907
  • 2
  • 13
  • 27
  • 1
    Note the maintainer of the original pymqi recently merged in 3.5 support, see "[Python 3.5 and 2.7 #60](https://github.com/dsuch/pymqi/issues/60)". – JoshMc Jun 23 '18 at 19:45