我试图通过编写脚本来教自己一个概念。基本上,我尝试编写一个Python脚本,在给出一些关键字的情况下,会抓取网页,直到找到我需要的数据。例如,假设我想找一份居住在美国的恶意蛇列表。我可能会使用关键字list,venemous,snakes,US
来运行我的脚本,并且我希望能够相信至少80%的确定它将返回美国的蛇列表。
我已经知道如何实现网络蜘蛛部分了,我只想了解如何在不了解网页结构的情况下确定网页的相关性。我研究过网络抓取技术,但他们似乎都假设知道页面的html标签结构。是否有某种算法允许我从页面中提取数据并确定其相关性?
任何指针都将非常感激。我将Python
与urllib
和BeautifulSoup
一起使用。
答案 0 :(得分:6)
使用像scrapy这样的爬虫(仅用于处理并发下载),你可以编写一个这样的简单蜘蛛,并且可能从维基百科开始作为一个很好的起点。此脚本是使用scrapy
,nltk
和whoosh
的完整示例。它将永远不会停止,并将使用whoosh
为以后的搜索索引链接
这是一个小型谷歌:
_Author = Farsheed Ashouri
import os
import sys
import re
## Spider libraries
from scrapy.spider import BaseSpider
from scrapy.selector import Selector
from main.items import MainItem
from scrapy.http import Request
from urlparse import urljoin
## indexer libraries
from whoosh.index import create_in, open_dir
from whoosh.fields import *
## html to text conversion module
import nltk
def open_writer():
if not os.path.isdir("indexdir"):
os.mkdir("indexdir")
schema = Schema(title=TEXT(stored=True), content=TEXT(stored=True))
ix = create_in("indexdir", schema)
else:
ix = open_dir("indexdir")
return ix.writer()
class Main(BaseSpider):
name = "main"
allowed_domains = ["en.wikipedia.org"]
start_urls = ["http://en.wikipedia.org/wiki/Snakes"]
def parse(self, response):
writer = open_writer() ## for indexing
sel = Selector(response)
email_validation = re.compile(r'^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,4})$')
#general_link_validation = re.compile(r'')
#We stored already crawled links in this list
crawledLinks = set()
titles = sel.xpath('//div[@id="content"]//h1[@id="firstHeading"]//span/text()').extract()
contents = sel.xpath('//body/div[@id="content"]').extract()
if contents:
content = contents[0]
if titles:
title = titles[0]
else:
return
links = sel.xpath('//a/@href').extract()
for link in links:
# If it is a proper link and is not checked yet, yield it to the Spider
url = urljoin(response.url, link)
#print url
## our url must not have any ":" character in it. link /wiki/talk:company
if not url in crawledLinks and re.match(r'http://en.wikipedia.org/wiki/[^:]+$', url):
crawledLinks.add(url)
#print url, depth
yield Request(url, self.parse)
item = MainItem()
item["title"] = title
print '*'*80
print 'crawled: %s | it has %s links.' % (title, len(links))
#print content
print '*'*80
item["links"] = list(crawledLinks)
writer.add_document(title=title, content=nltk.clean_html(content)) ## I save only text from content.
#print crawledLinks
writer.commit()
yield item
完成scrapy示例的
答案 1 :(得分:2)
你基本上都在问“我该如何编写搜索引擎”。这......并非无足轻重。
这样做的正确方法是使用Google(或Bing,或Yahoo!或者......)搜索API并显示前n个结果。但是,如果你只是在制作一个个人项目来教自己一些概念(不知道那些概念会是哪些概念),那么这里有一些建议:
<p>
,<div>
等)的文字内容<ul>
或<ol>
甚至<table>
的网页可能是一个不错的选择