-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.py
43 lines (35 loc) · 1.25 KB
/
addon.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from xbmcswift2 import Plugin, xbmcgui
from resources.lib import mainaddon
plugin = Plugin()
#URL0 = "https://thefinancialreality.podomatic.com/rss2.xml"
URL1 = "https://feed.podbean.com/quoththeraven/feed.xml"
@plugin.route('/')
def main_menu():
"""
main menu
"""
items = [
{
'label': plugin.get_string(30001),
'path': plugin.url_for('all_episodes1'),
'thumbnail': "https://pbcdn1.podbean.com/imglogo/image-logo/1811786/QTRLogo.jpg"},
{
'label': plugin.get_string(30000),
'path': plugin.url_for('all_episodes'),
'thumbnail': "https://pbcdn1.podbean.com/imglogo/image-logo/1811786/QTRLogo.jpg"},
]
return items
@plugin.route('/all_episodes/')
def all_episodes():
soup = mainaddon.get_soup(URL1)
playable_podcast = mainaddon.get_playable_podcast(soup)
items = mainaddon.compile_playable_podcast(playable_podcast)
return items
@plugin.route('/all_episodes1/')
def all_episodes1():
soup = mainaddon.get_soup(URL1)
playable_podcast1 = mainaddon.get_playable_podcast1(soup)
items = mainaddon.compile_playable_podcast1(playable_podcast1)
return items
if __name__ == '__main__':
plugin.run()