Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
M
meta_base_code
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
宋柯
meta_base_code
Commits
1ecf0461
Commit
1ecf0461
authored
Nov 13, 2020
by
litaolemo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update
parent
52c5dc88
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
6 deletions
+13
-6
daily_search_word_count.py
task/daily_search_word_count.py
+13
-6
No files found.
task/daily_search_word_count.py
View file @
1ecf0461
...
@@ -58,7 +58,8 @@ if __name__ == "__main__":
...
@@ -58,7 +58,8 @@ if __name__ == "__main__":
db
=
pymysql
.
connect
(
host
=
'172.16.40.158'
,
port
=
4000
,
user
=
'st_user'
,
passwd
=
'aqpuBLYzEV7tML5RPsN1pntUzFy'
,
db
=
pymysql
.
connect
(
host
=
'172.16.40.158'
,
port
=
4000
,
user
=
'st_user'
,
passwd
=
'aqpuBLYzEV7tML5RPsN1pntUzFy'
,
db
=
'jerry_prod'
)
db
=
'jerry_prod'
)
cursor
=
db
.
cursor
()
cursor
=
db
.
cursor
()
for
item
in
tag_names_list_week
:
insert_sql_all
=
""
for
count
,
item
in
enumerate
(
tag_names_list_week
):
word
,
nums
,
uv
,
date_str
=
item
word
,
nums
,
uv
,
date_str
=
item
partition_date
=
date_str
partition_date
=
date_str
pid
=
hashlib
.
md5
((
partition_date
+
word
)
.
encode
(
"utf8"
))
.
hexdigest
()
pid
=
hashlib
.
md5
((
partition_date
+
word
)
.
encode
(
"utf8"
))
.
hexdigest
()
...
@@ -67,8 +68,14 @@ if __name__ == "__main__":
...
@@ -67,8 +68,14 @@ if __name__ == "__main__":
'{word}',{nums},{uv},'{pid}','{partition_day}');"""
.
format
(
'{word}',{nums},{uv},'{pid}','{partition_day}');"""
.
format
(
word
=
word
,
nums
=
nums
,
uv
=
uv
,
partition_day
=
date_str
,
pid
=
pid
word
=
word
,
nums
=
nums
,
uv
=
uv
,
partition_day
=
date_str
,
pid
=
pid
)
)
insert_sql_all
+=
","
+
insert_sql
print
(
insert_sql
)
print
(
insert_sql
)
# cursor.execute("set names 'UTF8'")
if
count
%
100
==
0
:
res
=
cursor
.
execute
(
insert_sql
)
# cursor.execute("set names 'UTF8'")
db
.
commit
()
res
=
cursor
.
executmany
(
insert_sql
)
print
(
res
)
db
.
commit
()
\ No newline at end of file
# print(res)
insert_sql_all
=
""
res
=
cursor
.
executmany
(
insert_sql_all
)
db
.
commit
()
print
(
res
)
\ 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