관리 메뉴

웹개발자의 기지개

[python] 파이썬 기본 수업 2일차(2/6) - 크롤링, 로또번호 긁어오기 본문

python/파이썬 교육

[python] 파이썬 기본 수업 2일차(2/6) - 크롤링, 로또번호 긁어오기

http://portfolio.wonpaper.net 2020. 6. 12. 12:05
pip install BeautifulSoup4 #라이브러리 설치

Requirement already satisfied: BeautifulSoup4 in c:\users\403-1-1\anaconda3\lib\site-packages (4.8.2)
Requirement already satisfied: soupsieve>=1.2 in c:\users\403-1-1\anaconda3\lib\site-packages (from BeautifulSoup4) (1.9.5)
Note: you may need to restart the kernel to use updated packages.

-- 아니콘다 설치하면 이미 설치가 되어 있다.

 

 

로또 사이트의 당첨번호 긁어오기

 

1
2
3
4
5
6
7
import requests #네트워크 통신용
from bs4 import BeautifulSoup # 크롤링용
res = requests.get("https://dhlottery.co.kr/common.do?method=main")
soup = BeautifulSoup(res.content,'html.parser')
result = soup.select('.ball_645')
for num in result:
    print(num.text,"번")
cs

 

16 번

19 번

24 번

33 번

42 번

44 번

27 번

 

 

Comments