15 lines
307 B
Python
15 lines
307 B
Python
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
|