1
0

cl-test.py 663 B

123456789101112131415161718192021222324252627282930313233
  1. import subprocess
  2. import json
  3. import sys
  4. cmd='aws cloudtrail lookup-events --lookup-attributes AttributeKey=EventName,AttributeValue=RunInstances --max-results 20 --region us-east-1'
  5. cmds=cmd.split(' ')
  6. #cl=subprocess.run(cmds,text=True, capture_output=True)
  7. cl=subprocess.Popen(cmds, stdout=subprocess.PIPE)
  8. lst=[]
  9. while True:
  10. l = cl.stdout.readline()
  11. if not l:
  12. break
  13. l=str(l)
  14. if '"AccessKeyId":' in l:
  15. lst.append(l)
  16. if '"EventName":' in l:
  17. lst.append(l)
  18. #lines = cl.stdout.readlines()
  19. #clstr=str(cl)
  20. #lines=clstr.split('\n')
  21. print(lst)
  22. # print(l)
  23. # sys.exit()
  24. #js=json.loads(str(cl))
  25. #print(js)