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
8809c9e1
Commit
8809c9e1
authored
Jul 22, 2019
by
lixiaofang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add
parent
62fb3e98
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
11 deletions
+18
-11
workspace.xml
.idea/workspace.xml
+0
-0
answer_reply2.py
answer_reply2.py
+6
-4
answer_reply3.py
answer_reply3.py
+6
-3
reply_comment2.py
reply_comment2.py
+3
-2
reply_comment3.py
reply_comment3.py
+3
-2
No files found.
.idea/workspace.xml
View file @
8809c9e1
This diff is collapsed.
Click to expand it.
answer_reply2.py
View file @
8809c9e1
...
@@ -3,7 +3,8 @@ import traceback
...
@@ -3,7 +3,8 @@ import traceback
import
logging
import
logging
import
json
import
json
from
log_settings
import
*
from
log_settings
import
*
from
auto_request
import
login
,
reply
,
get_comment
,
time_conv
,
get_answer_data
,
reply_answer
,
set_reply_to_redis
from
auto_request
import
logins
,
reply
,
get_comment
,
time_conv
,
get_answer_data
,
reply_answer
,
get_majia
,
\
set_reply_to_redis
from
auto_request
import
host
,
user
,
db
,
passwd
from
auto_request
import
host
,
user
,
db
,
passwd
...
@@ -49,7 +50,8 @@ if __name__ == "__main__":
...
@@ -49,7 +50,8 @@ if __name__ == "__main__":
reply_data_comment
=
[]
reply_data_comment
=
[]
if
user_id
:
if
user_id
:
for
i
in
user_id
:
for
i
in
user_id
:
cook
=
login
()
majia_user_id
=
get_majia
()
cook
=
logins
(
majia_user_id
)
comment1
,
comment2
=
get_answer_data
()
comment1
,
comment2
=
get_answer_data
()
if
cook
is
not
None
:
if
cook
is
not
None
:
response
=
reply_answer
(
cook
,
i
[
1
],
comment1
)
response
=
reply_answer
(
cook
,
i
[
1
],
comment1
)
...
@@ -58,11 +60,11 @@ if __name__ == "__main__":
...
@@ -58,11 +60,11 @@ if __name__ == "__main__":
reply_id
=
data_dict
[
"data"
][
"id"
]
reply_id
=
data_dict
[
"data"
][
"id"
]
reply_user_id
=
data_dict
[
"data"
][
"user"
][
"id"
]
reply_user_id
=
data_dict
[
"data"
][
"user"
][
"id"
]
reply_data_comment
.
append
(
reply_data_comment
.
append
(
{
"id"
:
reply_id
,
"reply_user_id"
:
reply_user_id
,
"answer"
:
comment2
,
"topic_id"
:
i
[
1
]})
{
"id"
:
reply_id
,
"reply_user_id"
:
reply_user_id
,
"answer"
:
comment2
,
"topic_id"
:
i
[
1
],
"majia_user_id"
:
majia_user_id
})
redis_client
=
set_reply_to_redis
()
redis_client
=
set_reply_to_redis
()
redis_client
.
set
(
redis_key
,
json
.
dumps
(
reply_data_comment
))
redis_client
.
set
(
redis_key
,
json
.
dumps
(
reply_data_comment
))
except
:
except
:
logging
.
error
(
"catch exception,main:
%
s"
%
traceback
.
format_exc
())
logging
.
error
(
"catch exception,main:
%
s"
%
traceback
.
format_exc
())
answer_reply3.py
View file @
8809c9e1
...
@@ -3,7 +3,8 @@ import traceback
...
@@ -3,7 +3,8 @@ import traceback
import
logging
import
logging
import
json
import
json
from
log_settings
import
*
from
log_settings
import
*
from
auto_request
import
login
,
reply
,
get_comment
,
time_conv
,
get_answer_data
,
reply_answer
,
set_reply_to_redis
from
auto_request
import
logins
,
reply
,
get_comment
,
time_conv
,
get_answer_data
,
reply_answer
,
set_reply_to_redis
,
\
get_majia
from
auto_request
import
host
,
user
,
db
,
passwd
from
auto_request
import
host
,
user
,
db
,
passwd
...
@@ -49,7 +50,8 @@ if __name__ == "__main__":
...
@@ -49,7 +50,8 @@ if __name__ == "__main__":
reply_data_comment
=
[]
reply_data_comment
=
[]
if
user_id
:
if
user_id
:
for
i
in
user_id
:
for
i
in
user_id
:
cook
=
login
()
majia_user_id
=
get_majia
()
cook
=
logins
(
majia_user_id
)
comment1
,
comment2
=
get_answer_data
()
comment1
,
comment2
=
get_answer_data
()
if
cook
is
not
None
:
if
cook
is
not
None
:
response
=
reply_answer
(
cook
,
i
[
1
],
comment1
)
response
=
reply_answer
(
cook
,
i
[
1
],
comment1
)
...
@@ -58,7 +60,8 @@ if __name__ == "__main__":
...
@@ -58,7 +60,8 @@ if __name__ == "__main__":
reply_id
=
data_dict
[
"data"
][
"id"
]
reply_id
=
data_dict
[
"data"
][
"id"
]
reply_user_id
=
data_dict
[
"data"
][
"user"
][
"id"
]
reply_user_id
=
data_dict
[
"data"
][
"user"
][
"id"
]
reply_data_comment
.
append
(
reply_data_comment
.
append
(
{
"id"
:
reply_id
,
"reply_user_id"
:
reply_user_id
,
"answer"
:
comment2
,
"topic_id"
:
i
[
1
]})
{
"id"
:
reply_id
,
"reply_user_id"
:
reply_user_id
,
"answer"
:
comment2
,
"topic_id"
:
i
[
1
],
"majia_user_id"
:
majia_user_id
})
redis_client
=
set_reply_to_redis
()
redis_client
=
set_reply_to_redis
()
redis_client
.
set
(
redis_key1
,
json
.
dumps
(
reply_data_comment
))
redis_client
.
set
(
redis_key1
,
json
.
dumps
(
reply_data_comment
))
...
...
reply_comment2.py
View file @
8809c9e1
...
@@ -3,7 +3,7 @@ import redis
...
@@ -3,7 +3,7 @@ import redis
import
logging
import
logging
import
json
import
json
from
log_settings
import
*
from
log_settings
import
*
from
auto_request
import
set_reply_to_redis
,
reply2
,
login
from
auto_request
import
set_reply_to_redis
,
reply2
,
login
s
,
get_majia_reply
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
...
@@ -14,7 +14,8 @@ if __name__ == "__main__":
...
@@ -14,7 +14,8 @@ if __name__ == "__main__":
result
=
json
.
loads
(
str
(
have_reply1
,
encoding
=
"utf-8"
))
result
=
json
.
loads
(
str
(
have_reply1
,
encoding
=
"utf-8"
))
if
result
:
if
result
:
for
item
in
result
:
for
item
in
result
:
cook
=
login
()
majia_user_id
=
get_majia_reply
(
item
[
"majia_user_id"
])
cook
=
logins
(
majia_user_id
)
reply2
(
cook
,
item
[
"topic_id"
],
item
[
"answer"
],
item
[
"id"
])
reply2
(
cook
,
item
[
"topic_id"
],
item
[
"answer"
],
item
[
"id"
])
redis_client
.
delete
(
redis_key1
)
redis_client
.
delete
(
redis_key1
)
except
:
except
:
...
...
reply_comment3.py
View file @
8809c9e1
...
@@ -3,7 +3,7 @@ import redis
...
@@ -3,7 +3,7 @@ import redis
import
logging
import
logging
import
json
import
json
from
log_settings
import
*
from
log_settings
import
*
from
auto_request
import
set_reply_to_redis
,
reply2
,
login
from
auto_request
import
set_reply_to_redis
,
reply2
,
login
s
,
get_majia_reply
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
...
@@ -14,7 +14,8 @@ if __name__ == "__main__":
...
@@ -14,7 +14,8 @@ if __name__ == "__main__":
result
=
json
.
loads
(
str
(
have_reply1
,
encoding
=
"utf-8"
))
result
=
json
.
loads
(
str
(
have_reply1
,
encoding
=
"utf-8"
))
if
result
:
if
result
:
for
item
in
result
:
for
item
in
result
:
cook
=
login
()
majia_user_id
=
get_majia_reply
(
item
[
"majia_user_id"
])
cook
=
logins
(
majia_user_id
)
reply2
(
cook
,
item
[
"topic_id"
],
item
[
"answer"
],
item
[
"id"
])
reply2
(
cook
,
item
[
"topic_id"
],
item
[
"answer"
],
item
[
"id"
])
redis_client
.
delete
(
redis_key1
)
redis_client
.
delete
(
redis_key1
)
except
:
except
:
...
...
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