我制作了一个使用teamspeak模块的简单python脚本。 但是当尝试连接到任何服务器(包括我的本地服务器)时,它会返回此信息。
(我是Python的半新版本,我们将不胜感激。)
Traceback (most recent call last):
File "endless_poke.py", line 70, in <module>
with ts3.query.TS3Connection('127.0.0.1', 9987) as ts3conn:
File "C:\Python34\lib\site-packages\ts3\query.py", line 172, in __init__
self.open(host, port)
File "C:\Python34\lib\site-packages\ts3\query.py", line 249, in open
self._telnet_conn = telnetlib.Telnet(host, port, timeout)
File "C:\Python34\lib\telnetlib.py", line 221, in __init__
self.open(host, port, timeout)
File "C:\Python34\lib\telnetlib.py", line 237, in open
self.sock = socket.create_connection((host, port), timeout)
File "C:\Python34\lib\socket.py", line 509, in create_connection
raise err
File "C:\Python34\lib\socket.py", line 500, in create_connection
sock.connect(sa)
ConnectionRefusedError: [WinError 10061] No connection could be made because the target machine actively refused it.
我在互联网上看过一些东西,但这不是我想要的东西,或者让人感到困惑。
谢谢, 摩。