update ignore & update sort
This commit is contained in:
parent
6995306195
commit
0fc49f6333
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,4 +1,2 @@
|
||||
lib/__pycache__/allFunction.cpython-37.pyc
|
||||
lib/__pycache__/crawler.cpython-37.pyc
|
||||
lib/__pycache__/mail.cpython-37.pyc
|
||||
__pycache__
|
||||
.vscode/settings.json
|
||||
|
@ -28,6 +28,8 @@ gunicorn coc:app -c gunicorn.conf.py
|
||||
pstree -ap|grep gunicorn
|
||||
// 关闭某服务
|
||||
kill (pid)
|
||||
//关闭venv
|
||||
deactivate
|
||||
```
|
||||
|
||||
## 错误代码一览
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -111,9 +111,9 @@ def getRank():
|
||||
time_rank = []
|
||||
count_rank = []
|
||||
try:
|
||||
for i in col('rank').find({},{"_id":0}).sort([("time",1)]).limit(10):
|
||||
for i in col('rank').find({},{"_id":0}).sort([("time",1),("count",1)]).limit(10):
|
||||
time_rank.append(i)
|
||||
for i in col('rank').find({},{"_id":0}).sort([("count",1)]).limit(10):
|
||||
for i in col('rank').find({},{"_id":0}).sort([("count",1),("time",1)]).limit(10):
|
||||
count_rank.append(i)
|
||||
except Exception as e:
|
||||
print(e)
|
||||
|
Loading…
x
Reference in New Issue
Block a user