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
eddb0d24
Commit
eddb0d24
authored
Jan 11, 2021
by
litaolemo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
7183d859
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
4 deletions
+23
-4
crawler_xiaohongshu.py
crawler_sys/site_crawler/crawler_xiaohongshu.py
+0
-0
rpc_data_to_answer.py
crawler_sys/utils/rpc_data_to_answer.py
+23
-4
No files found.
crawler_sys/site_crawler/crawler_xiaohongshu.py
View file @
eddb0d24
This diff is collapsed.
Click to expand it.
crawler_sys/utils/rpc_data_to_answer.py
View file @
eddb0d24
...
...
@@ -3,6 +3,7 @@
# @File : rpc_data_to_answer.py
# @email : litao@igengmei.com
# @author : litao
import
copy
import
requests
import
typing
...
...
@@ -36,16 +37,34 @@ data_type_dict = {
"cims/reply/batch_create"
:
[
"platform"
,
"platform_id"
,
"platform_answer_id"
,
"content"
,
"user_id"
,
"create_time"
,
"is_online"
]
}
def
post_muilty_data
(
data_list
:
typing
.
List
,
rpc_type
:
str
)
->
typing
.
Dict
:
headers
=
{
'X-GAIA-HELIOS-VERSION'
:
'0.7.5'
,
}
for
data_dict
in
data_list
:
for
key
in
data_dict
:
if
key
not
in
data_type_dict
[
rpc_type
]:
data_dict
.
pop
(
key
)
dic
=
{
"questions"
:
data_list
}
invoker
=
create_default_invoker
(
debug
=
True
)
.
with_config
(
dump_curl
=
True
)
res
=
invoker
[
rpc_type
](
**
dic
)
# print(res.)
print
(
res
)
print
(
res
.
unwrap
())
return
res
def
post_single_data
(
data_dict
:
typing
.
Dict
,
rpc_type
:
str
)
->
typing
.
Dict
:
headers
=
{
'X-GAIA-HELIOS-VERSION'
:
'0.7.5'
,
}
for
key
in
data_dict
:
data_dict_copy
=
copy
.
deepcopy
(
data_dict
)
for
key
in
data_dict_copy
:
if
key
not
in
data_type_dict
[
rpc_type
]:
data_dict
.
pop
(
key
)
print
(
data_dict
)
dic
=
{
"questions"
:[
data_dict
]}
data_dict
_copy
.
pop
(
key
)
print
(
data_dict
_copy
)
dic
=
{
"questions"
:[
data_dict
_copy
]}
invoker
=
create_default_invoker
(
debug
=
True
)
.
with_config
(
dump_curl
=
True
)
res
=
invoker
[
rpc_type
](
**
dic
)
...
...
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