1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Data channel CLI
================
This example illustrates the establishment of a data channel using an
RTCPeerConnection and a "copy and paste" signaling channel to exchange SDP.
First install the required packages:
.. code-block:: console
$ pip install aiortc
To run the example, you will need instances of the `cli` example:
- The first takes on the role of the offerer. It generates an offer which you
must copy-and-paste to the answerer.
.. code-block:: console
$ python cli.py offer
- The second takes on the role of the answerer. When given an offer, it will
generate an answer which you must copy-and-paste to the offerer.
.. code-block:: console
$ python cli.py answer
|