import json
data = """
{
"devname": "FAC3KE3R16000005",
"devid": "FAC3KE3R16000005",
"vd": "root",
"faclogindex": "38867",
"logid": "10001",
"logdesc": "GUI_ENTRY_ADDITION",
"type": "event",
"subtype": "Admin",
"level": "information",
"user": "admin",
"action": "Add",
"msg": "Added Local User: siemtest3",
"tz": "+0900"
}
"""
# Load JSON data
json_data = json.loads(data)
# Find key that contains the string "GUI" in its value
key_with_gui = None
for key, value in json_data.items():
if 'GUI' in value:
key_with_gui = key
break
if key_with_gui:
print("The key that contains the string 'GUI' in its value is:", key_with_gui)
else:
print("No key contains the string 'GUI' in its value.")
'Development' 카테고리의 다른 글
Python - 원격지 SMB 서버에 접속해서 경로 내의 파일경로를 모두 entry 로 저장 (0) | 2023.02.14 |
---|---|
Python - Telegram MSG 발송 (0) | 2023.02.04 |
Python - Syslog Parsing 후 JSON 으로 정렬하기 예제_re, json (0) | 2023.02.04 |
Python - 이미지를 찾아 화면 클릭하기예제_pyautogui random time_이때 랜덤을 활용해 클릭갭, 이미지 내 랜덤좌표 클릭 수행 (0) | 2023.02.04 |
Python - paramiko, csv, invoke_shell 을 사용해 원격지 서버로 SSH 명령어를 전송하고 CSV 파일로 내역을 저장하는 예제 (0) | 2023.02.04 |