---------------
The Session object allows you to persist certain parameters across
-requests. It also establishes a CookieJar and passes it along
-to any requests made from the Session instance.
+requests. It also perstists cookies across all requests made from the
+Session instance.
A session object has all the methods of the main Requests API.
>>> print r.cookies
{'requests-is': 'awesome'}
-The underlying CookieJar is also available for more advanced handling::
-
- >>> r.request.cookiejar
- <cookielib.CookieJar>
-
To send your own cookies to the server, you can use the ``cookies``
parameter::