>
> My error:
>> Traceback (most recent call last):
>> File "temp.py", line 8, in
>> my_stomp.connect(AMQ_USERNAME, AMQ_PASSWORD)
>> File "/lclapps/oppen/thirdparty/stompy/stomp.py", line 48, in connect
>> self.frame.connect(self
On 2016-09-25 18:46, Jason Friedman wrote:
My goal is to send messages to an AMQ server using Python 3.3. I found
Stompy and performed
2to3-3.3 before building. I am open to non-Stompy solutions.
My code:
from stompy.stomp import Stomp
my_stomp = Stomp(AMQ_HOST, AMQ_PORT)
my_stomp.connect
My goal is to send messages to an AMQ server using Python 3.3. I found
Stompy and performed
2to3-3.3 before building. I am open to non-Stompy solutions.
My code:
from stompy.stomp import Stomp
my_stomp = Stomp(AMQ_HOST, AMQ_PORT)
my_stomp.connect(AMQ_USERNAME, AMQ_PASSWORD)
My error