123456789101112131415161718 |
- # -*- codeing = utf-8 -*-
- # @Time : 2022/10/11 13:52
- # @Author : Clown
- # @File : mesg_test.py
- # @Software : PyCharm
- import requests
- # url = 'http://127.0.0.1:8883/qaurl'
- url = 'http://944gwy.natappfree.cc/qaurl'
- headers = {'content-type': 'application/json;charset=UTF-8'}
- json_params = {}
- resp = requests.post(url,json=json_params,headers=headers).text.split()
- print(resp)
|