python 으로 file parsing (변화 내용 검사 하기)
python 으로 file parsing (변화 내용 검사 하기) python (파이썬) 으로 android logcat message 실시간(?) 검사하기 예제 소스 구글링 실패로 python (파이썬) 으로 logcat message 를 filtering 하는 방법을 못 찾아 대충 만들어 버렸습니다. ㅠㅠ 소스는 아래와 같습니다. import threading import time class ThreadTest(threading.Thread): def run(self): fileseek = 0 while True : f = open("logcat.out","r") f.seek(fileseek) while True : print ("in Thread") data = f.readline() filesee..
Study/Python
2014. 11. 12. 23:37