作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Python 中的 BeautifulSoup 新手,我正在尝试从 BeautifulSoup 中提取 dict
。
我使用 BeautifulSoup 提取 JSON 并获得 beautifulsoup.beautifulsoup
变量 soup
。
我试图从 soup
中获取值,但是当我执行 result = soup.findAll("bill")
时,我得到一个空列表 []
。我怎样才能提取汤来获得dict
结果:
{u'congress': 113,
u'number': 325,
u'title': u'A bill to ensure the complete and timely payment of the obligations of the United States Government until May 19, 2013, and for other purposes.',
u'type': u'hr'}
print type(soup)
print soup
=> 结果如下
BeautifulSoup.BeautifulSoup
{
"bill": {
"congress": 113,
"number": 325,
"title": "A bill to ensure the complete and timely payment of the obligations of the United States Government until May 19, 2013, and for other purposes.",
"type": "hr"
},
"category": "passage",
"chamber": "s"
}
<小时/>
更新
这是我如何得到汤
:
from BeautifulSoup import BeautifulSoup
import urllib2
url = urllib2.urlopen("https://www.govtrack.us/data/congress/113/votes/2013/s11/data.json")
content = url.read()
soup = BeautifulSoup(content)
最佳答案
对 BeautifulSoup 不太熟悉,但如果你只需要解码 JSON
import json
newDictionary=json.loads(str(soup))
关于Python Beautiful Soup 如何将 JSON 解码为 `dict` ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19915010/
我是一名优秀的程序员,十分优秀!