update document
This commit is contained in:
liris
2015-10-27 15:43:34 +09:00
parent 9447246ef1
commit 7fe8706fde
2 changed files with 3 additions and 2 deletions

View File

@@ -13,6 +13,7 @@ ChangeLog
- introduce on_data callback to pass data type. (#198) - introduce on_data callback to pass data type. (#198)
- WebSocketBadStatusException for Handshake error (#199) - WebSocketBadStatusException for Handshake error (#199)
- set close timeout (#192) - set close timeout (#192)
- Map dict to headers list (#204)
- 0.32.0 - 0.32.0

View File

@@ -74,7 +74,7 @@ def create_connection(url, timeout=None, **options):
it means "use default_timeout value" it means "use default_timeout value"
options: "header" -> custom http header list. options: "header" -> custom http header list or dict.
"cookie" -> cookie value. "cookie" -> cookie value.
"origin" -> custom origin url. "origin" -> custom origin url.
"host" -> custom host header string. "host" -> custom host header string.
@@ -249,7 +249,7 @@ class WebSocket(object):
if you set None for this value, if you set None for this value,
it means "use default_timeout value" it means "use default_timeout value"
options: "header" -> custom http header list. options: "header" -> custom http header list or dict.
"cookie" -> cookie value. "cookie" -> cookie value.
"origin" -> custom origin url. "origin" -> custom origin url.
"host" -> custom host header string. "host" -> custom host header string.