Python3.6之給指定用戶發送微信消息

Python3.6之給指定用戶發送微信消息

 

 

#!/usr/bin/python3
# -*- coding: utf-8 -*-

import datetime
import time
import requests
import json

github_url = "http://192.168.1.70:8080/robot/messageServlet2"

data = json.dumps({'name': 'test', 'phone': 139})

url = 'http://192.168.1.70:8080/robot/messageServlet2'
# r = requests.post(url, data={'name': 'test', 'phone': 'some test repo'})

while 1:
    now = datetime.datetime.now()
    now_str = now.strftime('%Y/%m/%d %H:%M:%S')[11:]
    print('\r{}'.format(now_str), end='')
    r = requests.post(url, data={'name': 'test', 'phone': 139, 'content': '內容'})
    print(r.text.data)
    time.sleep(1)

print("結束")

 

posted @ 2018-10-10 10:36 花生福 閱讀(...) 評論(...) 編輯 收藏
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章