Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sun
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
钟尚武
sun
Commits
d58e826b
Commit
d58e826b
authored
Apr 11, 2019
by
haowang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add batch update topic tag from bmh
parent
88ee02ef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
0 deletions
+39
-0
tools.py
api/tools.py
+38
-0
urls.py
api/urls.py
+1
-0
No files found.
api/tools.py
View file @
d58e826b
...
...
@@ -35,3 +35,41 @@ class VirtualVote(APIView):
self
.
rpc
[
'venus/sun/tools/virtual_vote'
](
user_ids
=
user_ids
)
.
unwrap
()
return
{
'message'
:
u'上传成功'
,
'code'
:
200
}
class
BatchUpdateTopicTag
(
APIView
):
def
post
(
self
,
request
):
xls_file
=
request
.
FILES
.
get
(
'file'
)
if
not
xls_file
:
return
{
'message'
:
u'上传失败,请重新上传'
,
'code'
:
500
}
wb
=
load_workbook
(
xls_file
)
data
=
wb
.
get_sheet_by_name
(
wb
.
get_sheet_names
()[
0
])
rows_data
=
[
item
.
value
for
row
in
data
.
rows
for
item
in
row
if
item
.
value
]
topic_infos
=
[]
topic_tag_info
=
{}
for
index
,
item
in
enumerate
(
rows_data
):
if
index
==
len
(
rows_data
)
-
1
:
topic_infos
.
append
(
topic_tag_info
)
if
item
.
startswith
(
'http:'
):
print
(
item
)
if
topic_tag_info
.
get
(
'url'
):
topic_infos
.
append
(
topic_tag_info
)
print
(
topic_tag_info
)
topic_tag_info
=
{}
topic_tag_info
[
'url'
]
=
item
.
split
(
'-'
)[
0
]
.
replace
(
'http://alpha.iyanzhi.com/'
,
''
)
continue
if
item
.
split
(
':'
)[
-
1
]
and
topic_tag_info
.
get
(
'url'
):
if
not
topic_tag_info
.
get
(
'tags'
):
topic_tag_info
[
'tags'
]
=
[
item
.
split
(
':'
)[
-
1
]]
else
:
topic_tag_info
[
'tags'
]
.
append
(
item
.
split
(
':'
)[
-
1
])
self
.
rpc
[
'venus/sun/tools/batch_update_topic_tags'
](
topic_infos
=
topic_infos
)
.
unwrap
()
return
{
'message'
:
u'上传成功'
,
'code'
:
200
}
api/urls.py
View file @
d58e826b
...
...
@@ -135,6 +135,7 @@ urlpatterns = [
# 工具
url
(
r'^tools/virtual_vote$'
,
VirtualVote
.
as_view
()),
url
(
r'^tools/batch_update_topic_tag$'
,
BatchUpdateTopicTag
.
as_view
()),
]
search_urlpatterns
=
[
...
...
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