7 lines
210 B
Text
7 lines
210 B
Text
# -*- coding: utf-8 -*-
|
|
import pika
|
|
|
|
CREDS = pika.credentials.PlainCredentials('oie', '*******', True)
|
|
|
|
PARAMS = pika.ConnectionParameters(host='rabbitmq.crans.org',
|
|
port=5671, credentials=CREDS, ssl=True)
|