Python/크롤링
[Python/웹 크롤링] 웹 크롤링
기록하는_사람
2022. 10. 5. 20:04
웹 크롤링(Web Crawling)
📌 웹 크롤링(Web Crawling)
: 웹(Web)에 있는 데이터를 가져오는 것.
💡 웹 파싱(Web Parsing)
: 웹(Web)에 있는 데이터를 규격에 맞게 분석, 가공하는 것.
💡 웹 스크래핑(Web Scraping)
: 웹(Web)에 있는 데이터를 모으는 모든 과정.
requests 라이브러리
https://codingrecord2209.tistory.com/136
[Python] requests 라이브러리
requests 라이브러리 설치 📌 requests 라이브러리 설치 cmd창에 다음을 입력해 설치. pip install requests 💡 용어 client : 데이터를 요청하는 주체. server : 데이터를 제공하는 주체. request : 데이터를 요..
codingrecord2209.tistory.com
BeautifulSoup 패키지
https://codingrecord2209.tistory.com/137
[Python] BeautifulSoup 패키지
BeautifulSoup 패키지 설치 📌 BeautifulSoup 패키지 설치 cmd창에 다음을 입력해 설치. pip install beautifulsoup4 BeautifulSoup 패키지 사용 📌 BeautifulSoup 패키지 : HTML, XML 문서들의 구문을 분석하기..
codingrecord2209.tistory.com