示例#1
0
文件: manage.py 项目: zeus911/maple
def runworker(host, port, debug, workers):
    """
    start worker
    """
    from worker.application import create_app
    app = create_app()
    app.run(host, port, debug, workers)
示例#2
0
文件: manage.py 项目: zeus911/kpush
def runworker(host, port, debug, workers):
    """
    start worker
    """
    from worker.application import create_app
    app = create_app()
    app.run(host, port, debug, workers)
示例#3
0
import sys
import os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "../../"))

from netkit.box import Box
from web.application import create_app
from maple import Trigger
from share.utils import pack_data

trigger = Trigger(Box, '115.28.224.64', 28000)


def test_notification():
    trigger.write_to_users(
        (((-1, ),
          dict(cmd=1000,
               body=pack_data(dict(
                   title=u'我是标题',
                   content=u'我是内容',
               )))), ))


def main():
    test_notification()


if __name__ == '__main__':
    app = create_app()
    with app.test_request_context():
        main()
示例#4
0
文件: client.py 项目: Ladyia/kpush
import sys
import os
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "../../"))

import requests
from web.application import create_app
from share.utils import pack_data, unpack_data


def test_alloc_server():
    # url = 'http://115.28.224.64:7555/server/alloc'
    url = 'http://127.0.0.1:5000/server/alloc'

    post_body = pack_data(
        dict(
            appkey='7d357c9b4ce1414fb27f077b54fb5a8f',
            channel='M',
            device_id='23423',
            device_name='fefer',
        )
    )

    rsp = requests.post(url, post_body)

    print rsp.text

if __name__ == '__main__':
    app = create_app()
    with app.test_request_context():
        test_alloc_server()