The websocket_urlpatterns is the projects internal WebSocket which is authenticated.
while live_websocket_urlpatterns is from a third party socket providers, which i do not intend to use authentication.
is there any pointers where I could accomplish this.?
You should be able to use a URLRouter to branch to the two different websocket protocol handling apps, based on URL. (Otherwise you’d need to implement a custom routing middleware to use some other aspect of the request to route by.)