mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 01:21:15 +01:00
8 lines
170 B
Python
Executable file
8 lines
170 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import requests
|
|
|
|
resp = requests.get("https://ntfy.sh/mytopic/json", stream=True)
|
|
for line in resp.iter_lines():
|
|
if line:
|
|
print(line)
|