Getting koscom web page data using python
showindex.py
#!/usr/bin/python
import datetime, time, urllib.request, re
pattern=re.compile(r'KOSPI200.+>(.+?) .+</font>')
while True:
now=datetime.datetime.now()
print(now, end=" ")
data=str(urllib.request.urlopen('http://kosdb.koscom.co.kr/main/jisuticker.html').read())
text=re.search(pattern, data).group(1)
print(text)
time.sleep(60)
while now.hour <= 8 or now.hour >= 15:
time.sleep(60)
now=datetime.datetime.now()
'My Computer Programs' 카테고리의 다른 글
(Racket) get web page, KOSPI200 시세 얻기 (0) | 2012.09.02 |
---|---|
(Racket) 로또 번호 생성 (0) | 2012.09.01 |
(Python) 좌우열기 인쇄 페이지 재설정 (0) | 2012.08.29 |
(Go) 로또 번호 생성 (0) | 2012.08.27 |
(Javascript) 로또 번호 생성 (0) | 2012.08.27 |