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 | 31 |
Tags
- 질의작성기
- 코딩연습
- 랜덤수출력
- c#
- 라즈베리파이
- db개발자
- Oracle
- Django
- SQL개발자
- C#함수
- mtv패턴
- SQL전문가
- trycatch문
- sqld요점정리
- Python
- sqld요약
- 저장프로시저
- BeutifulSoup
- 람다식
- 역순출력
- 데이터삽입
- 아두이노
- ISTQB
- SQLD
- 완전수
- outerjoin
- istqb-al
- 파이썬
- sqld1과목
- 대리자
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