Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
ffm-baseline
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ML
ffm-baseline
Commits
59bc1b04
Commit
59bc1b04
authored
Aug 19, 2019
by
高雅喆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rm user_i
parent
71f5f1fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
21 deletions
+2
-21
dist_update_user_portrait.py
eda/smart_rank/dist_update_user_portrait.py
+2
-21
No files found.
eda/smart_rank/dist_update_user_portrait.py
View file @
59bc1b04
...
...
@@ -91,24 +91,6 @@ def tag_list2dict(lst, size):
return
result
[:
size
]
def
get_device_user_id
(
cl_id
):
try
:
db_zhengxing
=
pymysql
.
connect
(
host
=
"172.16.30.141"
,
port
=
3306
,
user
=
"work"
,
password
=
"BJQaT9VzDcuPBqkd"
,
db
=
"zhengxing"
,
cursorclass
=
pymysql
.
cursors
.
DictCursor
)
cur_zhengxing
=
db_zhengxing
.
cursor
()
sql
=
"""select user_id from statistic_device_user where device_id = (select id from statistic_device where device_id = "{}")"""
.
format
(
cl_id
)
cur_zhengxing
.
execute
(
sql
)
cl_id
=
cur_zhengxing
.
fetchall
()
if
cl_id
:
return
cl_id
[
0
][
"user_id"
]
else
:
return
""
except
Exception
as
e
:
print
(
e
)
def
get_user_tag_score
(
cl_id
,
all_log_df
,
stat_date
,
size
=
10
):
try
:
db_jerry_test
=
pymysql
.
connect
(
host
=
'172.16.40.158'
,
port
=
4000
,
user
=
'root'
,
passwd
=
'3SYz54LS9#^9sBvC'
,
...
...
@@ -128,9 +110,8 @@ def get_user_tag_score(cl_id, all_log_df, stat_date, size=10):
finally_score_lst
=
finally_score
[[
"tag_id"
,
"tag_score"
]]
.
to_dict
(
'record'
)
tag_id_list
=
tag_list2dict
(
finally_score_lst
,
size
)
user_id
=
get_device_user_id
(
cl_id
)
replace_sql
=
"""replace into user_portrait_tags (stat_date, cl_id, user_id, tag_list) values("{stat_date}","{cl_id}",{user_id},"{tag_list}")"""
\
.
format
(
stat_date
=
stat_date
,
cl_id
=
cl_id
,
user_id
=
user_id
,
tag_list
=
tag_id_list
)
replace_sql
=
"""replace into user_portrait_tags (stat_date, cl_id, user_id, tag_list) values("{stat_date}","{cl_id}","{tag_list}")"""
\
.
format
(
stat_date
=
stat_date
,
cl_id
=
cl_id
,
tag_list
=
tag_id_list
)
cur_jerry_test
.
execute
(
replace_sql
)
db_jerry_test
.
commit
()
db_jerry_test
.
close
()
...
...
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