for example
- <tr id="abc1"> ... <tr id="abc2"> ... <tr id="abc9">
===================================
from bs4 import BeautifulSoup
import re
driver.get('http://aigwon.tistory.com')
html = driver.page_source
bsObject = BeautifulSoup(html,"html.parser")
crawling_test = bsObject.findAll('tr', id=re.compile('^abc-'))
'python' 카테고리의 다른 글
[python] Removing \xa0 from string (0) | 2019.08.27 |
---|---|
[python] no support pyautogui.typewrite('UNICODE like 한글') (0) | 2019.08.18 |
[python] for using cv2 (0) | 2019.08.12 |
[python] ModuleNotFoundError: No module named 'pip' (0) | 2019.08.11 |
[python - BeautifulSoup] crawling NAVER's realtimeKeyword (0) | 2019.08.05 |