I want to share my local WebSocket on the internet but ngrok only support HTTP but my ws.py address is ws://localhost:8000/
WebSocket
ngrok
HTTP
ws.py
ws://localhost:8000/
it is good working on localhost buy is not know how to use this on the internet?
You can use ngrok http 8000 to access it. It will work. Although, ws is altogether a different protocol than http but ngrok handles it internally.
ngrok http 8000
You can expose websocket server using NGROK
ngrok tcp 8000