使用BeautifulSoup查找特定标签

时间:2010-10-15 20:11:02

标签: python beautifulsoup

我可以轻松地使用BS遍历通用标签,但我不知道如何查找特定标签。例如,如何查找<div style="width=300px;">的所有出现?这可能与BS有关吗?

2 个答案:

答案 0 :(得分:29)

以下内容应该有效

soup = BeautifulSoup(htmlstring)
soup.findAll('div', style="width=300px;")

有多种方法可以搜索标签。

要了解更多文字并使用它

答案 1 :(得分:5)

与bs4相比,事情发生了一些变化。所以代码看起来应该是这样的

(function(angular) { 'use strict'; angular.module('myModule') .controller('MainCtrl', ['$scope', 'config', function ($scope, config, ){ $scope.config = ?????????? ; $scope.preferences = ???????????? ; }]); })(window.angular);