Commit e2ce970e by 정용석

Delete t3.py

parent 1b608368
from bs4 import BeautifulSoup
from pprint import pprint
import requests
# 웹 페이지를 열고 소스코드를 읽어오는 작업
html = requests.get("http://comic.naver.com/webtoon/weekday.nhn")
soup = BeautifulSoup(html.text, 'html.parser')
html.close()
#월요웹툰영역 추출하기
data1=soup.find('div',{'class':'col_inner'})
pprint(data1)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment