Advertisement
Guest User

Untitled

a guest
Jan 16th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. # -*- coding: utf-8 -*-
  2.  
  3. from __future__ import unicode_literals
  4.  
  5. from txamqp_helpers.amqp import AmqpFactory
  6. from amqp_specs import spec_0_9_1
  7.  
  8. amqp = AmqpFactory(host='insert host here',
  9. port=1234,
  10. vhost='your virtual host',
  11. user='your username',
  12. password='your password',
  13. spec=spec_0_9_1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement