호비시의 끄적끄적
2022 03 08 정리 필요한 것들 본문
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