Last active
August 21, 2023 13:33
Calling the RabbitMQ api from Python sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/python | |
import requests | |
import json | |
def call_rabbitmq_api(host, port, user, passwd): | |
url = 'http://%s:%s/api/queues' % (host, port) | |
r = requests.get(url, auth=(user,passwd)) | |
return r | |
def get_queue_name(json_list): | |
res = [] | |
for json in json_list: | |
res.append(json["name"]) | |
return res | |
if __name__ == '__main__': | |
host = 'rabbitmq_host' | |
port = 55672 | |
user = 'basic_auth_user' | |
passwd = 'basic_auth_password' | |
res = call_rabbitmq_api(host, port, user, passwd) | |
print "--- dump json ---" | |
print json.dumps(res.json(), indent=4) | |
print "--- get queue name ---" | |
q_name = get_queue_name(res.json()) | |
print q_name | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment