コード例 #1
0
ファイル: app.py プロジェクト: thephantomblu/jarvis
def handle_incoming_messages():
    try:
        data = request.json
        sender = data['entry'][0]['messaging'][0]['sender']['id']
        message = data['entry'][0]['messaging'][0]['message']['text']
        reply(sender, jarvis.do(message))

    except:
        pass

    return "ok"
コード例 #2
0
ファイル: testing.py プロジェクト: thephantomblu/jarvis
#!/usr/bin/env python

import jarvis

while 1:
    print jarvis.do(raw_input("> "))