### Displaying MIT License Text for Industrial Edge Developer Guide Project Source: https://github.com/industrial-edge/developer-guide-hands-on-app/blob/main/LICENSE.txt This snippet shows the full text of the MIT License as applied to the Industrial Edge Developer Guide Hands-on App project. It outlines the permissions granted, conditions for use, and disclaimers of warranty and liability. ```plaintext MIT License Copyright (c) Siemens 2023 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ``` -------------------------------- ### Specifying Paho MQTT Client Dependency for Python Source: https://github.com/industrial-edge/developer-guide-hands-on-app/blob/main/src/solution/HandsOn_1/my_edge_app/data-analytics/requirements.txt This line specifies the required version of the Paho MQTT client library for Python. It indicates that version 1.5.0 of the paho-mqtt package is needed for the project. ```Plain Text paho-mqtt==1.5.0 ``` -------------------------------- ### Specifying Paho MQTT Client Library Version Source: https://github.com/industrial-edge/developer-guide-hands-on-app/blob/main/src/solution/HandsOn_2/my_edge_app/data-analytics/requirements.txt Declares the required version of the Eclipse Paho MQTT client library for Python. Pins the dependency to version 1.5.0 for consistent behavior. ```txt paho-mqtt==1.5.0 ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.