moving some modules around
This commit is contained in:
parent
70734c7c59
commit
75bfe0dae2
57 changed files with 7 additions and 3 deletions
resources/lib
bottle_manager.py
deps/librespot
__init__.py
librespot_auth.pymain_service.pyaudio
cache.pycore.pycrypto.pydealer.pymercury.pymetadata.pyproto
Authentication_pb2.pyCanvazMeta_pb2.pyCanvaz_pb2.pyClientToken_pb2.pyConnect_pb2.pyConnectivity_pb2.pyContextPage_pb2.pyContextPlayerOptions_pb2.pyContextTrack_pb2.pyContext_pb2.pyExplicitContentPubsub_pb2.pyKeyexchange_pb2.pyMercury_pb2.pyMetadata_pb2.pyPlayOrigin_pb2.pyPlayback_pb2.pyPlayer_pb2.pyPlaylist4External_pb2.pyPlaylistAnnotate3_pb2.pyPubsub_pb2.pyQueue_pb2.pyRestrictions_pb2.pySession_pb2.pyStorageResolve_pb2.pyTransferState_pb2.py__init__.py
structure.pyutil.pyzeroconf.pyspotify
|
@ -1,10 +1,11 @@
|
|||
import os, sys
|
||||
sys.path.insert(1, os.path.join(os.path.dirname(__file__), "deps"))
|
||||
|
||||
from wsgiref.simple_server import make_server
|
||||
|
||||
from bottle import app, request, HTTPResponse, Bottle
|
||||
import xbmc
|
||||
|
||||
import re
|
||||
|
||||
from librespot.core import Session
|
||||
from librespot.audio.decoders import AudioQuality, VorbisOnlyAudioQuality
|
||||
from librespot.metadata import TrackId
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
import os, sys
|
||||
sys.path.insert(1, os.path.join(os.path.dirname(__file__), "deps"))
|
||||
|
||||
import time
|
||||
from typing import Dict
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
"""
|
||||
|
||||
import sys, os
|
||||
sys.path.insert(1, os.path.join(os.path.dirname(__file__), "deps"))
|
||||
|
||||
import time
|
||||
from typing import Dict
|
||||
|
@ -28,7 +29,6 @@ from librespot.core import Session
|
|||
|
||||
SAVE_TO_RECENTLY_PLAYED_FILE = True
|
||||
|
||||
sys.path.insert(1, os.path.join(os.path.dirname(__file__), "deps"))
|
||||
|
||||
SPOTIFY_ADDON = xbmcaddon.Addon(id=ADDON_ID)
|
||||
|
||||
|
|
Loading…
Reference in a new issue