{"id":21321891,"url":"https://github.com/funbeedev/monitor-devto-comments-with-azurecloud","last_synced_at":"2026-05-20T09:11:00.650Z","repository":{"id":203735095,"uuid":"465876282","full_name":"funbeedev/Monitor-Devto-Comments-With-AzureCloud","owner":"funbeedev","description":"Be alerted of new comments on a DEV.to article using the Azure Cloud","archived":false,"fork":false,"pushed_at":"2022-04-22T05:58:16.000Z","size":27,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-15T22:44:30.344Z","etag":null,"topics":["azure-iot-edge","azure-iot-hub","forem-api","microsoft-azure","mqtt-protocol","python","raspberry-pi","requests-module","text-to-speech"],"latest_commit_sha":null,"homepage":"https://dev.to/funbeedev/monitor-new-devto-comments-with-azure-cloud-iot-hub-and-raspberry-pi-3k07","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/funbeedev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2022-03-03T20:37:02.000Z","updated_at":"2022-04-21T05:55:18.000Z","dependencies_parsed_at":null,"dependency_job_id":"d1e6fa66-81ef-4b02-aeb4-2a1e6c76c71f","html_url":"https://github.com/funbeedev/Monitor-Devto-Comments-With-AzureCloud","commit_stats":null,"previous_names":["funbeedev/monitor-devto-comments-with-azurecloud"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/funbeedev/Monitor-Devto-Comments-With-AzureCloud","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funbeedev%2FMonitor-Devto-Comments-With-AzureCloud","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funbeedev%2FMonitor-Devto-Comments-With-AzureCloud/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funbeedev%2FMonitor-Devto-Comments-With-AzureCloud/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funbeedev%2FMonitor-Devto-Comments-With-AzureCloud/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/funbeedev","download_url":"https://codeload.github.com/funbeedev/Monitor-Devto-Comments-With-AzureCloud/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/funbeedev%2FMonitor-Devto-Comments-With-AzureCloud/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33253221,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-20T04:48:54.280Z","status":"ssl_error","status_checked_at":"2026-05-20T04:48:10.851Z","response_time":356,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["azure-iot-edge","azure-iot-hub","forem-api","microsoft-azure","mqtt-protocol","python","raspberry-pi","requests-module","text-to-speech"],"created_at":"2024-11-21T20:11:30.551Z","updated_at":"2026-05-20T09:11:00.613Z","avatar_url":"https://github.com/funbeedev.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Monitor-Devto-Comments-With-AzureCloud\nBe alerted of new comments on a [DEV.to](https://dev.to) article using the Azure Cloud ☁️\n\n![azurecloud-app-header-image](https://inspirezone.tech/wp-content/uploads/2022/04/AzureCloud-Devto-comment-alerts-1280x640-1.png)\n## About\nConsists of an application running on the Azure Cloud and another on a device to detect new messages posted on a DEV.to article and alert you by reading out the comment. If the device is a PI, LED will indicate new comments.\n\n- Use the Azure Cloud to alert you when a new comment is posted on your DEV.to post by polling the DEV.to api.\n- When a new comment is detected the Azure Cloud will send a message to a selected device registered on the Azure IoT Hub. This message will contain the username along with the comment. The device reads out the username and comment using a text to speech engine.\n- As a bonus if the device is a raspberry PI an LED will blink while the comment is being read.\n- The method of sending messages from the Azure Cloud to IoT Hub device is through functions provided by the Python Azure IoT Hub SDK. \n- The application is able to route messages using MQTT (Message Queuing Telemetry Transport) if this option is configured in the ini file of apps setup.\n\n## Core technologies and kits overview\n✔️ [DEV.to API](https://developers.forem.com/api).  \n✔️ Azure Linux Virtual Machines.  \n✔️ Azure IoT Hub.  \n✔️ Python Requests Module.  \n✔️ Python Text to Speech Engine.  \n✔️ Raspberry PI.  \n\nIf using MQTT:  \n✔️ Mosquitto MQTT broker.    \n✔️ Paho MQTT.  \n\n## Environment Installations \u0026 Setup\n\n### Azure Cloud\n- Python pip3 - `sudo apt-get install python3-pip` \n- Python Requests Module - `pip install requests`\n- Beautiful Soup - `pip install bs4`\n- Python Azure IoT Hub library - `pip install azure-iot-hub`\n- Python text-to-speech - `sudo apt-get install espeak` `pip3 install pyttsx3`\n- Paho MQTT - `pip install paho-mqtt.`\n- Configure the Cloud .ini file\n\n### Device \n- Python Azure IoT Hub SDK - `pip install azure-iot-device`\n- Python text-to-speech - `sudo apt-get install espeak` `pip3 install pyttsx3`\n- gpiozero (for GPIO control if device is a raspberry pi ) - `sudo apt install python-gpiozero`\n- Paho MQTT - `pip install paho-mqtt.`\n- Configure the device .ini file\n\n### Tools that helped with development:\n- Azure explorer - https://github.com/Azure/azure-iot-explorer/releases\n- Azure CLI - https://docs.microsoft.com/en-us/cli/azure/\n\n\n## Plans for future\n- Use better robot voice\n- AI processing of comments\n- Do more cool stuff with PI interaction\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunbeedev%2Fmonitor-devto-comments-with-azurecloud","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffunbeedev%2Fmonitor-devto-comments-with-azurecloud","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunbeedev%2Fmonitor-devto-comments-with-azurecloud/lists"}