選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

8 行
244 B

  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'))