mirror of
https://gitlab.sectorq.eu/jaydee/python.git
synced 2025-12-13 18:24:53 +01:00
12 lines
262 B
Python
12 lines
262 B
Python
import python_aida64
|
|
import json
|
|
from pprint import pprint
|
|
data = python_aida64.getData()
|
|
print(json.dumps(data))
|
|
print(data["sys"][5]["value"])
|
|
stats = {}
|
|
for i in data:
|
|
for j in data[i]:
|
|
stats[j["id"]] = j["value"]
|
|
|
|
print(json.dumps(stats)) |