์น ์คํฌ๋ํ
- ์์ฒญ๊ณผ ์๋ต*****
- ์์ฒญ(์ ๋ณด๋ฅผ ์ํ๋ ์ฌ๋:ํด๋ผ์ด์ธํธ) ——→์ฃผ์URL ์๋ต(์ ๋ณด๋ฅผ ์ฃผ๋ ์ฌ๋:์๋ฒ)
- ๋ฌธ์(HTML, XML,JSON๋ฑ)<———
- HTTP →ํ๋กํ ์ฝ, ๊ท์
์์ฒญ๊ณผ ์๋ต*****
- ๋ธ๋ผ์ฐ์ ๋ฅผ ํตํด ์ฃผ์๋ก ์์ฒญ์ ๋ณด๋ด๊ณ , ์๋ต ๊ฒฐ๊ณผ๋ฅผ ๋ธ๋ผ์ฐ์ ๊ฐ ์น ํ๋ฉด์ผ๋ก ๋๋๋ง ํ๋ค.
- ํ์ด์ฌ์ ํตํด ์ฃผ์๋ก ์์ฒญ๋ณด๋ด๊ณ , ์๋ต ๊ฒฐ๊ณผ๋ฅผ ํ์ด์ฌ์ผ๋ก ์กฐ์ํ๋ค.
requests
- request: HTTP for Humans
- requests๋ ๊ฐ์ฅ ๊ฐ๋จํ ์์ฒญ๊ณผ ์๋ต์ ํด์ฃผ๋ python library
# ์น ์ฌ์ดํธ์ ์ ๋ณด๋ฅผ ๊ฐ์ง๊ณ ์ค๊ณ ์ถ๋ค.
import requests
from bs4 import BeautifulSoup
# 1. ์ฃผ์
URL = '<https://finance.naver.com/sise/>'
# 2. ์์ฒญ
# <https://docs.python-requests.org/en/latest/user/quickstart/#make-a-request>
# response (200) : ์ฑ๊ณต์ ์ผ๋ก ๊ฐ์ ธ์๋ค! 404 -์ฐ๋ฆฌ๊ฐ ์๋ชป / 500 - ๊ฐ๋ฐ์๊ฐ ์๋ชป
response = requests.get(URL)
print(response) #txt ๋ถ์ผ๋์๋ ๋ค๋ฆ! ๋ญ์์ง??
response = requests.get(URL).text
print(type(response)) # type :string
# 2-1. BeautifulSoup (text -> ๋ค๋ฅธ ๊ฐ์ฒด)
# #KOSPI_now
# Beautiful Soup is a Python library for pulling data out of HTML and
# H
data = BeautifulSoup(response, 'html.parser')
# print(type(data), type(response)) # type์ด bs4.BeautifulSoup str๋ก ๋ค๋ฆ
# 2.2 ๋ด๊ฐ ์ํ๋ ์ ๋ณด๋ฅผ ๊ฐ์ ธ์จ๋ค!
kospi = data.select_one('#KOSPI_now')
print(kospi.text)
- ์ ๋ณด ์คํฌ๋ฉ 1๋จ๊ณ - ์์ฒญ
- ์ ๋ณด๊ฐ ์๋ ์ฌ์ดํธ URL์ ํ์ธํ๋ค.
- url = ‘https://naver.com’
- URL๋ก ์์ฒญ์ ๋ณด๋ธ๋ค.
- import requests
- response = requests.get(url).text
- BeautifulSoup
- html file์ ์๋ ๋ฐ์ดํฐ๋ฅผ ๊ฐ์ง๊ณ ์ค๋ library
- [API] Application Programming Intercface
- ์ปดํจํฐ๋ ์ปดํจํฐ ํ๋ก๊ทธ๋จ ์ฌ์ด์ ์ฐ๊ฒฐ
- ์ผ์ข ์ ์ํํธ์จ์ด ์ธํฐํ์ด์ค์ด๋ฉฐ ๋ค๋ฅธ ์ข ๋ฅ์ ์ํํธ์จ์ด ์๋น์ค๋ฅผ ์ ๊ณต
- ์ฌ์ฉํ๋ ๋ฐฉ๋ฒ์ ๊ธฐ์ ํ๋ ๋ฌธ์๋ ํ์ค์ API ์ฌ์/๋ช ์ธ(specification)
- API ํ์ฉํ๋ ๋ฐฉ๋ฒ
- ์์ฒญํ๋ ๋ฐฉ์์ ๋ํ ์ดํด
- ์ธ์ฆ ๋ฐฉ์
- URL ์์ฑ
- ๊ธฐ๋ณธ ์ฃผ์
- ์ํ๋ ๊ธฐ๋ฅ์ ๋ํ ์ถ๊ฐ ๊ฒฝ๋ก
- ์์ฒญ ๋ณ์(ํ์์ ์ ํ)
- ์๋ต ๊ฒฐ๊ณผ์ ๋ํ ์ดํด
- ์๋ต ๊ฒฐ๊ณผ ํ์ (JSON)
- ์๋ต ๊ฒฐ๊ณผ ๊ตฌ์กฐ
- ์์ฒญํ๋ ๋ฐฉ์์ ๋ํ ์ดํด
- API ๋ช ์ธ ์์(๋ค์ด๋ฒ์ํ๊ฒ์, ๊ณต๊ณต๋ฐ์ดํฐํฌํธ,์นด์นด์คํก)
- API ๊ฐ๋จ ํ์ฉ ์ค์ต
import requests
# 1. URL
# ์์ฒญ ๋ณ์ : ?name=michael
r = requests.get('<https://api.agify.io?name=michael>'
URL = '<https://api.agify.io>'
params = { 'name': 'michael' }
# 2. ์์ฒญ
response = requests.get(URL).json()
print(response)
print(response.get('age'))
ํ์ผ๋ฐ์ดํฐ →๊ณผ๊ฑฐ๋ฐ์ดํฐ, ์คํapi →์ค์๊ฐ ๋ฐ์ดํฐ
# 0. import
import requests
# 1. URL ๋ฐ ์์ฒญ๋ณ์ ์ค์
# https://developers.themoviedb.org/3/movies/now_playing
#http๋ก ์์ฒญ๋ณด๋ผ๊ฑฐ์ผ, ์ฃผ์๊ฐ ์๊ณ ๊ทธ ์ฃผ์์ ์์ฒญ ํ๋ผ๋ฏธํฐ์ ๊ฐ์ด ์์ด
#params๋ฅผ url๋ก ๋ง๋๋ ๋ฒ์ ์๋ซ์ค๊ณผ ๊ฐ์
# https://api.themoviedb.org/3/movie/now_playing?api_key=8854669b886a6c07c12ea947bcc2311d®ion=KR&language=ko
BASE_URL = 'https://api.themoviedb.org/3'
path = '/movie/now_playing'
params = {'api_key' : '8854669b886a6c07c12ea947bcc2311d', 'region' : 'KR', 'language' : 'ko'}
# 2. ์์ฒญ ๋ณด๋ธ ๊ฒฐ๊ณผ ์ ์ฅ
response = requests.get(BASE_URL+path, params=params).json()
print(response.status_code, response.url)
data = response.json()
# 3. ์กฐ์...
print(response)
'Development > JSON' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
JSON (0) | 2022.03.06 |
---|---|
JSON (0) | 2022.03.06 |
๋๊ธ