-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.py
56 lines (40 loc) · 1.4 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
44
45
46
47
48
49
50
51
52
53
54
55
56
from xbmcswift2 import Plugin, xbmcgui
from resources.lib import kimiversenshow
plugin = Plugin()
URL = "https://feed.podbean.com/kimiversen/feed.xml"
@plugin.route('/')
def main_menu():
"""
main menu
"""
items = [
{
'label': plugin.get_string(30000),
'path': plugin.url_for('all_episodes'),
'thumbnail': "https://pbcdn1.podbean.com/imglogo/ep-logo/pbblog4541467/Untitled-1.jpg"},
{
'label': plugin.get_string(30001),
'path': plugin.url_for('all_episodes1'),
'thumbnail': "https://pbcdn1.podbean.com/imglogo/ep-logo/pbblog4541467/Untitled-1.jpg"},
]
return items
@plugin.route('/all_episodes/')
def all_episodes():
"""
contains playable podcasts listed as just-in
"""
soup = kimiversenshow.get_soup(URL)
playable_podcast = kimiversenshow.get_playable_podcast(soup)
items = kimiversenshow.compile_playable_podcast(playable_podcast)
return items
@plugin.route('/all_episodes1/')
def all_episodes1():
"""
contains playable podcasts listed as just-in
"""
soup = kimiversenshow.get_soup(URL)
playable_podcast1 = kimiversenshow.get_playable_podcast1(soup)
items = kimiversenshow.compile_playable_podcast1(playable_podcast1)
return items
if __name__ == '__main__':
plugin.run()