gpt4 book ai didi

python - 使用 BeautifulSoup 4 时如何将表中的信息获取到变量中?

转载 作者:行者123 更新时间:2023-12-01 04:56:49 24 4
gpt4 key购买 nike

我有一个表,在下面找到并存储为“表”。它包含以下内容:

http://pastebin.com/aBFLpU4U

我的代码捕获了正确的信息,但我需要知道如何将每条信息放入它自己的变量中。我感谢任何帮助,我只玩了一周的 BeautifulSoup 所以请原谅我。我已经查看了整个堆栈,但没有找到适合我的答案。

这是我看到的输出:http://pastebin.com/fiYQvBix

import sys, locale, os, re, urllib2
import lxml.etree, requests
from bs4 import BeautifulSoup as bSoup

# Website that we are scraping:
BASE_URL = 'https://www.biddergy.com/detail.asp?id='

#ID = raw_input("Enter listing #: ")
ID = str(330998) # defined constant for debugging
# Store response in soup:
response = requests.get(BASE_URL+ID)
soup = bSoup(response.text)

# Find auction info <table>
table = soup.find('table', cellpadding="2")

#### Everything above this line works great ####

for row in table.find_all('tr'):
for col in row.find_all("td"):
print(col.string)

最佳答案

嗯,我已经明白了。

data = []
for row in table.find_all('tr'):
for cols in row.find_all('td', text=True)
for col in cols:
data.append(col.strip())

然后可以从data[]列表中提取数据并将其保存到各自的变量中。

感谢所有阅读我的问题的人!

关于python - 使用 BeautifulSoup 4 时如何将表中的信息获取到变量中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27185425/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com