Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cybertron
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
alpha
cybertron
Commits
2e640f97
Commit
2e640f97
authored
Jun 28, 2019
by
lixiaofang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add
parent
f6de495a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
37 additions
and
44 deletions
+37
-44
workspace.xml
.idea/workspace.xml
+0
-0
auto_request.py
auto_request.py
+7
-7
auto_star_topic.py
auto_star_topic.py
+1
-1
auto_star_urge.py
auto_star_urge.py
+9
-16
auto_urge1.py
auto_urge1.py
+18
-18
auto_urge2.py
auto_urge2.py
+2
-2
No files found.
.idea/workspace.xml
View file @
2e640f97
This diff is collapsed.
Click to expand it.
auto_request.py
View file @
2e640f97
...
@@ -203,9 +203,9 @@ def get_comments():
...
@@ -203,9 +203,9 @@ def get_comments():
for
i
in
data
:
for
i
in
data
:
list_guanshui
.
append
(
i
)
list_guanshui
.
append
(
i
)
num1
=
random
.
randint
(
0
,
5
0
)
num1
=
random
.
randint
(
0
,
20
0
)
num2
=
random
.
randint
(
50
,
7
0
)
num2
=
random
.
randint
(
200
,
40
0
)
num3
=
random
.
randint
(
7
0
,
len
(
list_guanshui
))
num3
=
random
.
randint
(
40
0
,
len
(
list_guanshui
))
comment1
=
list_guanshui
[
num1
-
1
]
comment1
=
list_guanshui
[
num1
-
1
]
comment2
=
list_guanshui
[
num2
-
1
]
comment2
=
list_guanshui
[
num2
-
1
]
...
@@ -260,10 +260,10 @@ def get_offline_comment():
...
@@ -260,10 +260,10 @@ def get_offline_comment():
list_guanshui
=
[]
list_guanshui
=
[]
for
i
in
data
:
for
i
in
data
:
list_guanshui
.
append
(
i
)
list_guanshui
.
append
(
i
)
num1
=
random
.
randint
(
0
,
5
00
)
num1
=
random
.
randint
(
0
,
2
00
)
num2
=
random
.
randint
(
500
,
10
00
)
num2
=
random
.
randint
(
200
,
3
00
)
num3
=
random
.
randint
(
1000
,
15
00
)
num3
=
random
.
randint
(
300
,
4
00
)
num4
=
random
.
randint
(
15
00
,
len
(
list_guanshui
))
num4
=
random
.
randint
(
4
00
,
len
(
list_guanshui
))
comment1
=
list_guanshui
[
num1
-
1
]
comment1
=
list_guanshui
[
num1
-
1
]
comment2
=
list_guanshui
[
num2
-
1
]
comment2
=
list_guanshui
[
num2
-
1
]
...
...
auto_star_topic.py
View file @
2e640f97
...
@@ -15,7 +15,7 @@ def get_star_user_id(numtime1, numtime2):
...
@@ -15,7 +15,7 @@ def get_star_user_id(numtime1, numtime2):
pc
=
pymysql
.
connect
(
host
=
host
,
user
=
user
,
passwd
=
passwd
,
db
=
db
,
port
=
3306
)
pc
=
pymysql
.
connect
(
host
=
host
,
user
=
user
,
passwd
=
passwd
,
db
=
db
,
port
=
3306
)
cursor
=
pc
.
cursor
()
cursor
=
pc
.
cursor
()
cursor
.
execute
(
cursor
.
execute
(
"SELECT user_id,id FROM topic WHERE is_online=1 and
(content_level =4 or content_level =
5) and create_time > '
%
s' and create_time < '
%
s' "
%
(
"SELECT user_id,id FROM topic WHERE is_online=1 and
content_level in (4,
5) and create_time > '
%
s' and create_time < '
%
s' "
%
(
numtime1
,
numtime2
))
numtime1
,
numtime2
))
data
=
cursor
.
fetchall
()
data
=
cursor
.
fetchall
()
user_id_list
=
list
(
data
)
user_id_list
=
list
(
data
)
...
...
auto_star_urge.py
View file @
2e640f97
...
@@ -15,7 +15,7 @@ def get_star_useid(numtime1, numtime2):
...
@@ -15,7 +15,7 @@ def get_star_useid(numtime1, numtime2):
pc
=
pymysql
.
connect
(
host
=
host
,
user
=
user
,
passwd
=
passwd
,
db
=
db
,
port
=
3306
)
pc
=
pymysql
.
connect
(
host
=
host
,
user
=
user
,
passwd
=
passwd
,
db
=
db
,
port
=
3306
)
cursor
=
pc
.
cursor
()
cursor
=
pc
.
cursor
()
cursor
.
execute
(
cursor
.
execute
(
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and
(content_level =4 or content_level =5)
and create_time > '
%
s' and create_time < '
%
s'"
%
(
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and
content_level in (4,5)
and create_time > '
%
s' and create_time < '
%
s'"
%
(
numtime1
,
numtime2
))
numtime1
,
numtime2
))
data
=
cursor
.
fetchall
()
data
=
cursor
.
fetchall
()
user_id
=
list
(
data
)
user_id
=
list
(
data
)
...
@@ -39,21 +39,14 @@ def get_star_useid(numtime1, numtime2):
...
@@ -39,21 +39,14 @@ def get_star_useid(numtime1, numtime2):
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
try
:
try
:
time_list
=
[
1
,
2
,
3
,
4
,
5
,
6
,
7
]
numtime1
,
numtime2
=
time_convs
(
8
,
0
)
for
i
in
time_list
:
user_id
=
get_star_useid
(
numtime1
,
numtime2
)
numtime1
,
numtime2
=
time_convs
(
i
+
1
,
i
-
1
)
for
j
in
user_id
and
user_id
:
user_id
=
get_star_useid
(
numtime1
,
numtime2
)
id
=
int
(
j
[
0
])
try
:
for
i
in
range
(
1
):
for
j
in
user_id
and
user_id
:
cookies
=
login
()
id
=
int
(
j
[
0
])
if
cookies
is
not
None
:
for
i
in
range
(
1
):
Urge
(
cookies
,
id
)
# time.sleep(random.randint(10, 50))
cookies
=
login
()
if
cookies
is
not
None
:
Urge
(
cookies
,
id
)
except
:
pass
except
:
except
:
logging
.
error
(
"catch exception,main:
%
s"
%
traceback
.
format_exc
())
logging
.
error
(
"catch exception,main:
%
s"
%
traceback
.
format_exc
())
auto_urge1.py
View file @
2e640f97
...
@@ -17,7 +17,7 @@ def get_data(numtime1, numtime2):
...
@@ -17,7 +17,7 @@ def get_data(numtime1, numtime2):
cursor
=
pc
.
cursor
()
cursor
=
pc
.
cursor
()
cursor
.
execute
(
cursor
.
execute
(
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time > '
%
s' and create_time < '
%
s'"
%
(
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time > '
%
s' and create_time < '
%
s'"
%
(
numtime1
,
numtime2
))
numtime1
,
numtime2
))
data
=
cursor
.
fetchall
()
data
=
cursor
.
fetchall
()
user_id
=
list
(
data
)
user_id
=
list
(
data
)
...
@@ -39,24 +39,24 @@ def get_data(numtime1, numtime2):
...
@@ -39,24 +39,24 @@ def get_data(numtime1, numtime2):
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
try
:
try
:
time_list
=
[
1
,
2
,
3
,
4
,
5
,
6
,
7
]
time_list
=
[
1
,
2
,
3
,
4
,
5
,
6
,
7
]
for
i
in
time_list
:
numtime1
,
numtime2
=
time_convs
(
8
,
0
)
numtime1
,
numtime2
=
time_convs
(
i
+
1
,
i
-
1
)
logging
.
info
(
"get numtime1:
%
s"
%
numtime1
)
logging
.
info
(
"get numtime1:
%
s"
%
numtime1
)
logging
.
info
(
"get numtime2:
%
s"
%
numtime2
)
user_id
=
get_data
(
numtime1
,
numtime2
)
user_id
=
get_data
(
numtime1
,
numtime2
)
urge_num
=
random
.
randint
(
0
,
1
)
# urge_num = random.randint(0,1)
if
urge_num
==
1
:
urge_num
=
1
for
i
in
range
(
urge_num
):
if
urge_num
==
1
:
try
:
for
i
in
range
(
urge_num
):
for
j
in
user_id
and
user_id
:
try
:
id
=
int
(
j
[
0
])
for
j
in
user_id
and
user_id
:
# time.sleep(random.randint(10, 50))
id
=
int
(
j
[
0
])
cookies
=
login
()
# time.sleep(random.randint(10, 50))
if
cookies
is
not
None
:
cookies
=
login
()
Urge
(
cookies
,
id
)
if
cookies
is
not
None
:
except
:
Urge
(
cookies
,
id
)
pass
except
:
pass
except
:
except
:
logging
.
error
(
"catch exception,main:
%
s"
%
traceback
.
format_exc
())
logging
.
error
(
"catch exception,main:
%
s"
%
traceback
.
format_exc
())
auto_urge2.py
View file @
2e640f97
...
@@ -17,7 +17,7 @@ def get_data(numtime1, numtime2):
...
@@ -17,7 +17,7 @@ def get_data(numtime1, numtime2):
cursor
=
pc
.
cursor
()
cursor
=
pc
.
cursor
()
cursor
.
execute
(
cursor
.
execute
(
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time > '
%
s' and create_time < '
%
s'"
%
(
"SELECT distinct(user_id) FROM topic WHERE is_online=1 and create_time > '
%
s' and create_time < '
%
s'"
%
(
numtime1
,
numtime2
))
numtime1
,
numtime2
))
data
=
cursor
.
fetchall
()
data
=
cursor
.
fetchall
()
user_id
=
list
(
data
)
user_id
=
list
(
data
)
...
@@ -46,7 +46,7 @@ if __name__ == "__main__":
...
@@ -46,7 +46,7 @@ if __name__ == "__main__":
numtime1
,
numtime2
=
time_convs
(
i
+
1
,
i
-
1
)
numtime1
,
numtime2
=
time_convs
(
i
+
1
,
i
-
1
)
logging
.
info
(
"get numtime1:
%
s"
%
numtime1
)
logging
.
info
(
"get numtime1:
%
s"
%
numtime1
)
user_id
=
get_data
(
numtime1
,
numtime2
)
user_id
=
get_data
(
numtime1
,
numtime2
)
urge_num
=
random
.
randint
(
0
,
1
)
urge_num
=
1
if
urge_num
==
1
:
if
urge_num
==
1
:
for
i
in
range
(
urge_num
):
for
i
in
range
(
urge_num
):
try
:
try
:
...
...
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