Notice
Recent Posts
Recent Comments
Link
Star_project
urllib request soup 본문
# To add a new cell, type '# %%'
# To add a new markdown cell, type '# %% [markdown]'
# %%
# 2021-04-18
# %%
from urllib import request
w = request.urlopen('https://www.weatheri.co.kr/forecast/forecast01.php?mNum=1&sNum=1')
w.read().decode('utf-8')[:100]
# %%
# requests 모듈 설치
# !pip install requests
# %%
# !chcp 65001
# %%
import requests
r = requests.get('https://www.weatheri.co.kr/forecast/forecast01.php?mNum=1&sNum=1')
print( r.status_code )
r.text[:100]
# %%
from bs4 import BeautifulSoup
# %%
html_doc = """<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title"><b>The Dormouse's story</b></p>
<p class="story">Once upon a time there were three little sisters; and
their names were
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a>
and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>
<p class="story">...</p>"""
# %%
soup = BeautifulSoup(html_doc, 'html.parser')
# %%
soup.prettify()
# %%
type(soup.title), soup.title
# %%
soup.title.name, soup.title.string
# %%
soup.title.parent.name
# %%
soup.p
# %%
soup.p['class']
# %%
soup.a
# %%
soup.find_all('a')
# %%
soup.find(id="link3")
# %%
for link in soup.find_all('a'):
print(link.get('href'))
print(link['href'])
# %%
soup.get_text()
'데이터 분석 > 데이터 수집' 카테고리의 다른 글
oil price - Yahoo Finance API 로 유가데이터 받아오기 (0) | 2022.04.13 |
---|---|
HTML 파싱, bs4, soup 크롤링 연습 레퍼런스 블로그 주소 (0) | 2021.04.18 |