Browse Source

fix AsyncClient example and typo in Intro (#389)

* fix AsyncClient example

* fix miguelgrinberg/python-socketio#353
pull/420/head
Dmitry Volodin 5 years ago
committed by Miguel Grinberg
parent
commit
aa2882cb3e
  1. 2
      docs/intro.rst
  2. 2
      socketio/asyncio_client.py

2
docs/intro.rst

@ -45,7 +45,7 @@ The example that follows shows a simple Python client:
Client Features
---------------
- Can connect to other Socket.IO complaint servers besides the one in
- Can connect to other Socket.IO compliant servers besides the one in
this package.
- Compatible with Python 2.7 and 3.5+.
- Two versions of the client, one for standard Python and another for

2
socketio/asyncio_client.py

@ -86,7 +86,7 @@ class AsyncClient(client.Client):
Example usage::
sio = socketio.Client()
sio = socketio.AsyncClient()
sio.connect('http://localhost:5000')
"""
self.connection_url = url

Loading…
Cancel
Save