I am trying to set up an Websphere MQ Client and PYMQI on python to send/receive messages via Queue.
Environment variables have been automatically set too.
I had installed IBM MQ CLient V8.0.11 and there were not issues during.
Then, I proceeded to install (pip install pymqi) which also seemed to be file.
import pymqi
qmgr = pymqi.connect('QM.1', 'SVRCONN.CHANNEL.1', '192.168.1.121(1434)')
putq = pymqi.Queue(qmgr, 'TESTQ.1')
putq.put('Hello from Python!')
When i try to run this using Pycharm, I get the following error