nice
This commit is contained in:
parent
426ad381de
commit
b6d88d435a
6 changed files with 112 additions and 128 deletions
2
Flow.py
2
Flow.py
|
|
@ -23,6 +23,7 @@ from src.StatGenerator import log_stats
|
|||
class Flow:
|
||||
spotify_library : Library = None
|
||||
local_library : Library = None
|
||||
itunes_library : Library = None
|
||||
|
||||
@staticmethod
|
||||
def fetch_spotify(self):
|
||||
|
|
@ -107,6 +108,7 @@ class Flow:
|
|||
|
||||
def load_libraries(self):
|
||||
self.spotify_library = LibraryLoader().load(work_dir / "spotify_library.json")
|
||||
self.itunes_library = LibraryLoader().load(work_dir / "itunes_library.json")
|
||||
self.local_library = LibraryLoader().load(work_dir / "local_library.json")
|
||||
|
||||
def save_libraries(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue