From 2a80c87d226f38a21be33f3745dbefd01672bfa1 Mon Sep 17 00:00:00 2001 From: ClF3 Date: Wed, 24 Jan 2024 01:09:25 +0800 Subject: [PATCH] edit --- main.py | 39 +++++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/main.py b/main.py index bf24ba6..473f53a 100644 --- a/main.py +++ b/main.py @@ -3,11 +3,14 @@ import numpy as np import urllib.request from datetime import datetime import time -recent=[] +recent_blog=[] +recent_cloud=[] +recent_code=[] +recent_git=[] blog=[] -git=[] cloud=[] code=[] +git=[] width=720 height=50 red=(0x00,0x00,0xff) @@ -69,13 +72,13 @@ if __name__=="__main__": print("connected",delay,"ms") else: print("error") - if len(recent)<10: - recent.append(delay) + if len(recent_blog)<10: + recent_blog.append(delay) else: update_history(blog) update_graph("blog.png",blog) - recent=[] - recent.append(delay) + recent_blog=[] + recent_blog.append(delay) elif datetime.now().second==10 and datetime.now().minute!=lastminute: # if True: @@ -86,13 +89,13 @@ if __name__=="__main__": print("connected",delay,"ms") else: print("error") - if len(recent)<10: - recent.append(delay) + if len(recent_cloud)<10: + recent_cloud.append(delay) else: update_history(cloud) update_graph("cloud.png",cloud) - recent=[] - recent.append(delay) + recent_cloud=[] + recent_cloud.append(delay) elif datetime.now().second==20 and datetime.now().minute!=lastminute: # if True: @@ -103,13 +106,13 @@ if __name__=="__main__": print("connected",delay,"ms") else: print("error") - if len(recent)<10: - recent.append(delay) + if len(recent_code)<10: + recent_code.append(delay) else: update_history(code) update_graph("code.png",code) - recent=[] - recent.append(delay) + recent_code=[] + recent_code.append(delay) elif datetime.now().second==30 and datetime.now().minute!=lastminute: # if True: @@ -120,10 +123,10 @@ if __name__=="__main__": print("connected",delay,"ms") else: print("error") - if len(recent)<10: - recent.append(delay) + if len(recent_git)<10: + recent_git.append(delay) else: update_history(git) update_graph("git.png",git) - recent=[] - recent.append(delay) \ No newline at end of file + recent_git=[] + recent_git.append(delay) \ No newline at end of file