💻 Programming/Python
[4] 파이썬 웹 스크래핑 - 참고 문법
[4] 파이썬 웹 스크래핑 - 참고 문법
2023.11.241. 슬라이싱 리스트에서 원하는 부분을 잘라낼 수 있음 lst = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] print(lst[:]) # 리스트 모든 요소 print(lst[:8]) # 처음 8개 요소 print(lst[:-3]) # 인덱스 -3까지 모든 요소 print(lst[1:]) # 인덱스 1부터 모든 요소 print(lst[-4:]) # 마지막 4개 요소 print(lst[2:7]) # 인덱스 2~6에 있는 요소 print(lst[::2]) # 리스트 모든 요소, 인덱스 2씩 건너뛰면서 print(lst[:8:2]) # 처음 8개 요소, 인덱스 2씩 건너뛰면서 print(lst[1::2]) # 인덱스 1부터 모든 요소, 인덱스 2씩 건너뛰면서 print(lst[2:7:2]) # 인..
[3] 파이썬 웹 스크래핑 - 데이터 가져오기
[3] 파이썬 웹 스크래핑 - 데이터 가져오기
2023.11.231. Beautifulsoup 외부 라이브러리 설치 원하는 태그를 쉽게 가지고 올 수 있는 라이브러리 2. 사용법 만약 저 노란색 칠한 부분을 따오고 싶다? 크롬 개발자도구 F12 켜서 요소 선택 누른다음에 원하는 부분에 마우스 갖다 대면 태그 네임이 뭔지 나타난다 strong html 태그에 title css 한번 직접 가져와보자 import requests from bs4 import BeautifulSoup response = requests.get("https://sports.news.naver.com/index", verify=False) rating_page = response.text soup = BeautifulSoup(rating_page, 'html.parser') print(soup...
[2] 파이썬 웹 스크래핑 - HTML/CSS
[2] 파이썬 웹 스크래핑 - HTML/CSS
2023.11.211. HTML 구조 내가 원하는 부분을 긁어서 가져오려면 HTML 구조를 다는 아니더라도 기본적으로는 알아야 한다 Mozilla is cool At Mozilla, we’re a global community of technologists thinkers builders working together to keep the Internet alive and accessible, so people worldwide can be informed contributors and creators of the Web. We believe this act of human collaboration across an open platform is essential to individual growth and our col..
[1] 파이썬 웹 스크래핑 - 가져오기
[1] 파이썬 웹 스크래핑 - 가져오기
2023.11.20https://www.jetbrains.com/ko-kr/pycharm/download/?section=windows PyCharm 다운로드: JetBrains가 만든 전문 개발자용 Python IDE www.jetbrains.com 1. 파이참 설치 무료 버전인 파이참 커뮤니티 에디션 설치 2. 프로젝트 생성 다음 다음 다음 생성 3. 라이브러리 설치 터미널 열고 pip3 install requests 또는 셋팅에서 설치되어 있는 라이브러리 확인이나 + - 버튼 눌러서 커맨드 말고 UI 로 설치하거나 제거할 수 있음 4. requests 사용해보기 import requests response = requests.get("https://naver.com", verify=False) print(respon..