호비시의 끄적끄적

2022 03 08 정리 필요한 것들 본문

카테고리 없음

2022 03 08 정리 필요한 것들

호비시 2022. 3. 8. 22:23

mongo db 

where , and, or , sort

db.post.find({'$and': [{'title': {'$regex': txt}}, {'status': True}]}, {'_id': False}).sort('likes', -1)

 

jwt 

jwt.decode(token_receive, app.secret_key, algorithms=["HS256"])

 

Comments