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
backend
crawler
Commits
17266b8f
Commit
17266b8f
authored
Jan 14, 2021
by
litaolemo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
2b3197c1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
weibo_to_rpc.py
crawler_sys/scheduler/weibo_to_rpc.py
+2
-2
rpc_data_to_answer.py
crawler_sys/utils/rpc_data_to_answer.py
+2
-3
No files found.
crawler_sys/scheduler/weibo_to_rpc.py
View file @
17266b8f
...
...
@@ -122,8 +122,8 @@ pid_list = rds.hkeys("weibo")
# for line in f:
for
pid
in
pid_list
:
res
=
rds
.
hget
(
"weibo"
,
pid
)
#
if rds.hexists("xiaohongshu_with_img", pid):
#
continue
if
rds
.
hexists
(
"xiaohongshu_with_img"
,
pid
):
continue
res_json
=
json
.
loads
(
res
)
video_dic
=
{}
qiniu_img_list
=
[]
...
...
crawler_sys/utils/rpc_data_to_answer.py
View file @
17266b8f
...
...
@@ -42,6 +42,8 @@ dic_type = {
"cims/reply/batch_create"
:
"replies"
}
invoker
=
create_default_invoker
(
debug
=
True
)
.
with_config
(
dump_curl
=
True
)
def
post_muilty_data
(
data_list
:
typing
.
List
,
rpc_type
:
str
)
->
typing
.
Dict
:
headers
=
{
'X-GAIA-HELIOS-VERSION'
:
'0.7.5'
,
...
...
@@ -54,8 +56,6 @@ def post_muilty_data(data_list:typing.List,rpc_type:str) -> typing.Dict:
# data_dict_copy.pop(key)
# data_list_new.append(data_dict_copy)
dic
=
{
dic_type
[
rpc_type
]:
data_list
}
invoker
=
create_default_invoker
(
debug
=
True
)
.
with_config
(
dump_curl
=
True
)
res
=
invoker
[
rpc_type
](
**
dic
)
# print(res.)
...
...
@@ -73,7 +73,6 @@ def post_single_data(data_dict:typing.Dict,rpc_type:str) -> typing.Dict:
data_dict_copy
.
pop
(
key
)
print
(
data_dict_copy
)
dic
=
{
dic_type
[
rpc_type
]:
[
data_dict_copy
]}
invoker
=
create_default_invoker
(
debug
=
True
)
.
with_config
(
dump_curl
=
True
)
res
=
invoker
[
rpc_type
](
**
dic
)
# print(res.)
...
...
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