首页 > 代码库 > 第8月第12天 python json.dumps

第8月第12天 python json.dumps

1.json.dumps

        return JsonResponse({        status: WechatMessage.POST_METHOD_REQUIRED[1],        status_code: WechatMessage.POST_METHOD_REQUIRED[0]        })

 

import jsonfrom django.shortcuts import HttpResponsedef JsonResponse(params):    return HttpResponse(json.dumps(params))

 

 

2.danmu

 

c语言版:https://github.com/fishioon/douyu/

python版: https://github.com/littlecodersh/danmu/

 

第8月第12天 python json.dumps