123456789101112131415161718192021222324252627282930313233 |
- import requests
- import xmpp
- from xmpp import cli
- import config
- from BotClass import JabberBot
- import json
- import hashlib
- from datetime import datetime
- import time
- import threading
- import jsonAndRequest as jsreq
- global tasklist
- def send_message(order):
- task_apply = {
- 'driver_id':None,
- 'apply':False,
- 'task_id':order.id
- }
- print(order.id)
-
- bot.proceed_status('driver_jabber',task_apply)
-
- def find_jabber_acc():
- pass
-
|