python/크롤링
[python] 파이썬 웹 크롤링 - 6 : 한국 피파랭킹 크롤링
파이썬으로 피파랭킹 크롤링을 해보도록하겠습니다. 먼저 전체 피파랭킹은 피파 공식 홈페이지에서 확인 할 수 있습니다. 그럼 해당 웹페이를 활용해 전체 피파랭킹을 크롤링 해보도록 하겠습니다. table 태그로 구성되어있으며 rank-table이라는 id값이 지정되어있습니다. 해당 id값으로 데이터를 긁어 오겠습니다. import requests from bs4 import BeautifulSoup fifa_rank = "https://www.fifa.com/fifa-world-ranking/ranking-table/men/" fifa_rank_html = requests.get(fifa_rank) fifa_rank_html_list = BeautifulSoup(fifa_rank_html.content ,"h..
2019. 11. 12. 22:36
최근댓글