webrtc with django

hey guys,
I want to setup a communication medium using webrtc in my django website .
I need some extra features like multi peer video calling,chat and file sharing .
could you please help me regarding this?
Thanks in advance.

From what I can see, webrtc is a set of JavaScript libraries.

Django would just serve these libraries on whatever page you build to use it. There’s no specific Django support necessary to provide that.

Beyond that, including chat seems like an appropriate implementation of Channels. The channels-examples repo includes a chat application that you can use as a learning tool / starting point for your own implementation.

The term “file sharing” is a bit ambiguous. What you would need to implement depends a bit upon exactly what you mean by this.

Ken