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
53307e8c
Commit
53307e8c
authored
Jan 20, 2021
by
litaolemo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新小红书爬虫
parent
c68e576c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
2 deletions
+35
-2
xiaohongshu_to_rpc.py
crawler_sys/scheduler/xiaohongshu_to_rpc.py
+0
-0
crawler_xiaohongshu.py
crawler_sys/site_crawler/crawler_xiaohongshu.py
+16
-2
crawler_xiaohongshu.py
crawler_sys/site_crawler_by_redis/crawler_xiaohongshu.py
+0
-0
xiaohongshu_js.js
crawler_sys/site_crawler_by_redis/xiaohongshu_js.js
+19
-0
No files found.
crawler_sys/scheduler/xiaohongshu_to_rpc.py
View file @
53307e8c
This diff is collapsed.
Click to expand it.
crawler_sys/site_crawler/crawler_xiaohongshu.py
View file @
53307e8c
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
# @author : litao
# @author : litao
import
copy
import
copy
import
execjs
import
redis
import
redis
import
requests
import
requests
import
json
import
json
...
@@ -248,7 +249,16 @@ class Crawler_xiaohongshu():
...
@@ -248,7 +249,16 @@ class Crawler_xiaohongshu():
# break
# break
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
test
=
Crawler_xiaohongshu
()
# try:
# with open(r'D:\work_file\gengmei\crawler\crawler_sys\site_crawler_by_redis\xiaohongshu_js.js', 'r', encoding='utf-8') as f:
# js = f.read()
# except:
# with open('/srv/apps/crawler/crawler_sys/site_crawler_by_redis/xiaohongshu.js', 'r', encoding='utf-8') as f:
# js = f.read()
# # print(js)
# exec_js = execjs.compile(js)
# exec_js.call("get_sign", "https://www.xiaohongshu.com/user/profile/5abbb57211be1027a0c880ae")
# test = Crawler_xiaohongshu()
releaserurl
=
'https://www.xiaohongshu.com/user/profile/5abbb57211be1027a0c880ae'
releaserurl
=
'https://www.xiaohongshu.com/user/profile/5abbb57211be1027a0c880ae'
url_list
=
[
url_list
=
[
"https://www.xiaohongshu.com/user/profile/5abbb57211be1027a0c880ae"
,
"https://www.xiaohongshu.com/user/profile/5abbb57211be1027a0c880ae"
,
...
@@ -358,4 +368,8 @@ if __name__ == '__main__':
...
@@ -358,4 +368,8 @@ if __name__ == '__main__':
]
]
for
url
in
url_list
:
for
url
in
url_list
:
print
(
url
)
print
(
url
)
res
=
test
.
releaser_page
(
url
,
proxies_num
=
0
)
try
:
res
=
test
.
releaser_page
(
url
,
proxies_num
=
0
)
except
Exception
as
e
:
print
(
e
)
continue
crawler_sys/site_crawler_by_redis/crawler_xiaohongshu.py
View file @
53307e8c
This diff is collapsed.
Click to expand it.
crawler_sys/site_crawler_by_redis/xiaohongshu_js.js
0 → 100644
View file @
53307e8c
const
crypto
=
require
(
'crypto'
);
/**
* 生成 x-sign header
* `x-sign: 'X' + md5(url + 'WSUDD')`
* @param {string} url url
* @param {object} params 参数
*/
function
generateXSign
(
url
,
params
=
{})
{
const
searchString
=
new
URLSearchParams
(
params
).
toString
();
const
realUrl
=
`
${
url
}${
searchString
?
'?'
:
''
}${
searchString
}
WSUDD`
;
const
md5
=
crypto
.
createHash
(
'md5'
).
update
(
realUrl
).
digest
(
'hex'
);
return
`X
${
md5
}
`
;
}
module
.
exports
=
{
generateXSign
,
};
\ No newline at end of file
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