Import pika
-
How can I import pika so I can send messages to a amqp message broker?
-
The
pika docs
say that it is a pure-Python library so pika might work in Pythonista.- On the Pythonista interactive prompt, type
import requests; exec requests.get('http://bit.ly/get-stash').text
and tap Return. - Once
stash
has been downloaded and set up, runstash/stash.py
and typepip install pika
on the stash commandline.
- On the Pythonista interactive prompt, type
-
Thanks