bkjones / pyrabbit

A Python module to communicate w/ the RabbitMQ HTTP Management API
http://pyrabbit.readthedocs.org
BSD 3-Clause "New" or "Revised" License
97 stars 86 forks source link

Replace httplib2 with requests. #38

Closed julienr closed 8 years ago

julienr commented 9 years ago

This replaces httplib2 with requests for the HTTP client part. requests is more actively maintained and documented than httplib2 and provides thread-safety. This should fix #35 .

This also changes the API a bit by requiring a full URL ( 'http://localhost:55672/api' ) which allow, amongst other things, https access and fixes #36 .

bkjones commented 8 years ago

Thanks for this. I'm reviewing it and hope to merge it before the new year.

julienr commented 8 years ago

Thanks !