Skip to content

Commit b1ca30f

Browse files
authored
Update server_sent_events.markdown
1 parent edf76a0 commit b1ca30f

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

source/developers/server_sent_events.markdown

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,7 @@ If you want to test the server-sent events without creating a website, the Pytho
6262
$ pip3 install sseclient
6363
```
6464

65-
<<<<<<< HEAD
66-
The simplest script to consume the SSE looks like the following snippet.
67-
=======
68-
The simplest script to consume the SSE in Python looks like this:
69-
>>>>>>> current
65+
A simple script to consume SSE in Python looks like this:
7066

7167
```python
7268
from sseclient import SSEClient
@@ -75,4 +71,3 @@ messages = SSEClient('http://localhost:8123/api/stream?api_password=YOUR_PASSWOR
7571
for msg in messages:
7672
print(msg)
7773
```
78-

0 commit comments

Comments
 (0)