Iniial commit. Reads in hardcoded OPML file and prints out podcast title/url/artwork url/desc

This commit is contained in:
Dan Dembinski
2020-02-19 13:58:27 -05:00
commit 176984051d
2 changed files with 15 additions and 0 deletions

14
main.py Normal file
View File

@@ -0,0 +1,14 @@
import opml
def podcastImport ():
outline = opml.parse("podcast_republic_podcasts.opml")
x = len(outline)
y=0
while y < x:
print(outline[y].title)
print(outline[y].xmlUrl)
print(outline[y].pr_artwork)
print(outline[y].pr_desc)
print()
y=y+1

File diff suppressed because one or more lines are too long