Python 파이썬 웹사이트의 이미지 가져오기
2020. 4. 10. 11:28ㆍPython/소스코드
728x90
반응형
import time
import os
import urllib.request
import requests
from bs4 import BeautifulSoup
def _download_img():
# [이미지 다운로드 예제]
url = "https://movie.naver.com/movie/bi/mi/basic.nhn?code=157297"
response = requests.get(url)
print(response) # 체크 200은 요청 성공
html = requests.get(url).text
soup = BeautifulSoup(html, 'html.parser')
a = soup.find("div", class_="poster")
b = a.find("a", {"href": "#"})
c = b.find("img")["src"]
print(b)
print(c)
urllib.request.urlretrieve(c, "./img" + "dd.png")
print("이미지 다운로드 완료")
728x90
반응형
'Python > 소스코드' 카테고리의 다른 글
Python 숫자 입력받아서 요일 가져오기 (0) | 2020.04.10 |
---|---|
Python Outlook 아웃룩 메일 보내기 예제 (2) | 2020.04.10 |
Python 파이썬 실시간 검색어가져오기(Requests사용) (0) | 2020.04.10 |
Python 파이썬 exe 실행파일 만들기 (0) | 2020.04.10 |
Python 파이썬 16진수에서 10진수, 2진수를 10진수로, 8진수를 10진수로 (0) | 2020.04.10 |