|
@@ -5,17 +5,19 @@ cmd='aws cloudtrail lookup-events --lookup-attributes AttributeKey=EventName,Att
|
|
|
cmds=cmd.split(' ')
|
|
|
#cl=subprocess.run(cmds,text=True, capture_output=True)
|
|
|
cl=subprocess.Popen(cmds, stdout=subprocess.PIPE)
|
|
|
-lines = cl.stdout.readlines()
|
|
|
+lst=[]
|
|
|
+
|
|
|
+while True:
|
|
|
+ l = cl.stdout.readline()
|
|
|
+ if '"AccessKeyId":' in l:
|
|
|
+ lst.append(l)
|
|
|
+
|
|
|
+ if '"EventName":' in l:
|
|
|
+ lst.append(l)
|
|
|
+#lines = cl.stdout.readlines()
|
|
|
#clstr=str(cl)
|
|
|
#lines=clstr.split('\n')
|
|
|
-lst=[]
|
|
|
-for l in lines:
|
|
|
- print(l)
|
|
|
-# if '"AccessKeyId":' in l:
|
|
|
-# lst.append(l)
|
|
|
|
|
|
-# if '"EventName":' in l:
|
|
|
- # lst.append(l)
|
|
|
|
|
|
print(lst)
|
|
|
|