Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- 아두이노
- 라즈베리파이
- outerjoin
- 데이터삽입
- SQL개발자
- sqld요점정리
- sqld1과목
- 질의작성기
- C#함수
- ISTQB
- db개발자
- 파이썬
- 완전수
- 코딩연습
- Django
- mtv패턴
- 저장프로시저
- trycatch문
- SQLD
- 람다식
- 랜덤수출력
- SQL전문가
- c#
- BeutifulSoup
- Python
- 역순출력
- sqld요약
- Oracle
- 대리자
- istqb-al
Archives
- Today
- Total
목록Parsing (1)
JIMINOTE
[PYTHON] 크롤링 Parsing (BeautifulSoup)
- 네이버 웹툰 제목 가져오기 result = get_html('https://comic.naver.com/webtooon/list.nhn?titleld=557672') table = parse.select_one('table.viewList') trs= table.select('tr') for tr in trs: title = tr.select_one('td.title>a') if title: print(title.get('href')) print(title.getText().replace('\n',''), end=' // ') num = tr.select_one('.num') if num: print(num.getText()) - 네이버TV 검색결과 가져오기 import requests from bs..
공부/PYTHON
2020. 8. 22. 13:19