It looks like you're new here. If you want to get involved, click one of these buttons!
import logging
from kiteconnect import KiteTicker
logging.basicConfig(level=logging.DEBUG)
kws = KiteTicker("","")
def on_ticks(ws, ticks):
logging.info("Ticks: {}".format(ticks))
def on_connect(ws, response): # noqa
ws.subscribe([738561, 5633])
ws.set_mode(ws.MODE_FULL, [738561]
kws.on_ticks = on_ticks
kws.on_connect = on_connect
kws.connect()
Error message: