mirror of
https://gitea.phreedom.club/localhost_frssoft/funkwlmpv
synced 2024-11-05 14:53:02 +00:00
Albums view
This commit is contained in:
parent
7f2a3ae4c9
commit
fe51810a43
@ -1,6 +1,7 @@
|
||||
from src.fw_api import s, select_instance, instance
|
||||
from src.fw_radios import list_radios
|
||||
from src.fw_artists import list_artists
|
||||
from src.fw_albums import list_albums
|
||||
import json, sys
|
||||
from loguru import logger
|
||||
from pyfzf.pyfzf import FzfPrompt
|
||||
@ -15,6 +16,7 @@ def main():
|
||||
while True:
|
||||
menu = ['Radios',
|
||||
'Artists',
|
||||
'Albums',
|
||||
'Switch instance']
|
||||
if not s.headers.get('Authorization'):
|
||||
menu.append('Sign in')
|
||||
@ -25,6 +27,8 @@ def main():
|
||||
list_radios()
|
||||
if selected == 'Artists':
|
||||
list_artists()
|
||||
if selected == 'Albums':
|
||||
list_albums()
|
||||
if selected == 'Switch instance':
|
||||
with open('config.json', 'rt') as f:
|
||||
conf = json.loads(f.read())
|
||||
|
Loading…
Reference in New Issue
Block a user