MqTLS client for python
Project description
MqTLS client for python
This repository contains the client of Message Queuing Telemetry over SSL/TLS for python. You can read more at: https://github.com/efrenbg1/gobroker
Install
$ pip3 install mqtls
or
$ pip install mqtls
PyPI link: https://pypi.org/project/mqtls/
Usage
Basic usage in master mode:
from mqtls import mqtls
broker = mqtls()
if broker.publish('mytopic', 0, 'hello from python'):
print("Message sent!")
print(broker.retrieve('mytopic', 0))
You may also use it as a normal client:
from mqtls import mqtls
broker = mqtls(host='127.0.0.1', port=2443, user='myuser', pw='secret!')
if broker.publish('mytopic', 0, 'hello from python'):
print("Message sent!")
print(broker.retrieve('mytopic', 0))
License
Copyright © 2020 Efrén Boyarizo efren@boyarizo.es
This work is free. You can redistribute it and/or modify it under the
terms of the Do What The Fuck You Want To Public License, Version 2,
as published by Sam Hocevar. See http://www.wtfpl.net/ for more details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mqtls-0.5.tar.gz
(3.0 kB
view hashes)
Built Distribution
mqtls-0.5-py3-none-any.whl
(3.3 kB
view hashes)