Use the same password placeholder

This commit is contained in:
Fabian Affolter 2016-07-29 22:18:28 +02:00
parent 6499a70163
commit e0e1553324
No known key found for this signature in database
GPG key ID: DDF3D6F44AAB1336
2 changed files with 8 additions and 8 deletions

View file

@ -67,7 +67,7 @@ The simplest script to consume the SSE looks like the following snipplet.
```python
from sseclient import SSEClient
messages = SSEClient('http://localhost:8123/api/stream?api_password=MYPASS')
messages = SSEClient('http://localhost:8123/api/stream?api_password=YOUR_PASSWORD')
for msg in messages:
print(msg)
```