我尝试使用import requests
url = 'https://site/request'
params = {
'param1': 'value1',
'param2': 'value2',
}
post_response = requests.post(url, json=params)
if post_response.ok:
the_page = post_response.content
# do your stuff here
print post_response.content # this will give you the message regardless of failure
print post_response.status_code # this will give you the status code of the request
post_response.raise_for_status() # this will throw an error if the status is not 200
发送复制命令,但通过这种方式系统工作不稳定:打印' c'输入字段的字符,ctrl处于keydown状态,而不是keyup。
(见,keydown是最后一次)
我还尝试使用PostMessage模拟复制命令,但它没有工作。
SendKeys.Send("^{c}");
请告诉我,如何解决问题,也许我做错了什么。