123456789101112131415161718192021222324252627282930313233 |
- import subprocess
- import json
- import sys
- cmd='aws cloudtrail lookup-events --lookup-attributes AttributeKey=EventName,AttributeValue=RunInstances --max-results 20 --region us-east-1'
- cmds=cmd.split(' ')
- #cl=subprocess.run(cmds,text=True, capture_output=True)
- cl=subprocess.Popen(cmds, stdout=subprocess.PIPE)
- lst=[]
- while True:
- l = cl.stdout.readline()
- if not l:
- break
- l=str(l)
- 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')
- print(lst)
- # print(l)
- # sys.exit()
- #js=json.loads(str(cl))
- #print(js)
|