@@ -44,10 +44,20 @@ Import the package at the top of any file where you will use it. At the very lea
4444 Creating Sessions
4545~~~~~~~~~~~~~~~~~
4646
47- The create an OpenTok Session, use the ``opentok.create_session() `` method. There are three optional
48- keyword parameters for this method: ``location `` which can be set to a string containing an IP
49- address, ``media_mode `` which is a String (defined by the MediaModes class) and ``archive_mode `` which
50- specifies whether the session will be automatically archived (``always ``) or not (``manual ``).
47+ To create an OpenTok Session, use the ``opentok.create_session() `` method. There are three optional
48+ keyword parameters for this method:
49+
50+ * ``location `` which can be set to a string containing an IP address.
51+
52+ * ``media_mode `` which is a String (defined by the MediaModes class).
53+ This determines whether the session will use the
54+ `OpenTok Media Router <https://tokbox.com/developer/guides/create-session/#media-mode >`_
55+ or attempt to send streams directly between clients. A routed session is required for some
56+ OpenTok features (such as archiving).
57+
58+ * ``archive_mode `` which specifies whether the session will be automatically archived (``always ``)
59+ or not (``manual ``).
60+
5161This method returns a ``Session `` object. Its ``session_id `` attribute is useful when saving to a persistent
5262store (such as a database).
5363
@@ -99,7 +109,7 @@ Working with Archives
99109You can start the recording of an OpenTok Session using the ``opentok.start_archive(session_id) ``
100110method. This method takes an optional keyword argument ``name `` to assign a name to the archive.
101111This method will return an ``Archive `` instance. Note that you can only start an Archive on
102- a Session that has clients connection .
112+ a Session that has clients connected .
103113
104114.. code :: python
105115
@@ -196,8 +206,7 @@ repository and follow the Walkthroughs:
196206Documentation
197207-------------
198208
199- Reference documentation is available at <http://www.tokbox.com/opentok/libraries/server/python/reference/index.html> and in the
200- docs directory of the SDK.
209+ Reference documentation is available at <http://www.tokbox.com/opentok/libraries/server/python/reference/index.html>.
201210
202211Requirements
203212------------
0 commit comments