# Notifier-Framework **Repository Path**: dark.H/Notifier-Framework ## Basic Information - **Project Name**: Notifier-Framework - **Description**: a open source notifier framework based on tornado,QTornado(a personal Tornado ,write by me ) - **Primary Language**: Python - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 7 - **Forks**: 1 - **Created**: 2015-11-12 - **Last Updated**: 2025-06-11 ## Categories & Tags **Categories**: message-server **Tags**: None ## README #Notifer Document ## Introduction - easy to use + link to server + just implement websocket-client + three type to send msg + no limit - depends + tornado ## Install > build a server #python main.py #this shold install tornado ## Useage ## Data(json) login: client->server { "type":"changeTag", "tag":"xxx", } server->client { "type":"res", "res":"ok", } info for another user whether online client->server "obj":{ "type":"search" } server->client { "res":["xxx","xxx","xxx"] } sendmsg REST: http://xxx.xxx.xx/sendmsg/[from]_to_[target_tag]/msg_detail_msg http://192.168.1.100:8080/sendmsg/qingluan_to_dabao/msg_hello%20world POST: http://192.168.1.100:8080/sendmsg "obj":{ "from":"xxx", "msg":"xxxxx", "to":"target_tag" ...some extend } >this can use in ajax .. but change url to 'http://192.168.1.100:8080/sendajaxmsg'