Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
crawler
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chengyang Zhong
crawler
Commits
af50a320
Commit
af50a320
authored
Aug 10, 2020
by
litaolemo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
07c010d6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
20 deletions
+18
-20
search_page_multi_process.py
crawler_sys/framework/search_page_multi_process.py
+14
-12
crawler_toutiao.py
crawler_sys/site_crawler/crawler_toutiao.py
+1
-2
crawler_zhihu.py
crawler_sys/site_crawler/crawler_zhihu.py
+3
-6
No files found.
crawler_sys/framework/search_page_multi_process.py
View file @
af50a320
...
...
@@ -4,6 +4,8 @@
# -*- coding: utf-8 -*-
import
argparse
from
concurrent.futures.process
import
ProcessPoolExecutor
from
elasticsearch.helpers
import
scan
from
elasticsearch
import
Elasticsearch
from
crawler.crawler_sys.framework.platform_crawler_register
import
get_crawler
...
...
@@ -2685,7 +2687,7 @@ pages = ARGS.maxpage
def
search_page_task
(
platform
,
output_to_es_raw
,
output_to_es_register
,
es_index
):
search_pages
=
[]
initialize_crawler
=
get_crawler
(
platform
)
crawler
=
initialize_crawler
()
KEYWORD_dic
=
func_search_keywordlist
(
platform
)
...
...
@@ -2697,7 +2699,7 @@ def search_page_task(platform, output_to_es_raw,
search_pages_max
=
search_pages
,
output_to_es_raw
=
output_to_es_raw
,
output_to_es_register
=
output_to_es_register
,
es_index
=
es_index
)
es_index
=
es_index
,
proxies_num
=
3
)
except
Exception
as
e
:
print
(
e
)
...
...
@@ -2712,15 +2714,15 @@ kwargs_dict = {
'es_index'
:
ES_INDEX
,
}
pool
=
Pool
(
processes
=
3
)
executor
=
ProcessPoolExecutor
(
max_workers
=
3
)
futures
=
[]
for
platform
in
PLATFORM_LIST
:
search_page_task
(
platform
,
OUTPUT_TO_ES_RAW
,
OUTPUT_TO_ES_REGISTER
,
ES_INDEX
)
res
=
pool
.
apply_async
(
func
=
search_page_task
,
args
=
(
platform
,
OUTPUT_TO_ES_RAW
,
OUTPUT_TO_ES_REGISTER
,
ES_INDEX
))
result
.
append
(
res
)
pool
.
close
()
pool
.
join
()
platform_str
=
platform
+
"_process"
# start_crawler(processe,name)
# print(kwargs_dict)
future
=
executor
.
submit
(
search_page_task
,
platform
,
OUTPUT_TO_ES_RAW
,
OUTPUT_TO_ES_REGISTER
,
ES_INDEX
)
futures
.
append
(
future
)
print
(
'Processe
%
s start'
%
platform
)
print
(
'================='
)
for
i
in
result
:
print
(
i
.
get
())
crawler_sys/site_crawler/crawler_toutiao.py
View file @
af50a320
...
...
@@ -456,8 +456,7 @@ class Crawler_toutiao():
def
search_page
(
self
,
keyword
,
search_pages_max
=
30
,
output_to_es_raw
=
False
,
output_to_es_register
=
False
,
es_index
=
None
,
doc_type
=
None
,
proxies_num
=
3
):
es_index
=
None
,
proxies_num
=
3
):
self
.
search_page_old
(
keyword
,
search_pages_max
=
search_pages_max
,
output_to_es_raw
=
output_to_es_raw
,
output_to_es_register
=
output_to_es_register
,
es_index
=
es_index
,
...
...
crawler_sys/site_crawler/crawler_zhihu.py
View file @
af50a320
...
...
@@ -148,8 +148,7 @@ class Crawler_zhihu():
def
search_article_page
(
self
,
keyword
,
search_pages_max
=
10
,
output_to_es_raw
=
False
,
output_to_es_register
=
False
,
es_index
=
None
,
doc_type
=
None
,
proxies_num
=
0
,
**
kwargs
):
es_index
=
None
,
proxies_num
=
0
,
**
kwargs
):
res_cookies_dict
=
self
.
get_serach_page_cookies
(
keyword
=
keyword
)
headers_search
=
{
...
...
@@ -223,8 +222,7 @@ class Crawler_zhihu():
platform
=
self
.
platform
,
output_to_es_raw
=
output_to_es_raw
,
output_to_es_register
=
output_to_es_register
,
es_index
=
es_index
,
doc_type
=
doc_type
)
es_index
=
es_index
,)
res_list
.
clear
()
if
res_list
!=
[]:
...
...
@@ -232,8 +230,7 @@ class Crawler_zhihu():
platform
=
self
.
platform
,
output_to_es_raw
=
output_to_es_raw
,
output_to_es_register
=
output_to_es_register
,
es_index
=
es_index
,
doc_type
=
doc_type
)
es_index
=
es_index
)
return
res_list
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment