Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

oe1journal.py 244 B

1234567
  1. import requests
  2. from xml.etree import ElementTree as ET
  3. podcast = 'https://files.orf.at/podcast/oe1/oe1_journale.xml'
  4. podcast_string = requests.get(podcast).text
  5. tree = ET.fromstring(podcast_string)
  6. print(tree.find('.//enclosure').get('url'))