你可以帮我把以下元素的索引更新到这里面么soup = BeautifulSoup(response.text, "html.parser") for row in soup.select(".table-row"): departure_port = row.select_one(".departure-port").text.strip() departure_time = row.select_one(".departure-time").text.strip() arrival_port = row.select_one(".arrival-port").text.strip() arrival_time = row.select_one(".arrival-time").text.strip() vessel_name = row.select_one(".vessel-name").text.strip()
时间: 2024-03-27 18:40:18 浏览: 80
Python使用Beautiful Soup爬取豆瓣音乐排行榜过程解析
5星 · 资源好评率100%
当然可以,以下是您所需要的所有元素的索引:
```python
soup = BeautifulSoup(response.text, "html.parser")
for row in soup.select(".table-row"):
departure_port = row.select_one(".departure-port").text.strip()
departure_time = row.select_one(".departure-time").text.strip()
arrival_port = row.select_one(".arrival-port").text.strip()
arrival_time = row.select_one(".arrival-time").text.strip()
vessel_name = row.select_one(".vessel-name").text.strip()
terminal = row.select_one('div[class="mds-text--medium-bold"]').text.strip()
voyage_number = row.select('td')[5].text.strip()
transit_time = row.select('td')[6].text.strip()
service_name = row.select('td')[7].text.strip()
service_type = row.select('td')[8].text.strip()
price = row.select('td')[9].text.strip()
print(departure_port, departure_time, arrival_port, arrival_time, vessel_name, terminal, voyage_number, transit_time, service_name, service_type, price)
```
这里增加了以下元素的索引:
- `terminal`:使用了之前提到的 CSS 选择器来查找具有 `class="mds-text--medium-bold"` 属性的 `div` 元素;
- `voyage_number`:使用了 `row.select('td')[5]` 来获取行中第 6 个 `td` 元素,并使用 `text` 属性来获取元素的文本内容;
- `transit_time`:使用了 `row.select('td')[6]` 来获取行中第 7 个 `td` 元素,并使用 `text` 属性来获取元素的文本内容;
- `service_name`:使用了 `row.select('td')[7]` 来获取行中第 8 个 `td` 元素,并使用 `text` 属性来获取元素的文本内容;
- `service_type`:使用了 `row.select('td')[8]` 来获取行中第 9 个 `td` 元素,并使用 `text` 属性来获取元素的文本内容;
- `price`:使用了 `row.select('td')[9]` 来获取行中第 10 个 `td` 元素,并使用 `text` 属性来获取元素的文本内容。
这些元素的索引可以通过观察网页的 HTML 代码和属性来确定。
阅读全文