Ai
3 Star 0 Fork 0

Gitee 极速下载/python-goose

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/grangier/python-goose
克隆/下载
parsers.py 10.17 KB
一键复制 编辑 原始数据 按行查看 历史
Xavier Grangier 提交于 2013-08-19 01:37 +08:00 . add delAttribute method to parser
# -*- coding: utf-8 -*-
"""\
This is a python port of "Goose" orignialy licensed to Gravity.com
under one or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.
Python port was written by Xavier Grangier for Recrutae
Gravity.com licenses this file
to you under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import os
import unittest
from goose.utils import FileHelper
from goose.parsers import Parser
from goose.parsers import ParserSoup
CURRENT_PATH = os.path.dirname(os.path.abspath(__file__))
class ParserBase(unittest.TestCase):
def setUp(self):
self.parser = Parser
def get_html(self, filename):
path = os.path.join(CURRENT_PATH, 'data', filename)
path = os.path.abspath(path)
return FileHelper.loadResourceFile(path)
def test_cssselect(self):
html = '<html><body>'
html += '<p class="link">this is a test <a class="link">link</a> and this is <strong class="foo">strong</strong></p>'
html += '<p>this is a test and this is <strong class="link">strong</strong></p>'
html += '</body></html>'
doc = self.parser.fromstring(html)
# find node with a class attribute
items_result = self.parser.css_select(doc, "*[class]")
self.assertEqual(len(items_result), 4)
# find p nodes
items_result = self.parser.css_select(doc, "p")
self.assertEqual(len(items_result), 2)
# find nodes with attribute class equal to link
items_result = self.parser.css_select(doc, "*[class=link]")
self.assertEqual(len(items_result), 3)
# find p nodes with class attribute
items_result = self.parser.css_select(doc, "p[class]")
self.assertEqual(len(items_result), 1)
# find p nodes with class attribute link
items_result = self.parser.css_select(doc, "p[class=link]")
self.assertEqual(len(items_result), 1)
# find strong nodes with class attribute link or foo
items_result = self.parser.css_select(doc, "strong[class=link], strong[class=foo]")
self.assertEqual(len(items_result), 2)
# find strong nodes with class attribute link or foo
items_result = self.parser.css_select(doc, "p > a")
self.assertEqual(len(items_result), 1)
def test_childNodesWithText(self):
html = '<html><body>'
html += '<p>this is a test <a class="link">link</a> and this is <strong class="link">strong</strong></p>'
html += '<p>this is a test and this is <strong class="link">strong</strong></p>'
html += '</body></html>'
doc = self.parser.fromstring(html)
p = self.parser.getElementsByTag(doc, tag='p')[0]
def test_replacetag(self):
html = self.get_html('parser/test1.html')
doc = self.parser.fromstring(html)
# replace all p with div
ps = self.parser.getElementsByTag(doc, tag='p')
divs = self.parser.getElementsByTag(doc, tag='div')
pcount = len(ps)
divcount = len(divs)
for p in ps:
self.parser.replaceTag(p, 'div')
divs2 = self.parser.getElementsByTag(doc, tag='div')
divcount2 = len(divs2)
self.assertEqual(divcount2, pcount + divcount)
# replace first div span with center
spans = self.parser.getElementsByTag(doc, tag='span')
spanscount = len(spans)
div = self.parser.getElementsByTag(doc, tag='div')[0]
span = self.parser.getElementsByTag(div, tag='span')
self.assertEqual(len(span), 1)
self.parser.replaceTag(span[0], 'center')
span = self.parser.getElementsByTag(div, tag='span')
self.assertEqual(len(span), 0)
centers = self.parser.getElementsByTag(div, tag='center')
self.assertEqual(len(centers), 1)
def test_droptag(self):
# test with 1 node
html = '<html><body><div>Hello <b>World!</b></div></body></html>'
expecte_html = '<html><body><div>Hello World!</div></body></html>'
doc = self.parser.fromstring(html)
nodes = self.parser.css_select(doc, "b")
self.assertEqual(len(nodes), 1)
self.parser.drop_tag(nodes)
nodes = self.parser.css_select(doc, "b")
self.assertEqual(len(nodes), 0)
result_html = self.parser.nodeToString(doc)
self.assertEqual(expecte_html, result_html)
# test with 2 nodes
html = '<html><body><div>Hello <b>World!</b> bla <b>World!</b></div></body></html>'
expecte_html = '<html><body><div>Hello World! bla World!</div></body></html>'
doc = self.parser.fromstring(html)
nodes = self.parser.css_select(doc, "b")
self.assertEqual(len(nodes), 2)
self.parser.drop_tag(nodes)
nodes = self.parser.css_select(doc, "b")
self.assertEqual(len(nodes), 0)
result_html = self.parser.nodeToString(doc)
self.assertEqual(expecte_html, result_html)
def test_tostring(self):
html = '<html><body>'
html += '<p>this is a test <a>link</a> and this is <strong>strong</strong></p>'
html += '</body></html>'
doc = self.parser.fromstring(html)
result = self.parser.nodeToString(doc)
self.assertEqual(html, result)
def test_striptags(self):
html = '<html><body>'
html += '<p>this is a test <a>link</a> and this is <strong>strong</strong></p>'
html += '</body></html>'
expected = '<html><body>'
expected += '<p>this is a test link and this is strong</p>'
expected += '</body></html>'
doc = self.parser.fromstring(html)
self.parser.stripTags(doc, 'a', 'strong')
result = self.parser.nodeToString(doc)
self.assertEqual(expected, result)
def test_getElementsByTags(self):
html = '<html><body>'
html += '<p>this is a test <a class="link">link</a> and this is <strong class="link">strong</strong></p>'
html += '<p>this is a test and this is <strong class="link">strong</strong></p>'
html += '</body></html>'
doc = self.parser.fromstring(html)
elements = self.parser.getElementsByTags(doc, ['p', 'a', 'strong'])
self.assertEqual(len(elements), 5)
# find childs within the first p
p = self.parser.getElementsByTag(doc, tag='p')[0]
elements = self.parser.getElementsByTags(p, ['p', 'a', 'strong'])
self.assertEqual(len(elements), 2)
def test_getElementsByTag(self):
html = '<html><body>'
html += '<p>this is a test <a>link</a> and this is <strong>strong</strong></p>'
html += '</body></html>'
doc = self.parser.fromstring(html)
# find all tags
elements = self.parser.getElementsByTag(doc)
self.assertEqual(len(elements), 5)
# find all p
elements = self.parser.getElementsByTag(doc, tag='p')
self.assertEqual(len(elements), 1)
html = '<html><body>'
html += '<p>this is a test <a class="link classB classc">link</a> and this is <strong class="link">strong</strong></p>'
html += '<p>this is a test and this is <strong class="Link">strong</strong></p>'
html += '</body></html>'
doc = self.parser.fromstring(html)
# find all p
elements = self.parser.getElementsByTag(doc, tag='p')
self.assertEqual(len(elements), 2)
# find all a
elements = self.parser.getElementsByTag(doc, tag='a')
self.assertEqual(len(elements), 1)
# find all strong
elements = self.parser.getElementsByTag(doc, tag='strong')
self.assertEqual(len(elements), 2)
# find first p
# and find strong elemens within the p
elem = self.parser.getElementsByTag(doc, tag='p')[0]
elements = self.parser.getElementsByTag(elem, tag='strong')
self.assertEqual(len(elements), 1)
# test if the first p in taken in account
elem = self.parser.getElementsByTag(doc, tag='p')[0]
elements = self.parser.getElementsByTag(elem, tag='p')
self.assertEqual(len(elements), 0)
# find elem with class "link"
elements = self.parser.getElementsByTag(doc, attr="class", value="link")
self.assertEqual(len(elements), 3)
# find elem with class "classB"
elements = self.parser.getElementsByTag(doc, attr="class", value="classB")
self.assertEqual(len(elements), 1)
# find elem with class "classB"
elements = self.parser.getElementsByTag(doc, attr="class", value="classc")
self.assertEqual(len(elements), 1)
# find elem with class "link" with tag strong
elements = self.parser.getElementsByTag(doc, tag="strong", attr="class", value="link")
self.assertEqual(len(elements), 2)
# find elem with class "link" with tag strong
# within the second p
elem = self.parser.getElementsByTag(doc, tag='p')[1]
elements = self.parser.getElementsByTag(elem, tag="strong", attr="class", value="link")
self.assertEqual(len(elements), 1)
def test_delAttribute(self):
html = self.get_html('parser/test1.html')
doc = self.parser.fromstring(html)
# find div element with class foo
elements = self.parser.getElementsByTag(doc, tag="div", attr="class", value="foo")
self.assertEqual(len(elements), 1)
# remove the attribute class
div = elements[0]
self.parser.delAttribute(div, attr="class")
# find div element with class foo
elements = self.parser.getElementsByTag(doc, tag="div", attr="class", value="foo")
self.assertEqual(len(elements), 0)
# remove an unexistant attribute
self.parser.delAttribute(div, attr="bla")
class TestParser(ParserBase):
pass
class TestParserSoup(ParserBase):
def setUp(self):
self.parser = ParserSoup
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/mirrors/python-goose.git
git@gitee.com:mirrors/python-goose.git
mirrors
python-goose
python-goose
develop

搜索帮助