実現したいこと
初めてVTSを使います
さくらのVPSのWindows Server 2022 を使っています
VPSでPython と vscode インストールをしました
vscodeでpip install websocket して
pip list を確認してところ
Package Version
cffi 1.15.1
gevent 23.7.0
greenlet 2.0.2
pip 23.1.2
pycparser 2.21
setuptools 65.5.0
websocket 0.2.1
zope.event 5.0
zope.interface 6.0
websocket はインストールされていると思うます
以下のコードを実行しました
import websocket
websocket.enableTrace(True)
ws = websocket.WebSocketApp('wss://api.coin.z.com/ws/public/v1')
実行結果が以下の通りです
websocket.enableTrace(True)
^^^^^^^^^^^^^^^^^^^^^
AttributeError: module 'websocket' has no attribute 'enableTrace'
何が原因でAttributeErrorになるかがわかりません
ご指導のほどよろしくお願いいたします。
0 コメント