import requests
raw = requests.get("https://de1.api.radio-browser.info/json/stations/bycountryexact/Ukraine")
print(raw.content)
import json
jsoned = json.loads(raw.content)
print(jsoned[0])
#requests - для скачки странички
import requests
#html из lxml - чтобы парсить DOM дерево
from lxml import html
#забираем страничку с нефтью
raw = requests.get("https://yandex.ru/news/quotes/1006.html")
#строим из нее html дерево
dom = html.fromstring(raw.content)
#забираем xpath-ом ноды с датами и ценами из дерева
dates = dom.xpath('//td[@class="quote__date"]')
prices = dom.xpath('//td[@class="quote__value"]')
#выводим на экран
for d,p in zip(dates, prices):
print(d.text_content(), p.text_content())
window.addEventListener("resize", myFunction);
<a :class="{active: item == currentlyActiveItem}">{{item}}</a>
file_get_contents('php://input')