mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 13:11:15 -07:00
4 lines
132 B
Python
4 lines
132 B
Python
import requests
|
|
data = requests.get("https://www.crummy.com/").content
|
|
from bs4 import _s
|
|
data = [x for x in _s(data).block_text()]
|