Ausgabe der neuen DB Einträge

This commit is contained in:
hubobel 2022-01-03 19:22:44 +01:00
parent 01b17d712e
commit dde957e306

29
SQL.py
View file

@ -11,31 +11,14 @@ try:
except: except:
print ('weiter') print ('weiter')
sql = "SELECT * FROM speed ORDER BY Nr DESC" sql = "SELECT * FROM speed"
Anzahl = cursor.execute(sql) Anzahl = cursor.execute(sql)
resp = cursor.fetchall()
Anzahl = int(Anzahl+1) a = (len(resp)) - 7
print(Anzahl) resp = resp[a:]
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}} for i in resp:
print(i[5])
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)
up = round(up, 2)
ping = round(ping, 1)
val = f'"{Anzahl}", "{time}", "{server}", "{ip}", "{ping}", "{down}", "{up}"'
sql = f'INSERT INTO speed VALUE ({val})'
print(sql)
resp = cursor.execute(sql)
connection.commit()
cursor.close() cursor.close()