資源簡(jiǎn)介
純python編寫的搜索引擎原型,適合入門學(xué)習(xí),源代碼一共1000多行。包括一個(gè)通過XML配置的多線程的網(wǎng)絡(luò)爬蟲,最簡(jiǎn)單的analyzer,indexer,query,ranker,實(shí)現(xiàn)了詞頻排序和pagerank排序。還有一個(gè)簡(jiǎn)單的服務(wù)器模型。<原創(chuàng)>
代碼片段和文件信息
#!?/usr/bin/env?python
#?-------------------------------------------------------------
#?Author:????Chen?Zhihui?(zaviichen@gmail.com)
#?Date:??????11/28/2009
#?Version:???1.0
#?Copyright?(c)?2009?by?Chen?Zhihui.?All?Rights?Reserved.
#?-------------------------------------------------------------
“““?Simple?server?framework.?“““
from?baseHTTPServer?import?HTTPServer
from?CGIHTTPServer?import?CGIHTTPRequestHandler
from?SocketServer?import?ThreadingMixIn
import?threading
class?MyServer(ThreadingMixIn?HTTPServer):
“““?Self-defined?server?class.?“““
pass
def?main():
try:
print?“Welcome?to?the?localhost?server!“
print?“Serving?HTTP?on?localhost?port?8000?...“
server_addr?=?(‘‘8000)
server?=?MyServer(server_addr?CGIHTTPRequestHandler)
server.serve_fo
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????文件???????1268??2009-11-28?15:05??asimo\cgi-bin\cache.py
?????文件???????2955??2009-11-28?15:03??asimo\cgi-bin\search_cgi.py
?????文件????????616??2009-11-27?17:47??asimo\config.xm
?????文件????????938??2009-11-28?16:19??asimo\core\analyzer.py
?????文件???????3128??2009-10-12?23:05??asimo\core\bloom.py
?????文件???????1922??2009-11-28?16:22??asimo\core\config.py
?????文件???????2838??2009-11-28?16:24??asimo\core\htmlparser.py
?????文件???????4359??2009-11-28?16:15??asimo\core\index.py
?????文件???????2313??2009-11-28?16:28??asimo\core\progress.py
?????文件???????2017??2009-11-30?00:38??asimo\core\query.py
?????文件???????5858??2009-11-28?15:53??asimo\core\rank.py
?????文件???????3294??2009-11-28?15:45??asimo\core\secore.py
?????文件???????1745??2009-11-28?16:37??asimo\core\utils.py
?????文件???????7131??2009-11-28?17:04??asimo\core\webspider.py
?????文件??????????0??2009-11-25?14:05??asimo\core\__init__.py
?????文件????????265??2009-11-30?23:12??asimo\index.htm
?????文件????????946??2009-11-28?15:03??asimo\myserver.py
?????文件???????4050??2009-11-30?23:11??asimo\readme.txt
?????文件???????9277??2009-11-30?22:09??asimo\template\asimo.gif
?????文件????????346??2009-11-30?23:12??asimo\template\result.htm
?????文件????????228??2009-11-27?21:44??asimo\template\result_item.htm
?????文件??????????0??2009-11-25?14:08??asimo\__init__.py
?????目錄??????????0??2009-11-30?23:23??asimo\cgi-bin
?????目錄??????????0??2009-11-30?23:24??asimo\core
?????目錄??????????0??2009-11-30?23:23??asimo\template
?????目錄??????????0??2009-11-30?23:23??asimo
-----------?---------??----------?-----??----
????????????????55494????????????????????26
評(píng)論
共有 條評(píng)論