提问人:Mostafa Karami 提问时间:9/27/2023 更新时间:9/27/2023 访问量:38
使用代理发送带有 Python SKPY 的 Skype 聊天
sent skype chat with python skpy with proxy
问:
我有一个 Python 代码,可以在我的笔记本电脑上完美运行。但是,当我尝试在装有 Windows 的虚拟机上运行它时,我需要设置如下代理:.但我不确定如何改变它。您能否指导我如何更改运行 Windows 的虚拟机上的代理设置?
我已经在 Windows 设置上设置了代理,但它不起作用http://172.50.235.55:3428
from skpy import Skype
sk = Skype(username, password) # connect to Skype
sk.user # you
sk.contacts # your contacts
sk.chats # your conversations
ch = sk.chats.create(["joe.4", "daisy.5"]) # new group conversation
ch = sk.contacts["joe.4"].chat # 1-to-1 conversation
ch.sendMsg(content) # plain-text message
ch.sendFile(open("song.mp3", "rb"), "song.mp3") # file upload
ch.sendContact(sk.contacts["daisy.5"]) # contact sharing
ch.getMsgs() # retrieve recent messages
此代码返回错误HTTPSConnectionpool (host='login.live.com', port=443)
我还测试了下面的代码并得到了“代码 200”
import requests
url = 'https://login.live.com'
proxy = 'http://172.50.235.55:3428'
proxies = {
'http': proxy,
'https': proxy
}
response = requests.get(url, proxies=proxies)
print(f'Status Code: {response.status_code}')
print(f'Response Content: {response.text}')
我想将类似 skpy 的请求与代理一起使用
答: 暂无答案
评论