├── README.md ├── Spider ├── PR_calculation.py ├── downloadlink.py ├── htmonly.py ├── htmonly_pagerank.py ├── mutispider.py └── mutispider_pagerank.py ├── app.py ├── data_clean ├── clean_document.py ├── load_data.py ├── merge_data.py ├── news1_clean_ distinct.py ├── news_clean_distinct.py └── news_clean_frame.py ├── datasets_and_logs └── 2024_11_29_23_45_00_log.txt ├── db_init ├── init_db.py ├── init_db_new.py └── init_user_profiles.py ├── img-folder ├── 19255F29.png ├── image-20241217170449292.png ├── image-20241217172152142.png ├── image-20241217173749975.png ├── image-20241217173936568.png ├── image-20241217174140950.png ├── image-20241217174236515.png ├── image-20241217174713138.png ├── image-20241217175037417.png ├── image-20241217175233504.png ├── image-20241217184806123.png ├── image-20241217184922146.png ├── image-20241217185008968.png ├── image-20241217185208423.png ├── image-20241217185558358.png ├── image-20241217192145331.png ├── image-20241217192259748.png ├── image-20241217192419633.png ├── image-20241217192631920.png ├── image-20241217193833186.png ├── image-20241217193922327.png ├── image-20241217194706713.png ├── image-20241217195003153.png ├── image-20241217195200393.png ├── image-20241217201947701.png ├── image-20241217202328199.png ├── image-20241217204512415.png ├── image-20241217204732261.png ├── image-20241217205153730.png ├── image-20241217205341225.png ├── image-20241217205927444.png ├── image-20241217210224984.png ├── image-20241217210435856.png ├── image-20241217210524271.png ├── image-20241217210643902.png ├── image-20241217210942244.png ├── image-20241217211441465.png ├── image-20241217211645716.png ├── image-20241217211724777.png ├── image-20241217212505606.png ├── image-20241217212805264.png ├── image-20241217220109997.png ├── image-20241217220232016.png ├── image-20241217220410027.png ├── image-20241217220710450.png ├── image-20241217221306764.png ├── image-20241217221434868.png ├── image-20241217221619006.png ├── image-20241217221818883.png ├── image-20241217222258357.png ├── image-20241217231353742.png ├── image-20241217231856471.png ├── image-20241217234338468.png ├── image-20241217234427613.png ├── image-20241217234452315.png ├── image-20241217234622692.png └── readme.md ├── index ├── ES_Index.py ├── creat_index.py ├── creat_index00.py ├── creat_index01.py └── creat_index_document.py ├── search ├── __pycache__ │ ├── manager.cpython-39.pyc │ ├── personalization.cpython-39.pyc │ └── processor.cpython-39.pyc ├── manager.py ├── personalization.py └── processor.py ├── static └── css │ ├── document.css │ ├── main.css │ ├── pagination.css │ ├── results.css │ ├── search.css │ ├── search_history.css │ ├── search_suggestions.css │ └── user.css ├── templates ├── history.html ├── preferences.html ├── profile.html ├── search.html ├── search0.html ├── search00.html └── snapshot.html ├── test_document.py ├── test_html.py ├── test_wildcard.py └── 说明文档.pdf /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/README.md -------------------------------------------------------------------------------- /Spider/PR_calculation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/Spider/PR_calculation.py -------------------------------------------------------------------------------- /Spider/downloadlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/Spider/downloadlink.py -------------------------------------------------------------------------------- /Spider/htmonly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/Spider/htmonly.py -------------------------------------------------------------------------------- /Spider/htmonly_pagerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/Spider/htmonly_pagerank.py -------------------------------------------------------------------------------- /Spider/mutispider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/Spider/mutispider.py -------------------------------------------------------------------------------- /Spider/mutispider_pagerank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/Spider/mutispider_pagerank.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/app.py -------------------------------------------------------------------------------- /data_clean/clean_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/data_clean/clean_document.py -------------------------------------------------------------------------------- /data_clean/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/data_clean/load_data.py -------------------------------------------------------------------------------- /data_clean/merge_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/data_clean/merge_data.py -------------------------------------------------------------------------------- /data_clean/news1_clean_ distinct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/data_clean/news1_clean_ distinct.py -------------------------------------------------------------------------------- /data_clean/news_clean_distinct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/data_clean/news_clean_distinct.py -------------------------------------------------------------------------------- /data_clean/news_clean_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/data_clean/news_clean_frame.py -------------------------------------------------------------------------------- /datasets_and_logs/2024_11_29_23_45_00_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/datasets_and_logs/2024_11_29_23_45_00_log.txt -------------------------------------------------------------------------------- /db_init/init_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/db_init/init_db.py -------------------------------------------------------------------------------- /db_init/init_db_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/db_init/init_db_new.py -------------------------------------------------------------------------------- /db_init/init_user_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/db_init/init_user_profiles.py -------------------------------------------------------------------------------- /img-folder/19255F29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/19255F29.png -------------------------------------------------------------------------------- /img-folder/image-20241217170449292.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217170449292.png -------------------------------------------------------------------------------- /img-folder/image-20241217172152142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217172152142.png -------------------------------------------------------------------------------- /img-folder/image-20241217173749975.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217173749975.png -------------------------------------------------------------------------------- /img-folder/image-20241217173936568.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217173936568.png -------------------------------------------------------------------------------- /img-folder/image-20241217174140950.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217174140950.png -------------------------------------------------------------------------------- /img-folder/image-20241217174236515.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217174236515.png -------------------------------------------------------------------------------- /img-folder/image-20241217174713138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217174713138.png -------------------------------------------------------------------------------- /img-folder/image-20241217175037417.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217175037417.png -------------------------------------------------------------------------------- /img-folder/image-20241217175233504.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217175233504.png -------------------------------------------------------------------------------- /img-folder/image-20241217184806123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217184806123.png -------------------------------------------------------------------------------- /img-folder/image-20241217184922146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217184922146.png -------------------------------------------------------------------------------- /img-folder/image-20241217185008968.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217185008968.png -------------------------------------------------------------------------------- /img-folder/image-20241217185208423.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217185208423.png -------------------------------------------------------------------------------- /img-folder/image-20241217185558358.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217185558358.png -------------------------------------------------------------------------------- /img-folder/image-20241217192145331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217192145331.png -------------------------------------------------------------------------------- /img-folder/image-20241217192259748.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217192259748.png -------------------------------------------------------------------------------- /img-folder/image-20241217192419633.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217192419633.png -------------------------------------------------------------------------------- /img-folder/image-20241217192631920.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217192631920.png -------------------------------------------------------------------------------- /img-folder/image-20241217193833186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217193833186.png -------------------------------------------------------------------------------- /img-folder/image-20241217193922327.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217193922327.png -------------------------------------------------------------------------------- /img-folder/image-20241217194706713.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217194706713.png -------------------------------------------------------------------------------- /img-folder/image-20241217195003153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217195003153.png -------------------------------------------------------------------------------- /img-folder/image-20241217195200393.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217195200393.png -------------------------------------------------------------------------------- /img-folder/image-20241217201947701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217201947701.png -------------------------------------------------------------------------------- /img-folder/image-20241217202328199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217202328199.png -------------------------------------------------------------------------------- /img-folder/image-20241217204512415.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217204512415.png -------------------------------------------------------------------------------- /img-folder/image-20241217204732261.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217204732261.png -------------------------------------------------------------------------------- /img-folder/image-20241217205153730.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217205153730.png -------------------------------------------------------------------------------- /img-folder/image-20241217205341225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217205341225.png -------------------------------------------------------------------------------- /img-folder/image-20241217205927444.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217205927444.png -------------------------------------------------------------------------------- /img-folder/image-20241217210224984.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217210224984.png -------------------------------------------------------------------------------- /img-folder/image-20241217210435856.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217210435856.png -------------------------------------------------------------------------------- /img-folder/image-20241217210524271.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217210524271.png -------------------------------------------------------------------------------- /img-folder/image-20241217210643902.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217210643902.png -------------------------------------------------------------------------------- /img-folder/image-20241217210942244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217210942244.png -------------------------------------------------------------------------------- /img-folder/image-20241217211441465.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217211441465.png -------------------------------------------------------------------------------- /img-folder/image-20241217211645716.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217211645716.png -------------------------------------------------------------------------------- /img-folder/image-20241217211724777.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217211724777.png -------------------------------------------------------------------------------- /img-folder/image-20241217212505606.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217212505606.png -------------------------------------------------------------------------------- /img-folder/image-20241217212805264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217212805264.png -------------------------------------------------------------------------------- /img-folder/image-20241217220109997.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217220109997.png -------------------------------------------------------------------------------- /img-folder/image-20241217220232016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217220232016.png -------------------------------------------------------------------------------- /img-folder/image-20241217220410027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217220410027.png -------------------------------------------------------------------------------- /img-folder/image-20241217220710450.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217220710450.png -------------------------------------------------------------------------------- /img-folder/image-20241217221306764.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217221306764.png -------------------------------------------------------------------------------- /img-folder/image-20241217221434868.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217221434868.png -------------------------------------------------------------------------------- /img-folder/image-20241217221619006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217221619006.png -------------------------------------------------------------------------------- /img-folder/image-20241217221818883.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217221818883.png -------------------------------------------------------------------------------- /img-folder/image-20241217222258357.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217222258357.png -------------------------------------------------------------------------------- /img-folder/image-20241217231353742.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217231353742.png -------------------------------------------------------------------------------- /img-folder/image-20241217231856471.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217231856471.png -------------------------------------------------------------------------------- /img-folder/image-20241217234338468.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217234338468.png -------------------------------------------------------------------------------- /img-folder/image-20241217234427613.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217234427613.png -------------------------------------------------------------------------------- /img-folder/image-20241217234452315.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217234452315.png -------------------------------------------------------------------------------- /img-folder/image-20241217234622692.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/img-folder/image-20241217234622692.png -------------------------------------------------------------------------------- /img-folder/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /index/ES_Index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/index/ES_Index.py -------------------------------------------------------------------------------- /index/creat_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/index/creat_index.py -------------------------------------------------------------------------------- /index/creat_index00.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/index/creat_index00.py -------------------------------------------------------------------------------- /index/creat_index01.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/index/creat_index01.py -------------------------------------------------------------------------------- /index/creat_index_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/index/creat_index_document.py -------------------------------------------------------------------------------- /search/__pycache__/manager.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/search/__pycache__/manager.cpython-39.pyc -------------------------------------------------------------------------------- /search/__pycache__/personalization.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/search/__pycache__/personalization.cpython-39.pyc -------------------------------------------------------------------------------- /search/__pycache__/processor.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/search/__pycache__/processor.cpython-39.pyc -------------------------------------------------------------------------------- /search/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/search/manager.py -------------------------------------------------------------------------------- /search/personalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/search/personalization.py -------------------------------------------------------------------------------- /search/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/search/processor.py -------------------------------------------------------------------------------- /static/css/document.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/static/css/document.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/static/css/pagination.css -------------------------------------------------------------------------------- /static/css/results.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/static/css/results.css -------------------------------------------------------------------------------- /static/css/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/static/css/search.css -------------------------------------------------------------------------------- /static/css/search_history.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/static/css/search_history.css -------------------------------------------------------------------------------- /static/css/search_suggestions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/static/css/search_suggestions.css -------------------------------------------------------------------------------- /static/css/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/static/css/user.css -------------------------------------------------------------------------------- /templates/history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/templates/history.html -------------------------------------------------------------------------------- /templates/preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/templates/preferences.html -------------------------------------------------------------------------------- /templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/templates/profile.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/templates/search.html -------------------------------------------------------------------------------- /templates/search0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/templates/search0.html -------------------------------------------------------------------------------- /templates/search00.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/templates/search00.html -------------------------------------------------------------------------------- /templates/snapshot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/templates/snapshot.html -------------------------------------------------------------------------------- /test_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/test_document.py -------------------------------------------------------------------------------- /test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/test_html.py -------------------------------------------------------------------------------- /test_wildcard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/test_wildcard.py -------------------------------------------------------------------------------- /说明文档.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Reminding/Web-Search-Engine/HEAD/说明文档.pdf --------------------------------------------------------------------------------