'Python'에 해당되는 글 1건

  1. 2023.02.21 python에서 adb logcat 실행 후 결과 가져오기

python에서 adb logcat 실행 후 결과 가져오기

프로그래밍/python 2023. 2. 21. 22:25
반응형
#!/usr/bin/python

import subprocess

process = subprocess.Popen(['adb', 'logcat'], stdout=subprocess.PIPE)
while True:
    line = process.stdout.readline()
    line = line.decode('utf-8', errors='ignore')
    line = line.strip()
    print(line)
 

 

반응형
: