diff --git a/climate-pinger.py b/climate-pinger.py old mode 100644 new mode 100755 index 48cf346..d1e611f --- a/climate-pinger.py +++ b/climate-pinger.py @@ -1,4 +1,4 @@ -#!/usr/local/bin/python3 +#!/usr/bin/python3 import adafruit_dht import mh_z19 diff --git a/climate-ranger b/climate-ranger new file mode 100755 index 0000000..bef2216 Binary files /dev/null and b/climate-ranger differ diff --git a/climate-server b/climate-server deleted file mode 100755 index 3fa3fde..0000000 Binary files a/climate-server and /dev/null differ diff --git a/Database.go b/database.go similarity index 100% rename from Database.go rename to database.go diff --git a/go.mod b/go.mod index 719a23f..fe54a0a 100644 --- a/go.mod +++ b/go.mod @@ -1,12 +1,8 @@ -module djledda.de/ledda/climate-server +module climate-ranger go 1.15 require ( github.com/Freeaqingme/golang-sql-driver-mysql v1.0.3 - github.com/go-sql-driver/mysql v1.5.0 - github.com/gorilla/handlers v1.5.1 github.com/gorilla/mux v1.8.0 - github.com/gorilla/websocket v1.4.1 - github.com/warthog618/gpio v1.0.0 // indirect ) diff --git a/main.go b/main.go new file mode 100644 index 0000000..922fcdd --- /dev/null +++ b/main.go @@ -0,0 +1,50 @@ +package main + +import ( + "fmt" + "log" + "os" +) + +const DEBUG = true + +var mainLogger *log.Logger +var pythonLogger *log.Logger +var logFile *os.File + +func main() { + err := setup() + defer teardown() + if err != nil { + panic(err) + } + quitSnapshot := make(chan int, 1) + go saveSnapshotOnInterval(1, quitSnapshot) + startServer() +} + +func setup() error { + err := InitDb() + if err != nil { + return err + } + logFile, err = os.OpenFile("./server-log", os.O_RDWR | os.O_CREATE | os.O_APPEND, 0666) + if err != nil { + fmt.Println("Logger failed to initialise, this session will not be logged: ", err.Error()) + mainLogger = log.New(os.Stdout, "Main: ", 0) + pythonLogger = log.New(os.Stdout, "Python Process: ", 0) + return nil + } + mainLogger = log.New(logFile, "Main: ", log.Ldate | log.Ltime | log.Lshortfile) + pythonLogger = log.New(logFile, "Python Process: ", log.Ldate | log.Ltime | log.Lshortfile) + mainLogger.Printf("Session started") + return nil +} + +func teardown() { + CloseDb() + err := logFile.Close() + if err != nil { + panic(err) + } +} \ No newline at end of file diff --git a/server-log b/server-log new file mode 100644 index 0000000..6b77014 --- /dev/null +++ b/server-log @@ -0,0 +1,11516 @@ +Python Process: 2020/11/14 13:42:50 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:42:51 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:42:53 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:42:54 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:42:56 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:42:57 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:42:59 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:00 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:01 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:03 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:04 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:05 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:07 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:08 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:10 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:11 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:13 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:14 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:15 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:17 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:18 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:19 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:21 server.go:96: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:43:25 main.go:40: Session started +Python Process: 2020/11/14 13:43:25 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:27 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:28 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:29 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:30 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:31 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:33 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:34 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:35 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:36 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:38 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:39 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:40 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:41 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:42 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:43 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:44 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:46 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:47 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:48 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:49 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:50 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:51 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:52 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:54 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:55 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:56 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:57 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:43:59 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:00 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:44:00 server.go:146: Internal Server Error! Happened during GET request for pattern '/': couldn't parse the template: html/template: cannot Parse after Execute +Python Process: 2020/11/14 13:44:01 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:02 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:04 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:05 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:06 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:07 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:08 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:10 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:11 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:12 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:13 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:14 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:15 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:16 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:17 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:19 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:20 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:21 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:22 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:23 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:24 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:25 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:26 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:28 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:29 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:30 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:31 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:32 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:34 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:35 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:36 server.go:95: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:44:39 main.go:40: Session started +Python Process: 2020/11/14 13:44:39 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:40 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:42 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:43 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:44 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:45 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:46 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:48 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:49 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:50 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:51 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:53 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:54 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:55 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:56 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:58 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:44:59 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:00 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:01 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:03 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:04 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:06 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:07 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:09 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:10 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:12 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:13 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:14 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:15 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:17 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:18 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:19 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:20 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:22 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:23 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:24 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:25 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:26 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:27 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:29 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:30 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:31 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:32 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:33 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:34 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:36 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:37 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:38 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:39 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:40 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:42 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:43 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:44 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:45 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:47 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:48 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:49 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:51 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:52 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:53 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:54 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:56 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:57 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:58 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:45:59 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:01 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:02 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:03 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:04 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:05 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:07 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:08 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:09 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:10 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:12 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:13 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:14 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:15 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:17 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:18 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:19 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:20 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:22 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:23 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:24 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:25 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:27 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:28 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:29 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:30 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:32 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:33 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:34 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:35 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:36 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:37 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:38 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:40 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:41 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:42 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:43 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:44 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:45 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:46 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:47 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:48 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:50 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:51 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:52 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:53 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:54 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:55 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:56 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:57 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:46:59 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:00 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:01 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:02 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:03 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:04 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:06 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:07 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:08 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:09 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:10 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:12 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:13 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:14 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:15 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:16 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:18 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:19 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:20 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:21 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:22 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:24 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:25 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:26 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:27 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:29 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:30 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:31 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:32 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:34 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:35 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:36 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:37 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:38 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:47:42 main.go:40: Session started +Python Process: 2020/11/14 13:47:42 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:43 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:44 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:45 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:46 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:48 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:49 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:50 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:52 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:53 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:54 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:55 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:56 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:57 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:47:59 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:00 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:01 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:02 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:03 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:04 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:05 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:06 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:08 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:09 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:10 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:11 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:12 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:13 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:14 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:16 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:17 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:18 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:48:21 main.go:40: Session started +Python Process: 2020/11/14 13:48:21 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:22 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:23 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:25 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:26 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:27 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:28 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:29 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:30 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:31 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:33 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:34 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:35 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:36 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:38 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:39 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:40 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:41 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:42 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:44 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:45 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:46 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:48 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:49 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:50 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:51 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:48:55 main.go:40: Session started +Python Process: 2020/11/14 13:48:55 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:57 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:58 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:48:59 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:01 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:02 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:03 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:04 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:06 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:07 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:08 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:09 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:11 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:12 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:13 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:14 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:16 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:17 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:18 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:20 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:21 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:22 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:23 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:25 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:49:26 server.go:145: Internal Server Error! Happened during GET request for pattern '/data/': couldn't get snapshots from db: couldn't execute select query: Error 1045: Access denied for user 'admin'@'localhost' (using password: YES) +Python Process: 2020/11/14 13:49:26 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:27 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:29 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:30 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:31 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:32 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:49:37 main.go:40: Session started +Python Process: 2020/11/14 13:49:37 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:39 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:40 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:49:40 server.go:145: Internal Server Error! Happened during GET request for pattern '/data': couldn't get snapshots from db: couldn't execute select query: Error 1045: Access denied for user 'admin'@'localhost' (using password: YES) +Python Process: 2020/11/14 13:49:41 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:42 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:44 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:45 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:46 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:47 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:49:48 server.go:145: Internal Server Error! Happened during GET request for pattern '/data': couldn't get snapshots from db: couldn't execute select query: Error 1045: Access denied for user 'admin'@'localhost' (using password: YES) +Python Process: 2020/11/14 13:49:49 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:50 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:49:53 main.go:40: Session started +Python Process: 2020/11/14 13:49:53 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:54 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:56 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:57 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:58 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:49:59 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:00 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:01 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:03 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:04 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:05 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:06 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:07 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:08 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:10 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:11 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:12 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:13 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:14 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:15 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:16 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:18 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:19 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:20 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:21 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:22 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:23 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:24 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:25 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:27 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:28 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:29 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:30 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:31 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:32 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:33 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:35 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:36 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:37 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:38 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:39 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:40 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:41 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:43 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:44 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:45 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:46 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:47 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:49 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:50 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:51 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:53 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:54 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:55 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:56 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:58 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:50:59 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:00 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:01 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:03 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:04 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:06 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:07 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:08 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:10 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:11 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:12 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:14 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:15 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:16 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:17 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:19 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:20 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:21 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:22 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:24 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:25 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:26 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:27 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:51:30 main.go:40: Session started +Python Process: 2020/11/14 13:51:30 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:31 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:32 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:33 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:35 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:51:38 main.go:40: Session started +Python Process: 2020/11/14 13:51:38 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:39 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:51:39 server.go:145: Internal Server Error! Happened during GET request for pattern '/': couldn't parse the template: template: templater:1: unexpected "}" in operand +Python Process: 2020/11/14 13:51:41 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:42 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:43 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:44 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:46 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:47 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:48 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:51:55 main.go:40: Session started +Python Process: 2020/11/14 13:51:55 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:56 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:57 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:51:59 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:00 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:52:15 main.go:40: Session started +Python Process: 2020/11/14 13:52:15 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:16 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:52:19 main.go:40: Session started +Python Process: 2020/11/14 13:52:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:52:47 main.go:40: Session started +Python Process: 2020/11/14 13:52:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:52:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:53:07 main.go:40: Session started +Python Process: 2020/11/14 13:53:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:53:48 main.go:40: Session started +Python Process: 2020/11/14 13:53:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:53:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:54:20 main.go:40: Session started +Python Process: 2020/11/14 13:54:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:54:50 main.go:40: Session started +Python Process: 2020/11/14 13:54:50 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:51 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:52 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:54 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:55 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:56 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:57 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:54:58 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:00 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:01 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:02 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:04 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:05 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:06 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:07 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:09 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:10 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:11 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:13 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:14 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:15 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:17 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:18 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:20 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:21 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:22 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:24 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:25 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:27 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:28 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:29 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:30 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:32 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:33 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:34 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:35 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:37 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:38 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:39 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:40 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:41 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:43 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:44 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:45 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:46 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:47 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:49 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:50 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:51 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:52 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:54 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:55 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:56 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:57 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:55:59 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:00 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:01 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:02 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:04 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:05 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:06 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:07 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:09 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:56:12 main.go:40: Session started +Python Process: 2020/11/14 13:56:12 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:14 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:15 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:16 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:17 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:19 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:20 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:21 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:23 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:24 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:25 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:26 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:28 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:29 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:30 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:31 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:33 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:34 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:35 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:36 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:38 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:39 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:40 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:41 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:43 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:44 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:45 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:46 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:48 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:49 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:50 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:51 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:53 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:54 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:55 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:57 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:58 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:56:59 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:00 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:02 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:03 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:04 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:06 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:07 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:09 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:10 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:11 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:13 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:14 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:15 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:16 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:18 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:19 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:20 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:21 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:23 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:24 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:25 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:26 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:27 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:29 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:30 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:57:34 main.go:40: Session started +Python Process: 2020/11/14 13:57:34 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:35 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:37 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:38 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:39 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:40 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:42 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:43 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:57:47 main.go:40: Session started +Python Process: 2020/11/14 13:57:47 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:48 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:49 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:51 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:57:52 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:57:59 main.go:40: Session started +Python Process: 2020/11/14 13:57:59 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:00 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:58:01 main.go:40: Session started +Python Process: 2020/11/14 13:58:01 server.go:94: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 13:58:04 main.go:40: Session started +Python Process: 2020/11/14 13:58:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:58:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 13:59:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:00:07 main.go:40: Session started +Python Process: 2020/11/14 14:00:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:00:08 server.go:144: Internal Server Error! Happened during GET request for pattern '/': couldn't parse the template: open ./charts.html: no such file or directory +Python Process: 2020/11/14 14:00:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:00:26 main.go:40: Session started +Python Process: 2020/11/14 14:00:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:00:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:01:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:02:11 main.go:40: Session started +Python Process: 2020/11/14 14:02:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:02:48 main.go:40: Session started +Python Process: 2020/11/14 14:02:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:02:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:03:47 main.go:40: Session started +Python Process: 2020/11/14 14:03:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:03:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:04:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:05:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:06:54 main.go:40: Session started +Python Process: 2020/11/14 14:06:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:06:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:07:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:08:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:09:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:10:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:26:10 main.go:40: Session started +Python Process: 2020/11/14 14:26:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:26:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:27:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:28:37 main.go:40: Session started +Python Process: 2020/11/14 14:28:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:28:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:29:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:30:20 main.go:40: Session started +Python Process: 2020/11/14 14:30:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:30:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:31:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:32:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:33:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:34:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:35:17 main.go:40: Session started +Python Process: 2020/11/14 14:35:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:35:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:36:44 main.go:40: Session started +Python Process: 2020/11/14 14:36:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:36:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:37:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:39:49 main.go:40: Session started +Python Process: 2020/11/14 14:39:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:39:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:39:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:39:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:39:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:39:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:39:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:40:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:41:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:42:08 main.go:40: Session started +Python Process: 2020/11/14 14:42:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:42:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:43:03 main.go:40: Session started +Python Process: 2020/11/14 14:43:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:28 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Main: 2020/11/14 14:43:38 main.go:40: Session started +Python Process: 2020/11/14 14:43:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:43:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:08 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:13 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:18 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:23 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:33 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:38 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:43 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:50 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:58 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:44:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:03 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:21 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:22 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:24 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:25 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:26 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:27 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:29 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:30 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:31 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:32 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:34 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:35 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:36 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:37 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:39 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:40 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:41 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:42 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:44 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:45 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:46 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:47 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:48 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:49 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:51 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:52 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:53 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:54 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:55 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:56 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:57 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:45:59 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:00 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:01 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:02 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:04 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:05 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:06 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:07 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:09 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:10 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:11 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:12 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:14 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:15 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:16 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:17 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:19 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 +Python Process: 2020/11/14 14:46:20 server.go:93: Error: + Traceback (most recent call last): + File "./climate-pinger.py", line 3, in + import adafruit_dht + ModuleNotFoundError: No module named 'adafruit_dht' + exit status 1 diff --git a/climate-server.go b/server.go similarity index 65% rename from climate-server.go rename to server.go index c399436..9c7c8b2 100644 --- a/climate-server.go +++ b/server.go @@ -4,65 +4,42 @@ import ( "errors" "fmt" "github.com/gorilla/mux" + "html/template" "log" "net/http" - "os" "os/exec" "strconv" "strings" "time" ) -const DEBUG = true -const ROOT_URL = "climate/" - -func main() { - err := setup() - defer teardown() - if err == nil { - startServer() - } else { - fmt.Println(err) - } -} - -func setup() error { - err := InitDb() - if err != nil { - return err - } - return nil -} - -func teardown() { - CloseDb() -} +const ROOT_URL = "" func startServer() { port := "8001" - r := mux.NewRouter() - r.HandleFunc("/", showCharts).Methods("GET") - r.HandleFunc("/", showCharts).Methods("GET").Queries("show-minutes", "{[0-9]+}") - r.HandleFunc("/", saveSnapshot).Methods("POST") - r.HandleFunc("/data", sendData).Methods("GET") - r.HandleFunc("/data", sendData).Methods("GET").Queries("since", "") - r.HandleFunc("/data/now", createAndSendSnapshot).Methods("GET") - r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("webapp/dist/")))) + router := mux.NewRouter() + router.HandleFunc("/", showCharts).Methods("GET") + router.HandleFunc("/", showCharts).Methods("GET").Queries("show-minutes", "{[0-9]+}") + router.HandleFunc("/", saveSnapshot).Methods("POST") + router.HandleFunc("/data", sendData).Methods("GET") + router.HandleFunc("/data", sendData).Methods("GET").Queries("since", "") + router.HandleFunc("/data/now", createAndSendSnapshot).Methods("GET") + router.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("webapp/dist/")))) fmt.Printf("Listening on port %s...\n", port) - quitSnapshot := make(chan int, 1) - go saveSnapshotOnInterval(30, quitSnapshot) - log.Fatal(http.ListenAndServe(":"+port, r)) + log.Fatal(http.ListenAndServe(fmt.Sprintf(":%v", port), router)) } func showCharts(w http.ResponseWriter, r *http.Request) { minutes := r.FormValue("show-minutes") if minutes != "" { if _, err := strconv.ParseInt(minutes, 10, 0); err != nil { - http.Redirect(w, r, "/" + ROOT_URL + "/", 303) + http.Redirect(w, r, ROOT_URL, 303) } } - fmt.Println("Hello, anyoneo tehre?") - http.ServeFile(w, r, "./webapp/dist/charts.html") + templater, err := template.ParseFiles("webapp/dist/charts.html") + if internalErrorOnErr(fmt.Errorf("couldn't parse the template: %w", err), w, r) { return } + err = templater.Execute(w, ROOT_URL) + internalErrorOnErr(err, w, r) } func sendData(w http.ResponseWriter, r *http.Request) { @@ -71,7 +48,7 @@ func sendData(w http.ResponseWriter, r *http.Request) { if sinceQuery != "" { newDateSince, err := time.Parse(time.RFC3339Nano, sinceQuery) if err != nil { - http.Redirect(w, r, "/" + ROOT_URL + "/", 303) + http.Redirect(w, r, ROOT_URL, 303) } dateSince = newDateSince } @@ -80,7 +57,8 @@ func sendData(w http.ResponseWriter, r *http.Request) { json, err := createJsonFromSnapshotRecords(records) if internalErrorOnErr(fmt.Errorf("couldn't create json from snapshots: %w", err), w, r) { return } w.Header().Set("Content-Type", "application/json") - fmt.Fprintf(w, string(json)) + _, err = fmt.Fprintf(w, string(json)) + internalErrorOnErr(err, w, r) } func createAndSendSnapshot(w http.ResponseWriter, r *http.Request) { @@ -92,7 +70,8 @@ func createAndSendSnapshot(w http.ResponseWriter, r *http.Request) { json, err := createJsonFromSnapshotRecords([]*SnapshotRecord{dbSnapshotRecord}) if internalErrorOnErr(fmt.Errorf("couldn't create json from last snapshots: %w", err), w, r) { return } w.Header().Set("Content-Type", "application/json") - fmt.Fprintf(w, string(json)) + _, err = fmt.Fprintf(w, string(json)) + internalErrorOnErr(err, w, r) } func saveSnapshot(w http.ResponseWriter, r *http.Request) { @@ -100,22 +79,18 @@ func saveSnapshot(w http.ResponseWriter, r *http.Request) { if internalErrorOnErr(fmt.Errorf("couldn't create snapshot from JSON: %w", err), w, r) { return } newId, err := writeSnapshotToDb(snapshotSub) if internalErrorOnErr(fmt.Errorf("couldn't submit snapshot into the database: %w", err), w, r) { return } - fmt.Fprintf(w, "{id: %v}", newId) + _, err = fmt.Fprintf(w, "{id: %v}", newId) + internalErrorOnErr(err, w, r) } func saveSnapshotOnInterval(seconds int64, stop chan int) { - var err error = nil for { - if err != nil { - log.Println(err.Error()) - } snapshot, err := getSnapshotFromPythonScript() - if err != nil { - continue + if err == nil { + _, err = writeSnapshotToDb(snapshot) } - _, err = writeSnapshotToDb(snapshot) if err != nil { - continue + pythonLogger.Println(err.Error()) } select { case <-stop: @@ -127,16 +102,13 @@ func saveSnapshotOnInterval(seconds int64, stop chan int) { } func getSnapshotFromPythonScript() (*SnapshotSubmission, error) { - process := exec.Command("climate-pinger.py") - process.Stdout = os.Stdout - process.Stderr = os.Stderr - err := process.Run() + output, err := exec.Command("./climate-pinger.py").CombinedOutput() if err != nil { - return nil, err - } - output, err := process.Output() - if err != nil { - return nil, err + return nil, fmt.Errorf( + "Error:\n\t%s%w", + strings.Replace(string(output), "\n", "\n\t", -1), + err, + ) } tokens := strings.Split(string(output), "\n") if len(tokens) != 4 { @@ -160,10 +132,14 @@ func internalErrorOnErr(err error, w http.ResponseWriter, r *http.Request) bool r.URL, err.Error()) } - fmt.Println(errorMessage) + logError(errorMessage) http.Error(w, errorMessage, 500) return true } return false } +func logError(errorMessage string) { + fmt.Println(errorMessage) + mainLogger.Println(errorMessage) +} \ No newline at end of file diff --git a/webapp/dist/charts.html b/webapp/dist/charts.html index 3bd16bc..e9f1b29 100644 --- a/webapp/dist/charts.html +++ b/webapp/dist/charts.html @@ -3,11 +3,11 @@ Ledda's Room Climate - - + + - -
+ +
diff --git a/webapp/dist/main.js b/webapp/dist/main.js index 709c902..d1f4fee 100644 --- a/webapp/dist/main.js +++ b/webapp/dist/main.js @@ -1817,7 +1817,7 @@ eval("/* module decorator */ module = __webpack_require__.nmd(module);\n//! mome /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => __WEBPACK_DEFAULT_EXPORT__\n/* harmony export */ });\n/* harmony import */ var chart_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! chart.js */ \"./node_modules/chart.js/dist/Chart.js\");\n/* harmony import */ var chart_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(chart_js__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _climateChartConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./climateChartConfig */ \"./src/climateChartConfig.ts\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\nvar ClimateChart = /** @class */ (function () {\n function ClimateChart(rootUrl, canvasId, minutesDisplayed) {\n if (minutesDisplayed === void 0) { minutesDisplayed = 60; }\n this.rootUrl = rootUrl;\n this.canvasId = canvasId;\n this.minutesDisplayed = minutesDisplayed;\n this.onLoadedCallback = function () { };\n if (minutesDisplayed > 0 && Math.floor(minutesDisplayed) == minutesDisplayed) {\n this.minutesDisplayed = minutesDisplayed;\n }\n else {\n throw new Error(\"invalid minutes passed to display in chart: \" + minutesDisplayed);\n }\n this.urlEndpoint = this.rootUrl + \"data/\";\n this.urlEndpoint += \"since/\" + this.minutesDisplayed;\n this.initChart();\n }\n ClimateChart.prototype.onLoaded = function (callback) {\n this.onLoadedCallback = callback;\n };\n ClimateChart.isCanvas = function (el) {\n return el.tagName === \"canvas\";\n };\n ClimateChart.prototype.getInitialDataBlob = function () {\n return __awaiter(this, void 0, void 0, function () {\n var data;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0: return [4 /*yield*/, fetch(this.urlEndpoint)];\n case 1:\n data = _a.sent();\n return [4 /*yield*/, data.json()];\n case 2: return [2 /*return*/, _a.sent()];\n }\n });\n });\n };\n ClimateChart.prototype.initChart = function () {\n return __awaiter(this, void 0, void 0, function () {\n var canvasElement, ctx, payload;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n canvasElement = document.getElementById(this.canvasId);\n if (ClimateChart.isCanvas(canvasElement)) {\n ctx = canvasElement.getContext('2d');\n }\n else {\n throw new Error(\"improper HTML element passed, needed type canvas, got \" + canvasElement.tagName);\n }\n return [4 /*yield*/, this.getInitialDataBlob()];\n case 1:\n payload = _a.sent();\n this.latestSnapshot = payload.snapshots[payload.snapshots.length - 1];\n this.chart = new (chart_js__WEBPACK_IMPORTED_MODULE_0___default())(ctx, (0,_climateChartConfig__WEBPACK_IMPORTED_MODULE_1__.generateClimateChartConfig)(this.jsonToChartPoints(payload)));\n setInterval(function () { return _this.updateFromServer(); }, 30 * 1000);\n this.onLoadedCallback();\n return [2 /*return*/];\n }\n });\n });\n };\n ClimateChart.prototype.jsonToChartPoints = function (json) {\n var humidity = [];\n var co2 = [];\n var temp = [];\n for (var i = 0; i < json.snapshots.length; i++) {\n var snapshot = json.snapshots[json.snapshots.length - i - 1];\n co2.push({ x: snapshot.time, y: snapshot.co2 });\n temp.push({ x: snapshot.time, y: snapshot.temp });\n humidity.push({ x: snapshot.time, y: snapshot.humidity });\n }\n return { humidity: humidity, co2: co2, temp: temp };\n };\n ClimateChart.prototype.updateFromServer = function () {\n return __awaiter(this, void 0, void 0, function () {\n var currentTime, url, payload;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n currentTime = (new Date(this.latestSnapshot.time)).toISOString();\n url = \"/\" + this.rootUrl + \"data?since=\" + currentTime;\n return [4 /*yield*/, fetch(url)];\n case 1: return [4 /*yield*/, (_a.sent()).json()];\n case 2:\n payload = _a.sent();\n if (payload.snapshots.length > 0) {\n this.latestSnapshot = payload.snapshots[payload.snapshots.length - 1];\n this.removeExpiredData(currentTime);\n this.insertSnapshots.apply(this, payload.snapshots);\n this.chart.update();\n }\n return [2 /*return*/];\n }\n });\n });\n };\n ClimateChart.prototype.insertSnapshots = function () {\n var snapshots = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n snapshots[_i] = arguments[_i];\n }\n for (var _a = 0, snapshots_1 = snapshots; _a < snapshots_1.length; _a++) {\n var snapshot = snapshots_1[_a];\n this.chart.data.datasets[0].data.push(snapshot.humidity);\n this.chart.data.datasets[1].data.push(snapshot.temp);\n this.chart.data.datasets[2].data.push(snapshot.co2);\n }\n };\n ClimateChart.prototype.removeExpiredData = function (latestTime) {\n for (var i = 0; i < this.chart.data.datasets[0].data.length; i++) {\n var timeOnPoint = this.chart.data.datasets[0].data[i].x;\n var timeElapsedSincePoint = Date.parse(latestTime) - Date.parse(timeOnPoint);\n if (timeElapsedSincePoint > this.minutesDisplayed * 60000) {\n this.chart.data.datasets[0].data.splice(i, 1);\n this.chart.data.datasets[1].data.splice(i, 1);\n this.chart.data.datasets[2].data.splice(i, 1);\n }\n }\n };\n return ClimateChart;\n}());\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ClimateChart);\n\n\n//# sourceURL=webpack://climate-ranger-frontend/./src/ClimateChart.ts?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => __WEBPACK_DEFAULT_EXPORT__\n/* harmony export */ });\n/* harmony import */ var chart_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! chart.js */ \"./node_modules/chart.js/dist/Chart.js\");\n/* harmony import */ var chart_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(chart_js__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _climateChartConfig__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./climateChartConfig */ \"./src/climateChartConfig.ts\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\nvar ClimateChart = /** @class */ (function () {\n function ClimateChart(rootUrl, canvasId, minutesDisplayed) {\n var _this = this;\n if (minutesDisplayed === void 0) { minutesDisplayed = 60; }\n this.rootUrl = rootUrl;\n this.canvasId = canvasId;\n this.minutesDisplayed = minutesDisplayed;\n this.onLoadedCallback = function () { };\n this.onErrorCallback = function () { };\n if (minutesDisplayed > 0 && Math.floor(minutesDisplayed) == minutesDisplayed) {\n this.minutesDisplayed = minutesDisplayed;\n }\n else {\n throw new Error(\"invalid minutes passed to display in chart: \" + minutesDisplayed);\n }\n this.urlEndpoint = this.rootUrl + \"data/\";\n this.urlEndpoint += \"since/\" + this.minutesDisplayed;\n this.initChart().catch(function (e) { _this.onErrorCallback(e); });\n }\n ClimateChart.prototype.onLoaded = function (callback) {\n this.onLoadedCallback = callback;\n };\n ClimateChart.prototype.onErrored = function (callback) {\n this.onErrorCallback = callback;\n };\n ClimateChart.isCanvas = function (el) {\n return el.tagName === \"CANVAS\";\n };\n ClimateChart.prototype.getInitialDataBlob = function () {\n return __awaiter(this, void 0, void 0, function () {\n var data, e_1;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n _a.trys.push([0, 3, , 4]);\n return [4 /*yield*/, fetch(this.urlEndpoint)];\n case 1:\n data = _a.sent();\n return [4 /*yield*/, data.json()];\n case 2: return [2 /*return*/, _a.sent()];\n case 3:\n e_1 = _a.sent();\n throw e_1;\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n ClimateChart.prototype.initChart = function () {\n return __awaiter(this, void 0, void 0, function () {\n var canvasElement, ctx, payload, e_2;\n var _this = this;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n canvasElement = document.getElementById(this.canvasId);\n if (ClimateChart.isCanvas(canvasElement)) {\n ctx = canvasElement.getContext('2d');\n }\n else {\n throw new Error(\"improper HTML element passed, needed type canvas, got \" + canvasElement.tagName);\n }\n this.chart = new (chart_js__WEBPACK_IMPORTED_MODULE_0___default())(ctx, (0,_climateChartConfig__WEBPACK_IMPORTED_MODULE_1__.generateClimateChartConfig)({}));\n _a.label = 1;\n case 1:\n _a.trys.push([1, 3, , 4]);\n return [4 /*yield*/, this.getInitialDataBlob()];\n case 2:\n payload = _a.sent();\n this.latestSnapshot = payload.snapshots[payload.snapshots.length - 1];\n this.insertSnapshots.apply(this, payload.snapshots);\n setInterval(function () { return _this.updateFromServer(); }, 30 * 1000);\n this.onLoadedCallback();\n return [3 /*break*/, 4];\n case 3:\n e_2 = _a.sent();\n this.onErrorCallback(new Error(\"Server error: \" + e_2));\n return [3 /*break*/, 4];\n case 4: return [2 /*return*/];\n }\n });\n });\n };\n ClimateChart.prototype.jsonToChartPoints = function (json) {\n var humidity = [];\n var co2 = [];\n var temp = [];\n for (var i = 0; i < json.snapshots.length; i++) {\n var snapshot = json.snapshots[json.snapshots.length - i - 1];\n co2.push({ x: snapshot.time, y: snapshot.co2 });\n temp.push({ x: snapshot.time, y: snapshot.temp });\n humidity.push({ x: snapshot.time, y: snapshot.humidity });\n }\n return { humidity: humidity, co2: co2, temp: temp };\n };\n ClimateChart.prototype.updateFromServer = function () {\n return __awaiter(this, void 0, void 0, function () {\n var currentTime, url, payload, e_3;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n currentTime = (new Date(this.latestSnapshot.time)).toISOString();\n url = \"/\" + this.rootUrl + \"data?since=\" + currentTime;\n _a.label = 1;\n case 1:\n _a.trys.push([1, 4, , 5]);\n return [4 /*yield*/, fetch(url)];\n case 2: return [4 /*yield*/, (_a.sent()).json()];\n case 3:\n payload = _a.sent();\n if (payload.snapshots.length > 0) {\n this.latestSnapshot = payload.snapshots[payload.snapshots.length - 1];\n this.removeExpiredData(currentTime);\n this.insertSnapshots.apply(this, payload.snapshots);\n this.chart.update();\n }\n return [3 /*break*/, 5];\n case 4:\n e_3 = _a.sent();\n this.onErrorCallback(new Error(\"Server error: \" + e_3));\n return [3 /*break*/, 5];\n case 5: return [2 /*return*/];\n }\n });\n });\n };\n ClimateChart.prototype.insertSnapshots = function () {\n var snapshots = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n snapshots[_i] = arguments[_i];\n }\n for (var _a = 0, snapshots_1 = snapshots; _a < snapshots_1.length; _a++) {\n var snapshot = snapshots_1[_a];\n this.chart.data.datasets[0].data.push(snapshot.humidity);\n this.chart.data.datasets[1].data.push(snapshot.temp);\n this.chart.data.datasets[2].data.push(snapshot.co2);\n }\n };\n ClimateChart.prototype.removeExpiredData = function (latestTime) {\n for (var i = 0; i < this.chart.data.datasets[0].data.length; i++) {\n var timeOnPoint = this.chart.data.datasets[0].data[i].x;\n var timeElapsedSincePoint = Date.parse(latestTime) - Date.parse(timeOnPoint);\n if (timeElapsedSincePoint > this.minutesDisplayed * 60000) {\n this.chart.data.datasets[0].data.splice(i, 1);\n this.chart.data.datasets[1].data.splice(i, 1);\n this.chart.data.datasets[2].data.splice(i, 1);\n }\n }\n };\n return ClimateChart;\n}());\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (ClimateChart);\n\n\n//# sourceURL=webpack://climate-ranger-frontend/./src/ClimateChart.ts?"); /***/ }), @@ -1846,7 +1846,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpac /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _ClimateChart__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ClimateChart */ \"./src/ClimateChart.ts\");\n;\nvar ROOT_URL = \"climate/\";\nvar CHART_DOM_ID = \"myChart\";\nfunction createClimateChart() {\n var pathname = window.location.pathname;\n var minutesDisplayed = 60;\n var argsStart = pathname.search(/\\?minute-span=/);\n if (argsStart !== -1) {\n var parsedMins = Number(pathname[12]);\n if (!isNaN(parsedMins) && parsedMins > 0) {\n minutesDisplayed = parsedMins;\n }\n }\n return new _ClimateChart__WEBPACK_IMPORTED_MODULE_0__.default(ROOT_URL, CHART_DOM_ID, minutesDisplayed);\n}\nvar overlay = document.createElement('div');\noverlay.innerText = 'Loading data...';\noverlay.className = 'overlay';\ndocument.getRootNode().appendChild(overlay);\nvar climateChart = createClimateChart();\nclimateChart.onLoaded(function () {\n overlay.classList.add('hidden');\n});\n\n\n//# sourceURL=webpack://climate-ranger-frontend/./src/main.ts?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _ClimateChart__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ClimateChart */ \"./src/ClimateChart.ts\");\n;\nvar CHART_DOM_ID = \"myChart\";\nvar rootUrl = \"\";\nfunction createClimateChart() {\n var pathname = window.location.pathname;\n if (pathname !== \"/\") {\n rootUrl += pathname.match(/\\/[^?\\s]*/)[0];\n }\n var minutesDisplayed = 60;\n var argsStart = pathname.search(/\\?minute-span=/);\n if (argsStart !== -1) {\n var parsedMins = Number(pathname[12]);\n if (!isNaN(parsedMins) && parsedMins > 0) {\n minutesDisplayed = parsedMins;\n }\n }\n return new _ClimateChart__WEBPACK_IMPORTED_MODULE_0__.default(rootUrl, CHART_DOM_ID, minutesDisplayed);\n}\nvar overlay = document.createElement('div');\noverlay.classList.add('overlay', 'center');\nvar textContainer = document.createElement('span');\ntextContainer.innerText = 'Loading data...';\noverlay.appendChild(textContainer);\ndocument.onreadystatechange = function (e) {\n document.getElementById(\"root\").appendChild(overlay);\n var climateChart = createClimateChart();\n climateChart.onLoaded(function () {\n overlay.classList.add('hidden');\n });\n climateChart.onErrored(function (e) {\n overlay.classList.remove('hidden');\n textContainer.innerText = \"An error occurred: \" + e + \"\\nTry restarting the page.\";\n });\n document.onreadystatechange = function () { };\n};\n\n\n//# sourceURL=webpack://climate-ranger-frontend/./src/main.ts?"); /***/ }) diff --git a/webapp/dist/styles.css b/webapp/dist/styles.css index a8438b7..260177f 100644 --- a/webapp/dist/styles.css +++ b/webapp/dist/styles.css @@ -1,15 +1,36 @@ +html, body { + margin: 0; + height: 100%; +} + .overlay { + background-color: rgba(255, 255, 255, 0.5); + transition: opacity, 1s; + opacity: 100%; +} + +.center { position: absolute; top: 0; left: 0; width: 100%; height: 100%; - background-color: white; - opacity: 50%; - display: table-cell; - text-align: center; + display: flex; + margin: auto; + align-items: center; + justify-content: space-around; +} + +.center > * { + align-content: center; } .hidden { - display: none; + opacity: 0%; +} + +.chart-container { + padding: 10vw; + width: calc(100% - 20vw); + height: calc(100% - 20vw); } \ No newline at end of file diff --git a/webapp/src/ClimateChart.ts b/webapp/src/ClimateChart.ts index 8b1373d..04d1d2e 100644 --- a/webapp/src/ClimateChart.ts +++ b/webapp/src/ClimateChart.ts @@ -18,6 +18,7 @@ class ClimateChart { private chart: Chart | null; private latestSnapshot: Snapshot | null; private onLoadedCallback: () => void = () => {}; + private onErrorCallback: (e: Error) => void = () => {}; constructor( private readonly rootUrl: string, private readonly canvasId: string, @@ -30,20 +31,29 @@ class ClimateChart { } this.urlEndpoint = this.rootUrl + "data/"; this.urlEndpoint += "since/" + this.minutesDisplayed; - this.initChart() + this.initChart().catch((e) => {this.onErrorCallback(e);}); } onLoaded(callback: () => void) { this.onLoadedCallback = callback; } + onErrored(callback: (e: Error) => void) { + this.onErrorCallback = callback; + } + private static isCanvas(el: HTMLElement): el is HTMLCanvasElement { - return el.tagName === "canvas"; + return el.tagName === "CANVAS"; } private async getInitialDataBlob(): Promise { - const data = await fetch(this.urlEndpoint); - return await data.json(); + try { + const data = await fetch(this.urlEndpoint); + return await data.json(); + } + catch (e) { + throw e; + } } private async initChart() { @@ -54,11 +64,17 @@ class ClimateChart { } else { throw new Error(`improper HTML element passed, needed type canvas, got ${canvasElement.tagName}`); } - const payload = await this.getInitialDataBlob(); - this.latestSnapshot = payload.snapshots[payload.snapshots.length - 1]; - this.chart = new Chart(ctx, generateClimateChartConfig(this.jsonToChartPoints(payload))); - setInterval(() => this.updateFromServer(), 30 * 1000); - this.onLoadedCallback(); + this.chart = new Chart(ctx, generateClimateChartConfig({})); + try { + const payload = await this.getInitialDataBlob(); + this.latestSnapshot = payload.snapshots[payload.snapshots.length - 1]; + this.insertSnapshots(...payload.snapshots); + setInterval(() => this.updateFromServer(), 30 * 1000); + this.onLoadedCallback(); + } + catch (e) { + this.onErrorCallback(new Error(`Server error: ${e}`)); + } } private jsonToChartPoints(json: SnapshotRecords): {humidity: ChartPoint[], temp: ChartPoint[], co2: ChartPoint[]} { @@ -77,12 +93,17 @@ class ClimateChart { private async updateFromServer() { const currentTime = (new Date(this.latestSnapshot.time)).toISOString(); const url = "/" + this.rootUrl + "data?since=" + currentTime; - const payload: SnapshotRecords = await (await fetch(url)).json(); - if (payload.snapshots.length > 0) { - this.latestSnapshot = payload.snapshots[payload.snapshots.length - 1]; - this.removeExpiredData(currentTime); - this.insertSnapshots(...payload.snapshots); - this.chart.update(); + try { + const payload: SnapshotRecords = await (await fetch(url)).json(); + if (payload.snapshots.length > 0) { + this.latestSnapshot = payload.snapshots[payload.snapshots.length - 1]; + this.removeExpiredData(currentTime); + this.insertSnapshots(...payload.snapshots); + this.chart.update(); + } + } + catch (e) { + this.onErrorCallback(new Error(`Server error: ${e}`)); } } diff --git a/webapp/src/climateChartConfig.ts b/webapp/src/climateChartConfig.ts index 432718d..8a8ce79 100644 --- a/webapp/src/climateChartConfig.ts +++ b/webapp/src/climateChartConfig.ts @@ -1,9 +1,9 @@ import {ChartConfiguration, ChartPoint, TimeUnit} from "chart.js"; interface ClimateChartSettings { - humidity: ChartPoint[]; - temp: ChartPoint[]; - co2: ChartPoint[]; + humidity?: ChartPoint[]; + temp?: ChartPoint[]; + co2?: ChartPoint[]; colors?: { humidity?: string; temp?: string; diff --git a/webapp/src/main.ts b/webapp/src/main.ts index 1a61bb5..82ff436 100644 --- a/webapp/src/main.ts +++ b/webapp/src/main.ts @@ -1,10 +1,13 @@ import ClimateChart from "./ClimateChart"; -const ROOT_URL: string = "climate/"; const CHART_DOM_ID: string = "myChart"; +let rootUrl: string = ""; function createClimateChart() { const pathname = window.location.pathname; + if (pathname !== "/") { + rootUrl += pathname.match(/\/[^?\s]*/)[0]; + } let minutesDisplayed = 60; const argsStart = pathname.search(/\?minute-span=/); if (argsStart !== -1) { @@ -13,15 +16,24 @@ function createClimateChart() { minutesDisplayed = parsedMins; } } - return new ClimateChart(ROOT_URL, CHART_DOM_ID, minutesDisplayed); + return new ClimateChart(rootUrl, CHART_DOM_ID, minutesDisplayed); } const overlay = document.createElement('div'); -overlay.innerText = 'Loading data...'; -overlay.className = 'overlay'; -document.getRootNode().appendChild(overlay); +overlay.classList.add('overlay', 'center'); +const textContainer = document.createElement('span'); +textContainer.innerText = 'Loading data...'; +overlay.appendChild(textContainer); -const climateChart = createClimateChart(); -climateChart.onLoaded(() => { - overlay.classList.add('hidden'); -}) \ No newline at end of file +document.onreadystatechange = (e) => { + document.getElementById("root").appendChild(overlay); + const climateChart = createClimateChart(); + climateChart.onLoaded(() => { + overlay.classList.add('hidden'); + }); + climateChart.onErrored((e) => { + overlay.classList.remove('hidden'); + textContainer.innerText = `An error occurred: ${e}\nTry restarting the page.`; + }); + document.onreadystatechange = () => {}; +}; \ No newline at end of file