MQTT Sparkplug B v1.0 Wrapper
Project description
IMPORTANT: Please review changelog.md for latest library changes.
Python Sparkplug B Wrapper
This python library implements an easy way to create Sparkplug B entities on Python, abstracting one level up the already existing python Eclipse Tahu Sparkplug B v1.0 core python modules.
The mqtt-spb-wrapper python module provides the following high level classes to handle generic Sparkplug B entities and MQTT communications in an easy way:
- MqttSpbEntityEdgeNode - End of Network (EoN) entity
- This entity can publish NDATA, NBIRTH, NDEATH messages and subscribe to its own commands NCMD as well as to the STATUS messages from the SCADA application.
- MqttSpbEntityDevice - End of Network Device (EoND) entity
- This entity that can publish DDATA, DBIRTH, DDEATH messages and subscribe to its own commands DCMD as well as to the STATUS messages from the SCADA application.
- MqttSpbEntityApplication - Application entity
- This entity can publish NDATA, NBIRTH, NDEATH messages and subscribe to its own commands NCMD, to the STATUS messages from the SCADA application as well as to all other messages from the Sparkplug B Domain ID.
- MqttSpbEntityScada - SCADA entity
- This entity can publish NDATA, NBIRTH, NDEATH messages as well as to send commands to all EoN and EoND (NCMD, DCMD), and subscribe to all other messages from the Sparkplug B Domain ID.
Other helper classes:
- SpbPayloadParser
- Class to decode the Sparkplug B binary payloads ( Google protobuf format )
- SpbTopic
- Class to parse, decode and handle MQTT-based Sparkplug B topics.
- SpbEntity
- Class to encapsulate all basic Sparkplug B entity ( no MQTT functionality )
Basic EoN Device Example
The following code shows how to create a basic Sparkplug B Device Node ( called EoND ) entity that transmit some simple data ( increment counter ).
import time
from datetime import datetime
import uuid
from mqtt_spb_wrapper import MetricDataType, MqttSpbEntityDevice
_DEBUG = True # Enable debug messages
# MQTT Broker parameters
_MQTT_HOST = "localhost"
_MQTT_PORT = 1883
_MQTT_USER = ""
_MQTT_PASSW = ""
# Sparkplug B parameters - Create the spB entity object
domain_name = "TestDomain"
edge_node_name = "Gateway-001"
device_name = "SimpleEoND-01"
print("--- Sparkplug B example - End of Node Device - Simple")
def callback_command(cmd):
print("DEVICE received CMD: %s" % str(cmd))
def callback_cmd_test(data_value):
print(" CMD test received - value: " + str(data_value))
# Create a new SpB EoND Entity
device = MqttSpbEntityDevice(domain_name, edge_node_name, device_name, _DEBUG)
device.on_command = callback_command # Callback for received device commands
# --- Data / Telemetry -----------------------------------------------------------------------------------------------
# During BIRTH message, the prefix "DATA/" is added to all the metric names
# You can change the attributes birth prefix using the attribute: device.data.birth_prefix = "DATA"
# GENERIC METRIC VALUE. If no timestamp is provided, the system UTC epoch in ms will be automatically used.
# INFO: Python default data types Numeric, Float String, Boolean are automatically detected and converted to their
# respective Sparkplub B data types will be used.
device.data.set_value(
name="value",
value=0
)
# You can also enforce a certain spB metric type.
# NOTE: if no spB metric type is provided, the type will be inferred from the python data type:
# bool, numeric = float, string, bytes
device.data.set_value(
name="uint16",
value=125,
spb_data_type=MetricDataType.UInt16,
)
# For a specific value name, a list of values + timestamps can be set to send multiple values at once.
# IMPORTANT: You must provide the same list size for the values and timestamps, otherwise a single
# point will be sent ( first element )
device.data.set_value(
name="values",
value=[12, 34, 45],
timestamp=[1728973247000, 1728973248000, 1728973249000]
)
# BYTES - a list of bytes or bytearray can be sent
device.data.set_value(
name="bytes",
value=bytes([1, 2, 3, 4]),
# value=bytearray([1, 2, 3, 4]) # It is possible to set a bytearray
)
# DATETIME - to send specific spB DateTime metric typeS
device.data.set_value(
name="datetime",
value=datetime.now()
)
# FILE - Can be sent from the open() object or you can send it as bytes or as a file
device.data.set_value(
name="file",
value=open("requirements.txt", "r")
# Note: it can also be sent as bytes or bytearray
# value=file_bytes,
# spb_data_type = MetricDataType.File
)
# UUID - Universal Unique ID
device.data.set_value(
name="uuid",
value=uuid.uuid4()
# Note: it can also be sent as string and enforce data type
# value='2a7e4d22-795a-44b8-96f8-cc74e24df6fe',
# spb_data_type = MetricDataType.UUID
)
# DATASET - Table of values ( columns + rows ) provided as dictionary in python.
# IMPORTANT: dictionary elements should be provided like {colum_name: list(values)}, and
# all column values should be the same size
device.data.set_value(
name="dataset",
value={
"Temperature": [23.5, 22.0, 21.8],
"Humidity": [60.2, 58.9, 59.5],
"Status": ["Normal", "Warning", "Alert"]
}
)
# --- Attributes ----------------------------------------------------------------------------------------------------
# Only sent during BIRTH message, with the prefix "ATTR/" over all the metric names
# You can change the attributes birth prefix using the attribute: device.attributes.birth_prefix = "ATTR"
device.attributes.set_value("description", "Simple EoN Device node")
device.attributes.set_value("type", "Simulated-EoND-device")
device.attributes.set_value("version", "0.01")
# --- Commands --------------------------------------------------------------------------------------------------------
# During BIRTH message, the prefix "CMD/" is added to all the metric names
# You can change the attributes birth prefix using the attribute: device.commands.birth_prefix = "CMD"
device.commands.set_value(name="rebirth",
value=False
)
# You can set a callback function per value. In this case if this specific command is received, the callback will be
# executed and command data value will be passed as argument.
device.commands.set_value(name="test",
value=False,
callback_on_change=callback_cmd_test
)
# Connect to the spB MQTT broker ---------------------------------------------------------------------------------------
_connected = False
while not _connected:
print("Trying to connect to broker %s:%d ..." % (_MQTT_HOST, _MQTT_PORT))
_connected = device.connect(
host=_MQTT_HOST,
port=_MQTT_PORT,
user=_MQTT_USER,
password=_MQTT_PASSW,
)
if not _connected:
print(" Error, could not connect. Trying again in a few seconds ...")
time.sleep(3)
# Send device birth message
device.publish_birth()
# Send some telemetry values ---------------------------------------
# NOTE: From another app (SCADA example application), you can try to send commands to this entity for testing the
# command callback functions.
value = 0 # Simple counter
for i in range(5):
# Update the data value
device.data.set_value("value", value)
# Send data values
print("Sending data - value : %d" % value)
device.publish_data()
# Increase counter
value += 1
# Sleep some time
time.sleep(5)
# Disconnect device -------------------------------------------------
# After disconnection, the MQTT broker will send the device entity DEATH message.
print("Disconnecting device")
device.disconnect()
print("Application finished !")
Library Examples
The repository includes a folder with some basic examples for the different type of entities, see the folder /examples in this repository for more examples.
- simple_eond_example.py - Example shown in following section
- spb_eond_simple.py - Simplified example for an spB Device ( EoND ) - HelloWorld example
- spb_eond_csv_player.py - Example that creates a spB Device ( EoND) and sends data from a CSV file.
- spb_app_listener.py - Example that creates an application spB Entity to listen to a domain data and devices events.
- spb_scada_example.py - Creates a spB SCADA/Host application to discover domain entities, events and send some basic commands. Can be used in conjuntion with the spb_eond_simple.py example.
- mqtt_listener_example.py - Simple paho mqtt client to display MQTT data and decode spB payloads.
Eclipse Sparkplug B v1.0
Sparkplug is a specification for MQTT enabled devices and applications to send and receive messages in a stateful way. While MQTT is stateful by nature it doesn't ensure that all data on a receiving MQTT application is current or valid. Sparkplug provides a mechanism for ensuring that remote device or application data is current and valid. The main Sparkplug B features include:
- Complex data types using templates
- Datasets
- Richer metrics with the ability to add property metadata for each metric
- Metric alias support to maintain rich metric naming while keeping bandwidth usage to a minimum
- Historical data
- File data
Sparkplug B Specification: [https://www.eclipse.org/tahu/spec/Sparkplug%20Topic%20Namespace%20and%20State%20ManagementV2.2-with%20appendix%20B%20format%20-%20Eclipse.pdf](https://www.eclipse.org/tahu/spec/Sparkplug Topic Namespace and State ManagementV2.2-with appendix B format - Eclipse.pdf)
Eclipse Tahu spB v1.0 implementation
Eclipse Tahu provide client libraries and reference implementations in various languages and for various devices to show how the device/remote application must connect and disconnect from the MQTT server using the Sparkplug specification explained below. This includes device lifecycle messages such as the required birth and last will & testament messages that must be sent to ensure the device lifecycle state and data integrity.
The mqtt-spb-wrapper python module uses the open source Sparkplug core function from Eclipse Tahu repository, located at: https://github.com/eclipse/tahu (The current release used is v0.5.15 ).
For more information visit : https://github.com/eclipse/tahu
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
Built Distribution
File details
Details for the file mqtt_spb_wrapper-2.0.3.tar.gz
.
File metadata
- Download URL: mqtt_spb_wrapper-2.0.3.tar.gz
- Upload date:
- Size: 43.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.13.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 10494d2fdec195874914e590ddf16c1ef7308104bea6a8f728337b727ee746af |
|
MD5 | 6e87963d4f4eb3c367943304ef015208 |
|
BLAKE2b-256 | fa30b7e78a3badd8c000379aca1e0c03a5d64d86671d9e7e1159a4df8411a0e4 |
Provenance
File details
Details for the file mqtt_spb_wrapper-2.0.3-py3-none-any.whl
.
File metadata
- Download URL: mqtt_spb_wrapper-2.0.3-py3-none-any.whl
- Upload date:
- Size: 35.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.13.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6dd30ef5b9068098e920973b4f5b4ea3e2fac9ec0908b72ce1ae4b39ffd31af5 |
|
MD5 | 96d8bda554719c9f89033143c869d401 |
|
BLAKE2b-256 | d027953612cb4388ecca9b1bfd3e92b4d6aa965ea11b5789458239be93efbe13 |