Websocket module error

Hi Team,
When I tried to take an example code from Github which is provided by @Ketan_Gupta @Ketan for websocket. I am facing a module error for the below code. No module found MarketDataFeedV3_pb2.

import asyncio
import json
import ssl
import websockets
import requests
from google.protobuf.json_format import MessageToDict

import MarketDataFeedV3_pb2 as pb

Kindly Assit.

Hi @GUNASEKARA_4619054
Ensure that you have downloaded MarketDataFeedV3_pb2 in the same directory as your websocket connection file. For more details, refer to:
Market Data WebSocket Example

You can also explore our SDKs’ streamer functions for a more user-friendly experience:
Feeder Functions Documentation

Thanks!