From 47a214ba2f5332f3c6bfc69cbd2cb0bfc2eee5b1 Mon Sep 17 00:00:00 2001 From: hubobel Date: Mon, 3 Jan 2022 18:58:49 +0100 Subject: [PATCH] =?UTF-8?q?Ausgabe=20der=20neuen=20DB=20Eintr=C3=A4ge?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Speedtest.py | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/Speedtest.py b/Speedtest.py index 203f362..891705c 100644 --- a/Speedtest.py +++ b/Speedtest.py @@ -19,29 +19,25 @@ except: print ('weiter') sql = "SELECT * FROM speed ORDER BY Nr DESC" - Anzahl = cursor.execute(sql) - Anzahl = int(Anzahl+1) servers = [] - threads = None - s = speedtest.Speedtest() s.get_servers(servers) s.get_best_server() s.download(threads=threads) s.upload(threads=threads) s.results.share() -results_dict = {'client': {'rating': '0', 'loggedin': '0', 'isprating': '3.7', 'ispdlavg': '0', 'ip': '84.63.254.177', 'isp': 'Vodafone Germany DSL', 'lon': '8.1189', 'ispulavg': '0', 'country': 'DE', 'lat': '49.7403'}, 'bytes_sent': 22970368, 'download': 28727296.703763857, 'timestamp': '2022-01-02T15:26:51.753501Z', 'share': u'http://www.speedtest.net/result/12547122848.png', 'bytes_received': 36013552, 'ping': 15.811, 'upload': 17662540.706131537, 'server': {'latency': 15.811, 'name': 'Frankfurt', 'url': 'http://speedtest.ropa.de:8080/speedtest/upload.php', 'country': 'Germany', 'lon': '8.6821', 'cc': 'DE', 'host': 'speedtest.ropa.de:8080', 'sponsor': 'ropa GmbH & Co. KG', 'lat': '50.1109', 'id': '37748', 'd': 57.65047622507195}} + +#results_dict = {'client': {'rating': '0', 'loggedin': '0', 'isprating': '3.7', 'ispdlavg': '0', 'ip': '84.63.254.177', 'isp': 'Vodafone Germany DSL', 'lon': '8.1189', 'ispulavg': '0', 'country': 'DE', 'lat': '49.7403'}, 'bytes_sent': 22970368, 'download': 28727296.703763857, 'timestamp': '2022-01-02T15:26:51.753501Z', 'share': u'http://www.speedtest.net/result/12547122848.png', 'bytes_received': 36013552, 'ping': 15.811, 'upload': 17662540.706131537, 'server': {'latency': 15.811, 'name': 'Frankfurt', 'url': 'http://speedtest.ropa.de:8080/speedtest/upload.php', 'country': 'Germany', 'lon': '8.6821', 'cc': 'DE', 'host': 'speedtest.ropa.de:8080', 'sponsor': 'ropa GmbH & Co. KG', 'lat': '50.1109', 'id': '37748', 'd': 57.65047622507195}} results_dict = s.results.dict() up = float(results_dict['upload'])/1000000 ping = float(results_dict['ping']) down = float(results_dict['download'])/1000000 -#time = str(results_dict['timestamp']) ip = str(results_dict['client']['ip']) server = str(results_dict['server']['url']) down = round(down, 2) @@ -49,15 +45,11 @@ up = round(up, 2) ping = round(ping, 1) time = (time.strftime("%Y-%m-%d-%H.%M.%S")) - - val = f'"{Anzahl}", "{time}", "{server}", "{ip}", "{ping}", "{down}", "{up}", "{version}"' sql = f'INSERT INTO speed VALUE ({val})' -print(sql) resp = cursor.execute(sql) connection.commit() - cursor.close() connection.close() \ No newline at end of file