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
dab02ae8
Commit
dab02ae8
authored
Aug 04, 2020
by
litaolemo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
d540d564
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
12 deletions
+13
-12
cal_ni_and_put_to_backend.py
crawler_sys/scheduler/cal_ni_and_put_to_backend.py
+13
-12
No files found.
crawler_sys/scheduler/cal_ni_and_put_to_backend.py
View file @
dab02ae8
...
...
@@ -377,8 +377,8 @@ def write_data_into_mysql(res_data):
def
task_main
():
# 实例化数据判断规则 注意高优先级在前 低优先级在后
push_rule_class1
=
push_rule
(
comment_count_ni
=
20
,
time_range
=
5
,
level
=
5
)
push_rule_class2
=
push_rule
(
comment_count_ni
=
5
,
time_range
=
5
,
level
=
3
)
push_rule_class1
=
push_rule
(
comment_count_ni
=
20
,
time_range
=
5
,
level
=
3
)
push_rule_class2
=
push_rule
(
comment_count_ni
=
5
,
time_range
=
5
,
level
=
2
)
rules_list
=
[
push_rule_class1
,
push_rule_class2
...
...
@@ -386,11 +386,11 @@ def task_main():
# 循环处理抓取数据,返回需要添加至后端的数据
for
res_data
in
scan_from_redis
(
rules_list
):
tractate_id
=
write_data_into_mysql
(
res_data
)
if
res_data
[
"level"
]
>=
5
:
if
res_data
[
"level"
]
>=
1
:
title_str
=
res_data
[
"platform"
]
+
"帖子内容审核"
body_str
=
"""
问好:
有一篇新的
优秀
内容需要审核,帖子号为{tractate_id}
有一篇新的内容需要审核,帖子号为{tractate_id}
内容如下:
{content}
...
...
@@ -406,11 +406,12 @@ def task_main():
if
__name__
==
"__main__"
:
from
concurrent.futures
import
ProcessPoolExecutor
executor
=
ProcessPoolExecutor
(
max_workers
=
4
)
futures
=
[]
for
processe
in
range
(
4
):
future
=
executor
.
submit
(
task_main
)
futures
.
append
(
future
)
print
(
'Processe
%
s start'
%
processe
)
executor
.
shutdown
(
True
)
# from concurrent.futures import ProcessPoolExecutor
# executor = ProcessPoolExecutor(max_workers=4)
# futures = []
# for processe in range(4):
# future = executor.submit(task_main)
# futures.append(future)
# print('Processe %s start' % processe)
# executor.shutdown(True)
task_main
()
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