選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
|
- import requests
- from xml.etree import ElementTree as ET
-
- podcast = 'https://files.orf.at/podcast/oe1/oe1_journale.xml'
- podcast_string = requests.get(podcast).text
- tree = ET.fromstring(podcast_string)
- print(tree.find('.//enclosure').get('url'))
|