This commit is contained in:
Шурупов Илья Викторович 2026-02-07 00:48:46 +03:00
parent 35905ea942
commit 99cd872227
13 changed files with 630 additions and 190 deletions

14
main.py
View file

@ -5,15 +5,14 @@ import Flow
def test1():
flow = Flow.Flow()
flow.fetch_local()
# flow.fetch_local()
flow.parse_local_library()
flow.load_libraries()
# flow.map_local_to_spotify()
# flow.log_stats()
flow.fetch_and_save_lyrics()
# flow.fetch_and_save_lyrics()
def main():
flow = Flow.Flow()
@ -27,11 +26,12 @@ def main():
flow.load_libraries()
flow.map_local_to_spotify()
flow.save_libraries()
flow.log_stats()
# flow.log_stats()
print("asd")
# print("asd")
test1()
# main()
# test1()
main()