반응형
from bs4 import BeautifulSoup
import urllib.request
if __name__ == "__main__":
req = urllib.request.Request("http://gall.dcinside.com/board/lists/?id=kimsohye");
data = urllib.request.urlopen(req).read()
bs = BeautifulSoup(data, 'html.parser')
l = bs.find_all('a')
idx = 0
for s in l :
try :
prop = s.get('class') # get class property
if prop != None and prop[0] == "icon_pic_n":
a = "%s : %s" % (s.get('href'), s.get_text())
print(a)
except UnicodeEncodeError:
print("Error : %d" % (idx))
finally :
idx += 1
반응형
'Python' 카테고리의 다른 글
[파이썬3] beautiful soup 예제 (0) | 2017.01.06 |
---|---|
[파이썬3] lxml 설치하기 (0) | 2017.01.06 |
[디시인사이드] 김소혜 게시판 크롤링 (0) | 2017.01.06 |
[파이썬3] 파이썬 인터프리터에서 테스트 (0) | 2017.01.06 |
[파이썬3] 파이썬 Beautiful Soup 4 설치하기 (0) | 2017.01.06 |
댓글