如果我的网站页面上有多个表,并且我想根据beautifulsoup4中的关键字从特定表中检索特定行的源代码,该如何使用days_of_week
或(task_id, day_of_week)
个方法(或与此相关的任何其他方法)
使用上表,假设我要检索包含关键字“ ROW 1”(或“ A”,“ B”,“ C”等)的行,仅排,我该怎么办?
答案 0 :(得分:0)
使用pandas抓取整个html,然后执行以下操作(此代码未经测试)
import pandas as pd
html_table = 'From your web scrapping'
df = pd.read_html(io=html_table)
df.loc[1] # Will give you all the information for the first row
我建议花10分钟学习熊猫,这将对您有帮助。 https://pandas.pydata.org/pandas-docs/stable/getting_started/10min.html
答案 1 :(得分:0)