From 0ba486f990f5c6ce3917061206edf509de62f7c9 Mon Sep 17 00:00:00 2001 From: Broque Thomas Date: Sun, 13 Jul 2025 21:56:23 -0700 Subject: [PATCH] matching system --- .spotify_cache | 2 +- .../spotify_client.cpython-312.pyc | Bin 11888 -> 12515 bytes core/spotify_client.py | 13 + logs/app.log | 8418 +++++++++++++++++ .../__pycache__/downloads.cpython-310.pyc | Bin 201136 -> 207595 bytes .../__pycache__/downloads.cpython-312.pyc | Bin 369970 -> 390541 bytes ui/pages/downloads.py | 550 +- 7 files changed, 8915 insertions(+), 68 deletions(-) diff --git a/.spotify_cache b/.spotify_cache index 9c8b6c7a..2d5513d4 100644 --- a/.spotify_cache +++ b/.spotify_cache @@ -1 +1 @@ -{"access_token": "BQCbD6wcYO1uJ8rNRJ005LXsDHcLXm8r_m3sANOfce5DfPIAKBZKOjYBVXmEU4JIi3D_le1vcMRCkQtQ7Gyu4PQjZ6BpVkzXnH4IWOa-fFiHuHsFOmDPp4DwTzhrI4AB7zGIAh8n_OSrQRcilTycl_fuDwm9hpxaO9S0sOs6WnLZvrxwzGvaAKz3IF1qTY9ZpPQ-mmcYn59CDRi2WUYMkCuuiI4RrpC0DpMyRYBhX2_PyfY5tVeQLj54WSd4xvC4", "token_type": "Bearer", "expires_in": 3600, "scope": "user-library-read user-read-private playlist-read-private playlist-read-collaborative user-read-email", "expires_at": 1752464571, "refresh_token": "AQDmfQkPCGObfJeTUIbW1hAAwhSqkuHRA3Qh2dqVYMRh0eCkFMQgPNJDDzF8y-BiaVbj80zePkK_XSfYH1aJutMtNbnsqRKWuxP31BTrMc7pdUdbE7Fma4oH8wpDUKdG3MM"} \ No newline at end of file +{"access_token": "BQBY2r6CzWlSFtK1-MKiV7rH8ksYMEl0xlwQcyALSpjFqoeHTkxYJ_JoNZta7HPOD1QLfSMm39GkIZz5_W8JiulbOkNwB-ybNrvQRVu6p-btX1ZQ94koV92hU5LZaI4AVwexnPu5PHbdfxjUqVuU81PVwN4Wb_qwa4XiroDZnt5ywvqroCw0A5JCXVe9UWCILrT2VsNJaaUBzNPn-25pKBwveEQhatbvOZsGmbnu5DH0MMLg3YQI81HPGu9tSyl4", "token_type": "Bearer", "expires_in": 3600, "scope": "user-library-read user-read-private playlist-read-private playlist-read-collaborative user-read-email", "expires_at": 1752472391, "refresh_token": "AQDmfQkPCGObfJeTUIbW1hAAwhSqkuHRA3Qh2dqVYMRh0eCkFMQgPNJDDzF8y-BiaVbj80zePkK_XSfYH1aJutMtNbnsqRKWuxP31BTrMc7pdUdbE7Fma4oH8wpDUKdG3MM"} \ No newline at end of file diff --git a/core/__pycache__/spotify_client.cpython-312.pyc b/core/__pycache__/spotify_client.cpython-312.pyc index 5829540bcd70f39d3858a6be4635d29b7eea25ee..89304a9b2fcf6e17624db02dad44cab66f0db886 100644 GIT binary patch delta 629 zcmewm^Ei?3G%qg~0}!aSm1Hz3Z{)M)WBfMRi!X&yX!3eKX&`x;&)S|hl`Dlgl{Zy5 zl`B;wjY$%y9)#0aQutd~qQtPuF{KCq<-{umHH9~;^6!;k+QTr}K}?yMv66A}MtMs{ zrpZAX?)8kd%yrC_j45EcoUxptf;p0*oKcgx%EdjkL?I=$Br!85HASJMC^0!(Au}&6 zzbH4cBr`t`$WG2FP07qlS4hlBD$P|$Ni0cJNX&yN%`44KN-grMl5;I8$}dt#OD##x z04atT1TnYRs$M~pttbKLl_EC~Q3xWUKtu?Lhz1gxEJa=*b_0kI2N7{VqL>9pC;&l` z9FTEKFg>*-9&B;%(P19oXpg`5C;!PxuP}@(J@(DN0IT}WM7?G z3f!y`E0jMl0I3ZcJ4_BR9|%6cvD5CNk=JLC*axY}&vkw=PMG{ix1K+pi4o{v5Lu)F GGzI_!4705O delta 154 zcmaEy_#uYxG%qg~0}vd~EXi1*xRKAAkMY`MFTNB;!O83Sq=DpVK5KdARNhqKRIXH! zG$u))S`bcSO5tx|i4v<6&=lJ2%D-1)vw>D4BikLIRB_Ved_}R%XSEM7GQODHr(4A+ xKABT5i>(DHSJXDSPEV2X+~fs%vnEIB|6=T$9BNR{AH~Ed@reOM7HI%g0RRZ6D;)p; diff --git a/core/spotify_client.py b/core/spotify_client.py index c7e6702f..a6d2da0b 100644 --- a/core/spotify_client.py +++ b/core/spotify_client.py @@ -217,6 +217,19 @@ class SpotifyClient: logger.error(f"Error searching artists: {e}") return [] + def get_track_details(self, track_id: str) -> Optional[Dict[str, Any]]: + """Get detailed track information including album data and track number""" + if not self.is_authenticated(): + return None + + try: + track_data = self.sp.track(track_id) + return track_data + + except Exception as e: + logger.error(f"Error fetching track details: {e}") + return None + def get_track_features(self, track_id: str) -> Optional[Dict[str, Any]]: if not self.is_authenticated(): return None diff --git a/logs/app.log b/logs/app.log index 75e6df52..d92583a7 100644 --- a/logs/app.log +++ b/logs/app.log @@ -47556,3 +47556,8421 @@ 2025-07-13 20:03:49 - newmusic.main - INFO - closeEvent:186 - Stopping status monitoring thread... 2025-07-13 20:03:50 - newmusic.main - INFO - closeEvent:191 - Closing Soulseek client... 2025-07-13 20:03:50 - newmusic.main - INFO - closeEvent:197 - Application closed successfully +2025-07-13 20:08:50 - newmusic - INFO - setup_logging:57 - Logging initialized with level: DEBUG +2025-07-13 20:08:50 - newmusic.main - INFO - main:211 - Starting NewMusic application +2025-07-13 20:08:50 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 20:08:50 - newmusic.plex_client - INFO - _find_music_library:98 - Found music library: Music +2025-07-13 20:08:50 - newmusic.plex_client - INFO - _setup_client:84 - Successfully connected to Plex server: PLEX-MACHINE +2025-07-13 20:08:50 - newmusic.soulseek_client - INFO - _setup_client:220 - Soulseek client configured with slskd at http://localhost:5030 +2025-07-13 20:08:50 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 20:08:51 - newmusic.main - INFO - change_page:163 - Changed to page: dashboard +2025-07-13 20:08:51 - newmusic.main - INFO - setup_media_player_connections:150 - Media player connections established between sidebar and downloads page +2025-07-13 20:08:52 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Aether +2025-07-13 20:08:52 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Favorite Artists +2025-07-13 20:08:53 - newmusic.main - INFO - change_page:163 - Changed to page: downloads +2025-07-13 20:08:54 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Brittnea +2025-07-13 20:08:55 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Baleigh +2025-07-13 20:08:56 - newmusic.soulseek_client - INFO - search:551 - Starting search for: 'kendrick album' +2025-07-13 20:08:56 - newmusic.soulseek_client - DEBUG - search:561 - Search data: {'searchText': 'kendrick album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 20:08:56 - newmusic.soulseek_client - DEBUG - search:562 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 20:08:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 20:08:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:08:56 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'searchText': 'kendrick album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 20:08:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:08:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: {"fileCount":0,"id":"6eeca612-2fba-404a-90c8-2af19aac160c","isComplete":false,"lockedFileCount":0,"responseCount":0,"responses":[],"searchText":"kendrick album","startedAt":"2025-07-14T03:08:56.5288568Z","state":"InProgress","token":3161}... +2025-07-13 20:08:56 - newmusic.soulseek_client - INFO - search:575 - Search initiated with ID: 6eeca612-2fba-404a-90c8-2af19aac160c +2025-07-13 20:08:56 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 1/20) - elapsed: 0.0s +2025-07-13 20:08:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/6eeca612-2fba-404a-90c8-2af19aac160c/responses +2025-07-13 20:08:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:08:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:08:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: []... +2025-07-13 20:08:57 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Extra Music +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 2/20) - elapsed: 1.5s +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/6eeca612-2fba-404a-90c8-2af19aac160c/responses +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"fileCount":15,"files":[{"bitDepth":16,"code":1,"extension":"","filename":"@@ffjhz\\Music\\Kendrick Lamar\\2018 - Black Panther - The Album (Music From and Inspired By)\\01 - Black Panther.flac","length":130,"sampleRate":44100,"size":13006200,"isLocked":false},{"bitDepth":16,"code":1,"extension":"","filename":"@@ffjhz\\Music\\Kendrick Lamar\\2018 - Black Panther - The Album (Music From and Inspired By)\\02 - All the Stars.flac","length":232,"sampleRate":44100,"size":26247383,"isLocked":false},... +2025-07-13 20:08:58 - newmusic.soulseek_client - INFO - search:597 - Found 249 new responses (249 total) at 1.5s +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:345 - Processing 249 user responses +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmustbeacamel has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geraldo876 has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User relaxedcrab has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jeskola333 has 4 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alitamachine has 17 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User musica101 has 19 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreamer has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Viridi2413 has 35 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User snigglegros has 9 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tehfuture has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lilt19ad6 has 3 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sevenarts has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nightmare_dronemk12 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreem has 6 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fourthgear has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User WesternMustangs2000 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User crint has 3 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chimchooree has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User maneuve has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User adoghello has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clownpatrol6666 has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User legodano has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jaxxthesynth has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User technosux has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User theoddhermit has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DeusMaxMachina has 19 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sumb0dy has 22 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Reemerge6193 has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brihar22 has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User vfoxm has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Audio_Dope2 has 10 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User IMregoR has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User choomgangillbro has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MagikMuzik58 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User save20families has 12 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User etaylor86 has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fern911 has 4 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superlozer has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User togapepperashi has 16 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yagoobian has 3 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gogbone has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thampy has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bidynasty has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pukebrain has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User popw1061 has 76 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User choomfie has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User InsaneRose has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Bian has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User erasethesanity has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grapeman69 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User davesv has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User OPOC has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guppies16 has 3 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User YJWMY91Bk has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Marxist has 30 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kerobaros has 217 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User djjeremy has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hotchair has 76 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User churchofozzy1 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ta_face_esti has 27 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Stekel has 31 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clf2008 has 85 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dwtn81 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mystro has 4 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User macro has 59 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xcixxorx has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SlavicFire has 20 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catawawa has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User whackdummy has 21 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AfterlinePerformed has 7 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BigBallls has 10 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User severedxties has 6 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User batmaster has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jefferson-membrane has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ageofthefever has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User puresauce35 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User richmilnix has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Chicken_Biscuit has 20 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cy1der has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Dw@n$i has 17 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User neskk has 6 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wrabbit has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User admiran has 19 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User petejwhizz has 19 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gombers04 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Datasmurf has 8 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guineahorn has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SoulHunterWolf has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stormcynk has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bigkahuna30267 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Searcher1975! has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lukekarts has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dekachin has 3 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AwesomeAustn has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lulzcat773 has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User onenightinkyoto has 83 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reemo4250 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Finnyboy has 19 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MusicLarry has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User imagines2014 has 7 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FileGod has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TransRights! has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User blokmotion has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User formerbusboy has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SonicRings has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geetboy has 10 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User conyeezy has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GoldenDeus has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User twiztor has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User leitunggeist has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MacchiaLux has 3 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Davidless has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tsubasa has 30 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmightbemikey has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User misticgris has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GentooIsBased has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zaodriver has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reverwinsskt has 4 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lossless1024 has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User parasomia has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TerryDavis has 10 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User {{{d(*_*)b}}} has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _tyrese_ has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User XY0 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User EJW has 11 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User begets has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gradylives3 has 18 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lpma has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User drewbagelz has 4 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User amd90 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ilikedmyoldname has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ricardoastley has 4 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JTE1817 has 16 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User murdercitydevil has 4 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nexuszeero has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tbdbitl1 has 18 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pup has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Deadbolt1209 has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User asoulfor30silver has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minimum has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User 3030 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BhrisBenoit has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lckdscl has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User h23234 has 10 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User seniormoistener has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elipsedeclipse has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User digimotong has 32 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User KingGomi has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User The Locutus has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kisu_odd has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User beatner has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alilstinky has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tunnik has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User copperstairs has 93 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User up4mayhem has 29 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ParadiseLost has 16 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User OPIOM has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sakurako has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User PGTipz has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gustave1984 has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User v1r2l2k has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User takeourcarsnow has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ReadyPlayer420 has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rat5150 has 6 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User estebanz has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Teoteou has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rainking has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sataNathan has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MyMindIsBlowing has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User LordFerite has 35 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lord_Anakyn has 37 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thlayli_x has 28 files +2025-07-13 20:08:58 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Maggi Main +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Damon O'Manic!!! has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ValdikSS2 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User assaub has 7 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aa_anima has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Me&MyDemons has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _kyle_1 has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sheikhyerbootai has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stinkyrat has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User casio-official has 4 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User filfilfil has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User breakone9r has 9 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pugacioff has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rikki has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lost&forgotten. has 3 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Handbanana has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DoctorLove has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lascar972 has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User visions has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User coolasbreeze has 46 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Jerooome has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kgapak has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ssb497 has 86 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xY7pQ2zW9aK5bJ has 13 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iaman00b has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JDogHere has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User raremustache has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User khudea has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BladeRelic has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cktc has 50 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nick_in_mersey3 has 16 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Fenris has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zerw has 17 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User CaptainNoFuture has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SupStu has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kfs1986 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dressa1112 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dio141 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Afton has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kobeyads has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User korusse has 72 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bajolo has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lightandcoffee has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User campee has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lll3nto has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User waddaw has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Foe4 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User woundedflesh has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kron0ziz has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Pagerg has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheTrillT-Rex has 3 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mole has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pickledeyebrowed has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BeatscapeLounge has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Nzd has 7 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BurakkuKami has 17 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User berts1404 has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chickensandwich has 21 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User RockCartel has 4 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gdtek has 21 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rKAYo has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimmydean6969 has 7 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tuliomajit1992 has 28 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User destywhip has 15 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minnis has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SxSlka has 16 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User quisps has 17 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Basiv has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User felonraper has 5 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dioestar has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Sam-jam has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User negaome has 14 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Krullakake has 1 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User johnny.megaton has 0 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User marx2k has 12 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aRandomFurOnSlsk has 2 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User noarmpits has 17 files +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lisandrx has 11 files +2025-07-13 20:08:58 - newmusic.soulseek_client - INFO - _process_search_responses:399 - Found 171 individual tracks and 178 albums +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:400 - Album detection details: 349 potential albums processed +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: itmustbeacamel/@@ffjhz/Music/Kendrick Lamar/2018 - Black Panther - The Album (Music From and Inspired By) -> 14 tracks +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: geraldo876/music/Kendrick Lamar - 16-24bit, 44khz/Black Panther - The Album (Music From and Inspired By) (2018) -> 14 tracks +2025-07-13 20:08:58 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: relaxedcrab/@@msbxe/Music/Kendrick Scott Oracle/Conviction (Album) -> 1 tracks +2025-07-13 20:08:58 - newmusic.soulseek_client - INFO - search:617 - Processed results: 171 tracks, 178 albums +2025-07-13 20:08:58 - newmusic.soulseek_client - INFO - search:621 - Early termination: Found 249 responses, stopping search +2025-07-13 20:08:58 - newmusic.soulseek_client - INFO - search:632 - Search completed. Final results: 171 tracks and 178 albums for query: kendrick album +2025-07-13 20:09:03 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Broque Main +2025-07-13 20:09:10 - newmusic.spotify_client - INFO - get_user_playlists:140 - Retrieved 7 playlists +2025-07-13 20:09:17 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@xjjro\MUSIC ALBUM\DISCO\80 kendrick lamar - i.mp3 from misticgris (size: 9581066) +2025-07-13 20:09:17 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3', 'size': 9581066, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:09:17 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/misticgris +2025-07-13 20:09:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/misticgris +2025-07-13 20:09:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:09:17 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3', 'size': 9581066, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:09:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:09:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:09:18 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@xjjro\MUSIC ALBUM\DISCO\80 kendrick lamar - i.mp3 from misticgris +2025-07-13 20:09:18 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:09:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:09:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:09:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:09:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"turbochamp","directories":[{"directory":"Music\\The Lonely Island\\The Wack Album","fileCount":1,"files":[{"id":"78ceaeb3-be63-4af9-8f5c-0356a668f593","username":"turbochamp","direction":"Download","filename":"Music\\The Lonely Island\\The Wack Album\\05 The Lonely Island feat. Adam Levine & Kendrick Lamar - YOLO.flac","size":23968298,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:00:16.0248654","enqueuedAt":"20... +2025-07-13 20:11:05 - newmusic.soulseek_client - DEBUG - clear_all_completed_downloads:890 - Clearing all completed downloads with endpoint: transfers/downloads/all/completed +2025-07-13 20:11:05 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/all/completed +2025-07-13 20:11:05 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:11:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 20:11:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:11:06 - newmusic.soulseek_client - INFO - clear_all_completed_downloads:895 - Successfully cleared all completed downloads from slskd +2025-07-13 20:11:16 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@xjjro\MUSIC ALBUM\DISCO\80 kendrick lamar - i.mp3 from misticgris (size: 9581066) +2025-07-13 20:11:16 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3', 'size': 9581066, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:11:16 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/misticgris +2025-07-13 20:11:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/misticgris +2025-07-13 20:11:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:11:16 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3', 'size': 9581066, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:11:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:11:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:11:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:11:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Requested","stateDescription":"Requested","requestedAt":"2025-07-14T03:11:17.1466984","bytesTransferred":0,"averageSpeed":0,"bytesRemaining":9581066,"percentComplete":0}]}]}]... +2025-07-13 20:11:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:11:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:11:17 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@xjjro\MUSIC ALBUM\DISCO\80 kendrick lamar - i.mp3 from misticgris +2025-07-13 20:11:17 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:11:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:11:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:11:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:11:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z","bytesTransferred":... +2025-07-13 20:11:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:11:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:11:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:11:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z","bytesTransferred":... +2025-07-13 20:11:23 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:11:23 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:11:23 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:11:23 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z","bytesTransferred":... +2025-07-13 20:11:25 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:11:25 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:11:25 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:11:25 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z","bytesTransferred":... +2025-07-13 20:11:27 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:11:27 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:11:27 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:11:27 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z","bytesTransferred":... +2025-07-13 20:11:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:11:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:11:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:11:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z","bytesTransferred":... +2025-07-13 20:11:31 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:11:31 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:11:31 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:11:31 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z","bytesTransferred":... +2025-07-13 20:11:33 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:11:33 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:11:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:11:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z","bytesTransferred":... +2025-07-13 20:11:35 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:11:35 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:11:35 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:11:35 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\01 - Kendrick Lamar - BLOOD..mp3 from onenightinkyoto (size: 4749524) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\01 - Kendrick Lamar - BLOOD..mp3', 'size': 4749524, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\01 - Kendrick Lamar - BLOOD..mp3', 'size': 4749524, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\02 - Kendrick Lamar - DNA..mp3 from onenightinkyoto (size: 7443267) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\02 - Kendrick Lamar - DNA..mp3', 'size': 7443267, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\02 - Kendrick Lamar - DNA..mp3', 'size': 7443267, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\03 - Kendrick Lamar - YAH..mp3 from onenightinkyoto (size: 6409863) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\03 - Kendrick Lamar - YAH..mp3', 'size': 6409863, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\03 - Kendrick Lamar - YAH..mp3', 'size': 6409863, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\04 - Kendrick Lamar - ELEMENT..mp3 from onenightinkyoto (size: 8359650) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\04 - Kendrick Lamar - ELEMENT..mp3', 'size': 8359650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\04 - Kendrick Lamar - ELEMENT..mp3', 'size': 8359650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\05 - Kendrick Lamar - FEEL..mp3 from onenightinkyoto (size: 8597881) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\05 - Kendrick Lamar - FEEL..mp3', 'size': 8597881, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\05 - Kendrick Lamar - FEEL..mp3', 'size': 8597881, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\06 - Kendrick Lamar - LOYALTY..mp3 from onenightinkyoto (size: 9114101) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\06 - Kendrick Lamar - LOYALTY..mp3', 'size': 9114101, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\06 - Kendrick Lamar - LOYALTY..mp3', 'size': 9114101, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\07 - Kendrick Lamar - PRIDE..mp3 from onenightinkyoto (size: 10868446) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\07 - Kendrick Lamar - PRIDE..mp3', 'size': 10868446, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\07 - Kendrick Lamar - PRIDE..mp3', 'size': 10868446, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\08 - Kendrick Lamar - HUMBLE..mp3 from onenightinkyoto (size: 7083828) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\08 - Kendrick Lamar - HUMBLE..mp3', 'size': 7083828, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\08 - Kendrick Lamar - HUMBLE..mp3', 'size': 7083828, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\09 - Kendrick Lamar - LUST..mp3 from onenightinkyoto (size: 12338616) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\09 - Kendrick Lamar - LUST..mp3', 'size': 12338616, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\09 - Kendrick Lamar - LUST..mp3', 'size': 12338616, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\10 - Kendrick Lamar - LOVE..mp3 from onenightinkyoto (size: 8459987) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\10 - Kendrick Lamar - LOVE..mp3', 'size': 8459987, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\10 - Kendrick Lamar - LOVE..mp3', 'size': 8459987, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\11 - Kendrick Lamar - XXX..mp3 from onenightinkyoto (size: 10174655) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\11 - Kendrick Lamar - XXX..mp3', 'size': 10174655, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\11 - Kendrick Lamar - XXX..mp3', 'size': 10174655, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\12 - Kendrick Lamar - FEAR..mp3 from onenightinkyoto (size: 16596576) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\12 - Kendrick Lamar - FEAR..mp3', 'size': 16596576, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\12 - Kendrick Lamar - FEAR..mp3', 'size': 16596576, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\13 - Kendrick Lamar - GOD..mp3 from onenightinkyoto (size: 9964606) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\13 - Kendrick Lamar - GOD..mp3', 'size': 9964606, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\13 - Kendrick Lamar - GOD..mp3', 'size': 9964606, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\14 - Kendrick Lamar - DUCKWORTH..mp3 from onenightinkyoto (size: 9937451) +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\14 - Kendrick Lamar - DUCKWORTH..mp3', 'size': 9937451, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\14 - Kendrick Lamar - DUCKWORTH..mp3', 'size': 9937451, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:32 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\04 - Kendrick Lamar - ELEMENT..mp3 from onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:32 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\12 - Kendrick Lamar - FEAR..mp3 from onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:32 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\11 - Kendrick Lamar - XXX..mp3 from onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:32 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\14 - Kendrick Lamar - DUCKWORTH..mp3 from onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:32 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\07 - Kendrick Lamar - PRIDE..mp3 from onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:32 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\09 - Kendrick Lamar - LUST..mp3 from onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:32 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\05 - Kendrick Lamar - FEEL..mp3 from onenightinkyoto +2025-07-13 20:12:32 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:33 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\08 - Kendrick Lamar - HUMBLE..mp3 from onenightinkyoto +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:33 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\01 - Kendrick Lamar - BLOOD..mp3 from onenightinkyoto +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:33 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\13 - Kendrick Lamar - GOD..mp3 from onenightinkyoto +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:33 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\06 - Kendrick Lamar - LOYALTY..mp3 from onenightinkyoto +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:33 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\03 - Kendrick Lamar - YAH..mp3 from onenightinkyoto +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:33 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\10 - Kendrick Lamar - LOVE..mp3 from onenightinkyoto +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:12:33 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\02 - Kendrick Lamar - DNA..mp3 from onenightinkyoto +2025-07-13 20:12:33 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:12:35 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:35 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:35 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:35 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:37 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:37 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:37 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:37 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:39 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:39 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:39 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:39 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:41 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:41 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:41 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:41 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:43 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:43 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:43 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:43 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:45 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:45 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:45 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:45 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:51 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:51 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:53 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:53 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:53 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:53 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:57 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:57 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:12:59 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:12:59 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:12:59 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:12:59 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:01 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:01 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:01 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:01 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:03 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:03 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:03 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:03 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:05 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:05 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:05 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:05 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:07 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:07 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:07 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:07 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:09 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:09 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:09 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:09 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:11 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:11 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:15 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:15 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:15 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:15 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:23 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:23 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:23 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:23 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:25 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:25 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:25 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:25 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:27 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:27 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:27 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:27 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:31 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:31 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:31 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:31 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:33 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:33 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:35 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:35 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:35 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:35 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:37 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:37 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:37 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:37 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:13:39 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:13:39 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:13:39 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:13:39 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"misticgris","directories":[{"directory":"@@xjjro\\MUSIC ALBUM\\DISCO","fileCount":1,"files":[{"id":"ca6911d7-08fe-47c8-aad7-99595804643e","username":"misticgris","direction":"Download","filename":"@@xjjro\\MUSIC ALBUM\\DISCO\\80 kendrick lamar - i.mp3","size":9581066,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:11:17.1466984","enqueuedAt":"2025-07-14T03:11:17.5395067","startedAt":"2025-07-14T03:11:18.1240975Z"... +2025-07-13 20:14:26 - newmusic.soulseek_client - DEBUG - clear_all_completed_downloads:890 - Clearing all completed downloads with endpoint: transfers/downloads/all/completed +2025-07-13 20:14:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/all/completed +2025-07-13 20:14:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:14:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 20:14:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:14:26 - newmusic.soulseek_client - INFO - clear_all_completed_downloads:895 - Successfully cleared all completed downloads from slskd +2025-07-13 20:14:53 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\02 - Kendrick Lamar - DNA..mp3 from onenightinkyoto (size: 7443267) +2025-07-13 20:14:53 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\02 - Kendrick Lamar - DNA..mp3', 'size': 7443267, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:14:53 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:14:53 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:14:53 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:14:53 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\02 - Kendrick Lamar - DNA..mp3', 'size': 7443267, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:14:53 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:14:53 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:14:53 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:14:53 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: []... +2025-07-13 20:14:53 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:14:53 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:14:53 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2017 Album - Kendrick Lamar - DAMN\02 - Kendrick Lamar - DNA..mp3 from onenightinkyoto +2025-07-13 20:14:53 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:14:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:14:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:14:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:14:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN","fileCount":1,"files":[{"id":"0482eae0-d7e2-4567-a2c8-b255fae07369","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\02 - Kendrick Lamar - DNA..mp3","size":7443267,"startOffset":0,"state":"InProgress","stateDescription":"InProgre... +2025-07-13 20:14:57 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:14:57 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:14:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:14:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN","fileCount":1,"files":[{"id":"0482eae0-d7e2-4567-a2c8-b255fae07369","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\02 - Kendrick Lamar - DNA..mp3","size":7443267,"startOffset":0,"state":"InProgress","stateDescription":"InProgre... +2025-07-13 20:14:59 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:14:59 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:14:59 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:14:59 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN","fileCount":1,"files":[{"id":"0482eae0-d7e2-4567-a2c8-b255fae07369","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2017 Album - Kendrick Lamar - DAMN\\02 - Kendrick Lamar - DNA..mp3","size":7443267,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 20:19:32 - newmusic.soulseek_client - DEBUG - clear_all_completed_downloads:890 - Clearing all completed downloads with endpoint: transfers/downloads/all/completed +2025-07-13 20:19:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/all/completed +2025-07-13 20:19:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:19:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 20:19:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:19:32 - newmusic.soulseek_client - INFO - clear_all_completed_downloads:895 - Successfully cleared all completed downloads from slskd +2025-07-13 20:20:19 - newmusic.main - INFO - change_page:163 - Changed to page: artists +2025-07-13 20:20:20 - newmusic.main - INFO - change_page:163 - Changed to page: downloads +2025-07-13 20:20:45 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: Soulseeker\Kendrick Lamar\good kid, m.A.A.d city (Deluxe)\15. Kendrick Lamar - Now Or Never (Album Version).flac from begets (size: 30497397) +2025-07-13 20:20:45 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'Soulseeker\\Kendrick Lamar\\good kid, m.A.A.d city (Deluxe)\\15. Kendrick Lamar - Now Or Never (Album Version).flac', 'size': 30497397, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:20:45 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/begets +2025-07-13 20:20:45 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/begets +2025-07-13 20:20:45 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:20:45 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'Soulseeker\\Kendrick Lamar\\good kid, m.A.A.d city (Deluxe)\\15. Kendrick Lamar - Now Or Never (Album Version).flac', 'size': 30497397, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:20:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:20:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:20:46 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: Soulseeker\Kendrick Lamar\good kid, m.A.A.d city (Deluxe)\15. Kendrick Lamar - Now Or Never (Album Version).flac from begets +2025-07-13 20:20:46 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:20:46 - newmusic.soulseek_client - DEBUG - cancel_download:867 - Cancelling download with endpoint: transfers/downloads/begets/Soulseeker\Kendrick Lamar\good kid, m.A.A.d city (Deluxe)\15. Kendrick Lamar - Now Or Never (Album Version).flac?remove=false +2025-07-13 20:20:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/begets/Soulseeker\Kendrick Lamar\good kid, m.A.A.d city (Deluxe)\15. Kendrick Lamar - Now Or Never (Album Version).flac?remove=false +2025-07-13 20:20:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:20:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:20:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:20:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 400 +2025-07-13 20:20:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:20:47 - newmusic.soulseek_client - ERROR - _make_request:272 - API request failed: 400 - +2025-07-13 20:20:47 - newmusic.soulseek_client - DEBUG - cancel_download:867 - Cancelling download with endpoint: transfers/downloads/begets/Soulseeker\Kendrick Lamar\good kid, m.A.A.d city (Deluxe)\15. Kendrick Lamar - Now Or Never (Album Version).flac?remove=false +2025-07-13 20:20:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/begets/Soulseeker\Kendrick Lamar\good kid, m.A.A.d city (Deluxe)\15. Kendrick Lamar - Now Or Never (Album Version).flac?remove=false +2025-07-13 20:20:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:20:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:20:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"begets","directories":[{"directory":"Soulseeker\\Kendrick Lamar\\good kid, m.A.A.d city (Deluxe)","fileCount":1,"files":[{"id":"7d11f454-8f0d-4a47-a4b6-a5f2df5fd7b1","username":"begets","direction":"Download","filename":"Soulseeker\\Kendrick Lamar\\good kid, m.A.A.d city (Deluxe)\\15. Kendrick Lamar - Now Or Never (Album Version).flac","size":30497397,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:20:46.0926457","enqueuedAt":"2025-... +2025-07-13 20:20:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 400 +2025-07-13 20:20:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:20:47 - newmusic.soulseek_client - ERROR - _make_request:272 - API request failed: 400 - +2025-07-13 20:20:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:20:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:20:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:20:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"begets","directories":[{"directory":"Soulseeker\\Kendrick Lamar\\good kid, m.A.A.d city (Deluxe)","fileCount":1,"files":[{"id":"7d11f454-8f0d-4a47-a4b6-a5f2df5fd7b1","username":"begets","direction":"Download","filename":"Soulseeker\\Kendrick Lamar\\good kid, m.A.A.d city (Deluxe)\\15. Kendrick Lamar - Now Or Never (Album Version).flac","size":30497397,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:20:46.0926457","enqueuedAt":"2025-... +2025-07-13 20:20:49 - newmusic.soulseek_client - DEBUG - cancel_download:867 - Cancelling download with endpoint: transfers/downloads/begets/7d11f454-8f0d-4a47-a4b6-a5f2df5fd7b1?remove=false +2025-07-13 20:20:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/begets/7d11f454-8f0d-4a47-a4b6-a5f2df5fd7b1?remove=false +2025-07-13 20:20:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:20:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 20:20:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:20:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:20:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:20:51 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:20:51 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"begets","directories":[{"directory":"Soulseeker\\Kendrick Lamar\\good kid, m.A.A.d city (Deluxe)","fileCount":1,"files":[{"id":"7d11f454-8f0d-4a47-a4b6-a5f2df5fd7b1","username":"begets","direction":"Download","filename":"Soulseeker\\Kendrick Lamar\\good kid, m.A.A.d city (Deluxe)\\15. Kendrick Lamar - Now Or Never (Album Version).flac","size":30497397,"startOffset":0,"state":"Completed, Cancelled","stateDescription":"Completed, Cancelled","requestedAt":"2025-07-14T03:20:46.0926457"... +2025-07-13 20:20:55 - newmusic.soulseek_client - DEBUG - clear_all_completed_downloads:890 - Clearing all completed downloads with endpoint: transfers/downloads/all/completed +2025-07-13 20:20:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/all/completed +2025-07-13 20:20:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:20:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 20:20:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:20:55 - newmusic.soulseek_client - INFO - clear_all_completed_downloads:895 - Successfully cleared all completed downloads from slskd +2025-07-13 20:22:20 - newmusic.main - INFO - closeEvent:176 - Closing application... +2025-07-13 20:22:20 - newmusic.main - INFO - closeEvent:181 - Cleaning up Downloads page threads... +2025-07-13 20:22:20 - newmusic.main - INFO - closeEvent:186 - Stopping status monitoring thread... +2025-07-13 20:22:20 - newmusic.main - INFO - closeEvent:191 - Closing Soulseek client... +2025-07-13 20:22:20 - newmusic.main - INFO - closeEvent:197 - Application closed successfully +2025-07-13 20:22:42 - newmusic - INFO - setup_logging:57 - Logging initialized with level: DEBUG +2025-07-13 20:22:42 - newmusic.main - INFO - main:211 - Starting NewMusic application +2025-07-13 20:22:42 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 20:22:42 - newmusic.plex_client - INFO - _find_music_library:98 - Found music library: Music +2025-07-13 20:22:42 - newmusic.plex_client - INFO - _setup_client:84 - Successfully connected to Plex server: PLEX-MACHINE +2025-07-13 20:22:42 - newmusic.soulseek_client - INFO - _setup_client:220 - Soulseek client configured with slskd at http://localhost:5030 +2025-07-13 20:22:42 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 20:22:43 - newmusic.main - INFO - change_page:163 - Changed to page: dashboard +2025-07-13 20:22:43 - newmusic.main - INFO - setup_media_player_connections:150 - Media player connections established between sidebar and downloads page +2025-07-13 20:22:43 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Aether +2025-07-13 20:22:43 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Favorite Artists +2025-07-13 20:22:46 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Brittnea +2025-07-13 20:22:47 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Baleigh +2025-07-13 20:22:48 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Extra Music +2025-07-13 20:22:49 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Maggi Main +2025-07-13 20:22:51 - newmusic.main - INFO - change_page:163 - Changed to page: downloads +2025-07-13 20:22:54 - newmusic.soulseek_client - INFO - search:551 - Starting search for: 'Kendrick album' +2025-07-13 20:22:54 - newmusic.soulseek_client - DEBUG - search:561 - Search data: {'searchText': 'Kendrick album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 20:22:54 - newmusic.soulseek_client - DEBUG - search:562 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 20:22:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 20:22:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:22:54 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'searchText': 'Kendrick album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 20:22:55 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Broque Main +2025-07-13 20:22:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:22:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: {"fileCount":0,"id":"7eead6b2-d10c-48c7-b2b6-f23cb0a0f4c3","isComplete":false,"lockedFileCount":0,"responseCount":0,"responses":[],"searchText":"Kendrick album","startedAt":"2025-07-14T03:22:55.2509954Z","state":"InProgress","token":3239}... +2025-07-13 20:22:55 - newmusic.soulseek_client - INFO - search:575 - Search initiated with ID: 7eead6b2-d10c-48c7-b2b6-f23cb0a0f4c3 +2025-07-13 20:22:55 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 1/20) - elapsed: 0.0s +2025-07-13 20:22:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/7eead6b2-d10c-48c7-b2b6-f23cb0a0f4c3/responses +2025-07-13 20:22:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:22:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:22:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: []... +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 2/20) - elapsed: 1.5s +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/7eead6b2-d10c-48c7-b2b6-f23cb0a0f4c3/responses +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:22:57 - newmusic.soulseek_client - INFO - search:597 - Found 250 new responses (250 total) at 1.5s +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:345 - Processing 250 user responses +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User crint has 3 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geraldo876 has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmustbeacamel has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alitamachine has 17 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User relaxedcrab has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jeskola333 has 4 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User musica101 has 19 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dekachin has 3 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreamer has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User snigglegros has 9 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Viridi2413 has 35 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lilt19ad6 has 3 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clownpatrol6666 has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fourthgear has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User WesternMustangs2000 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nightmare_dronemk12 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brihar22 has 0 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tehfuture has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xcixxorx has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chimchooree has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fern911 has 4 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dunce has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User legodano has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DeusMaxMachina has 19 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yukosan666 has 16 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreem has 6 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sumb0dy has 22 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superlozer has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hotchair has 76 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User erasethesanity has 0 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yagoobian has 3 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Reemerge6193 has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User technosux has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AfterlinePerformed has 7 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User maneuve has 0 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gogbone has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pukebrain has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sevenarts has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AwesomeAustn has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User formerbusboy has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User IMregoR has 0 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User adoghello has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User save20families has 12 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ricardoastley has 4 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User djjeremy has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User theoddhermit has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bidynasty has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User puresauce35 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jaxxthesynth has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guineahorn has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User InsaneRose has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Marxist has 30 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User togapepperashi has 16 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User davesv has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SlavicFire has 20 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User choomgangillbro has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User vfoxm has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thampy has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kerobaros has 217 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Bian has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User churchofozzy1 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User YJWMY91Bk has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FileGod has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JTE1817 has 16 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clf2008 has 85 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Stekel has 31 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User batmaster has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geetboy has 10 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stormcynk has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lulzcat773 has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mystro has 4 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catawawa has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SoulHunterWolf has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bigkahuna30267 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmightbemikey has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dwtn81 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ta_face_esti has 27 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wrabbit has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GentooIsBased has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User admiran has 19 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SonicRings has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zaodriver has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Datasmurf has 8 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cy1der has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User severedxties has 6 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User murdercitydevil has 4 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User whackdummy has 21 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User richmilnix has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Finnyboy has 19 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Audio_Dope2 has 10 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User parasomia has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User asoulfor30silver has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Biotwist has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lava_Lamp918 has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User petejwhizz has 19 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User EJW has 11 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ageofthefever has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gombers04 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User conyeezy has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Davidless has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ParadiseLost has 16 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Searcher1975! has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Chicken_Biscuit has 20 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Dw@n$i has 17 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catpunx has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User leitunggeist has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BigBallls has 10 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User twiztor has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TransRights! has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User imagines2014 has 7 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User XY0 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User misticgris has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tsubasa has 30 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User popw1061 has 76 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User drewbagelz has 4 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User blokmotion has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User {{{d(*_*)b}}} has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dp8039 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User up4mayhem has 29 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User floralbeat has 17 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fakedbatman has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MacchiaLux has 3 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guppies16 has 3 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gradylives3 has 18 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User splifftone has 39 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elipsedeclipse has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bounceman has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MusicLarry has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User turbochamp has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stinkyrat has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _tyrese_ has 0 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pup has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Divine Wind has 16 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nexuszeero has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iaman00b has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reverwinsskt has 4 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GoldenDeus has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zinnac has 19 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User digimotong has 32 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lpma has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User begets has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lossless1024 has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sheikhyerbootai has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oblama has 150 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User senhor_roar has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User beatner has 0 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Deadbolt1209 has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alilstinky has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User 936707 has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User +-+ has 3 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reemo4250 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User 3030 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MagikMuzik58 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User soyburger has 4 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User amd90 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User KingGomi has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User etaylor86 has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User choomfie has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User marx2k has 12 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gdtek has 21 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tbdbitl1 has 18 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tunnik has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minimum has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User quisps has 17 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TerryDavis has 10 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kisu_odd has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User khaoohs has 26 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ilikedmyoldname has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User trinsic has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User v1r2l2k has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User denali83 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BhrisBenoit has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User breakone9r has 9 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lckdscl has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gandr003 has 26 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rooooool has 24 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gustave1984 has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User skandalouz25 has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User OPIOM has 0 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thlayli_x has 28 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Jerooome has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oier26 has 11 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User RandomZero has 38 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User assaub has 7 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cktc has 50 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User The Locutus has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BladeRelic has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BeatscapeLounge has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User LordFerite has 35 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MyMindIsBlowing has 0 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User messiah165 has 300 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Damon O'Manic!!! has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kron0ziz has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rat5150 has 6 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheTrillT-Rex has 3 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User estebanz has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superluminaire has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User macro has 59 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User visions has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BoinkBonk has 18 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wingler has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Me&MyDemons has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kobeyads has 0 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Teoteou has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Foe4 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bpat2 has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User holsteins has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User mindreader has 35 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grapeman69 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sakurako has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lord_Anakyn has 37 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User takeourcarsnow has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User felonraper has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sataNathan has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimmydean6969 has 7 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Obadtzxo has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kgapak has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chickensandwich has 21 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User waddaw has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User casio-official has 4 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BurakkuKami has 17 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tonerone has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User penicilling has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Handbanana has 0 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User filfilfil has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User woundedflesh has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User campee has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User greendot has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User michaelwave has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User seniormoistener has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dioestar has 2 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lost&forgotten. has 3 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Basiv has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User merc248 has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User web-graffiti has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MYCELIUM_BUDDY has 15 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rikki has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pugacioff has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User afronaut has 8 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DoctorLove has 0 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _kyle_1 has 14 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kfs1986 has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elendarsilvermoon has 5 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User miniblock has 7 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nrayman has 6 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User coolasbreeze has 46 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dandemite has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ssb497 has 86 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimtybobert has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User raremustache has 1 files +2025-07-13 20:22:57 - newmusic.soulseek_client - INFO - _process_search_responses:399 - Found 182 individual tracks and 197 albums +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:400 - Album detection details: 379 potential albums processed +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: geraldo876/music/Kendrick Lamar - 16-24bit, 44khz/Black Panther - The Album (Music From and Inspired By) (2018) -> 14 tracks +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: itmustbeacamel/@@ffjhz/Music/Kendrick Lamar/2018 - Black Panther - The Album (Music From and Inspired By) -> 14 tracks +2025-07-13 20:22:57 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: alitamachine/@@nlbqv/Music/Kendrick Lamar, The Weeknd & SZA - Black Panther The Album Music From And Inspired By -> 14 tracks +2025-07-13 20:22:57 - newmusic.soulseek_client - INFO - search:617 - Processed results: 182 tracks, 197 albums +2025-07-13 20:22:57 - newmusic.soulseek_client - INFO - search:621 - Early termination: Found 250 responses, stopping search +2025-07-13 20:22:57 - newmusic.soulseek_client - INFO - search:632 - Search completed. Final results: 182 tracks and 197 albums for query: Kendrick album +2025-07-13 20:23:02 - newmusic.spotify_client - INFO - get_user_playlists:140 - Retrieved 7 playlists +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\01 - wacced out murals.flac from Viridi2413 (size: 31533533) +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\01 - wacced out murals.flac', 'size': 31533533, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\01 - wacced out murals.flac', 'size': 31533533, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\02 - squabble up.flac from Viridi2413 (size: 18826228) +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\02 - squabble up.flac', 'size': 18826228, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\02 - squabble up.flac', 'size': 18826228, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\03 - luther.flac from Viridi2413 (size: 20897418) +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\03 - luther.flac', 'size': 20897418, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\03 - luther.flac', 'size': 20897418, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\04 - man at the garden.flac from Viridi2413 (size: 22271711) +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac', 'size': 22271711, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac', 'size': 22271711, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\05 - hey now.flac from Viridi2413 (size: 23348614) +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\05 - hey now.flac', 'size': 23348614, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\05 - hey now.flac', 'size': 23348614, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\06 - reincarnated.flac from Viridi2413 (size: 33846235) +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\06 - reincarnated.flac', 'size': 33846235, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\06 - reincarnated.flac', 'size': 33846235, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\07 - tv off.flac from Viridi2413 (size: 25405618) +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\07 - tv off.flac', 'size': 25405618, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\07 - tv off.flac', 'size': 25405618, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\08 - dodger blue.flac from Viridi2413 (size: 16043812) +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\08 - dodger blue.flac', 'size': 16043812, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\08 - dodger blue.flac', 'size': 16043812, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\09 - peekaboo.flac from Viridi2413 (size: 16374358) +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\09 - peekaboo.flac', 'size': 16374358, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\09 - peekaboo.flac', 'size': 16374358, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\10 - heart pt. 6.flac from Viridi2413 (size: 32831385) +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\10 - heart pt. 6.flac', 'size': 32831385, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\10 - heart pt. 6.flac', 'size': 32831385, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\11 - gnx.flac from Viridi2413 (size: 19019363) +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\11 - gnx.flac', 'size': 19019363, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\11 - gnx.flac', 'size': 19019363, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\12 - gloria.flac from Viridi2413 (size: 31169859) +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\12 - gloria.flac', 'size': 31169859, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:29 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\12 - gloria.flac', 'size': 31169859, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:23:30 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\04 - man at the garden.flac from Viridi2413 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:23:30 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\12 - gloria.flac from Viridi2413 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:23:30 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\10 - heart pt. 6.flac from Viridi2413 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:23:30 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\03 - luther.flac from Viridi2413 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:23:30 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\11 - gnx.flac from Viridi2413 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:23:30 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\05 - hey now.flac from Viridi2413 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:23:30 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\09 - peekaboo.flac from Viridi2413 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:23:30 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\01 - wacced out murals.flac from Viridi2413 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Requested","stateDescription":"Requested","requestedAt":"2025-07-14T03:23:30.3289505","bytesTransferred":0,"averageSpeed":0,"bytesRemaining":22271711,"percentC... +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:23:30 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\02 - squabble up.flac from Viridi2413 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:23:30 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\08 - dodger blue.flac from Viridi2413 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:23:30 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\06 - reincarnated.flac from Viridi2413 +2025-07-13 20:23:30 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:23:31 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:23:31 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:23:31 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - GNX\07 - tv off.flac from Viridi2413 +2025-07-13 20:23:31 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:23:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:23:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:23:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:23:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:23:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:23:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:23:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:23:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:23:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:23:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:23:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:23:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:23:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:23:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:23:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:23:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:23:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:24:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","startedAt":"2025-07-14T03:2... +2025-07-13 20:24:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:24:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:24:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:24:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:24:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@aefzu\Music\Music\Kendrick Lamar\Black Panther The Album\05.- Opps.flac from DeusMaxMachina (size: 19370023) +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@aefzu\\Music\\Music\\Kendrick Lamar\\Black Panther The Album\\05.- Opps.flac', 'size': 19370023, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/DeusMaxMachina +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/DeusMaxMachina +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@aefzu\\Music\\Music\\Kendrick Lamar\\Black Panther The Album\\05.- Opps.flac', 'size': 19370023, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 500 +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: "One or more errors occurred. (One or more errors occurred. (An active or queued download of @@aefzu\\Music\\Music\\Kendrick Lamar\\Black Panther The Album\\05.- Opps.flac from DeusMaxMachina is already in progress))"... +2025-07-13 20:25:20 - newmusic.soulseek_client - ERROR - _make_request:272 - API request failed: 500 - "One or more errors occurred. (One or more errors occurred. (An active or queued download of @@aefzu\\Music\\Music\\Kendrick Lamar\\Black Panther The Album\\05.- Opps.flac from DeusMaxMachina is already in progress))" +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - download:680 - Web interface endpoint returned no response +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - download:686 - Web interface endpoint failed, trying alternatives... +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - download:697 - Trying endpoint: transfers/DeusMaxMachina/enqueue with array format +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/DeusMaxMachina/enqueue +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@aefzu\\Music\\Music\\Kendrick Lamar\\Black Panther The Album\\05.- Opps.flac', 'size': 19370023, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 404 +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:25:21 - newmusic.soulseek_client - ERROR - _make_request:272 - API request failed: 404 - +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - download:715 - Endpoint transfers/DeusMaxMachina/enqueue returned no response +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - download:697 - Trying endpoint: users/DeusMaxMachina/downloads with array format +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/users/DeusMaxMachina/downloads +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@aefzu\\Music\\Music\\Kendrick Lamar\\Black Panther The Album\\05.- Opps.flac', 'size': 19370023, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 404 +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:25:21 - newmusic.soulseek_client - ERROR - _make_request:272 - API request failed: 404 - +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - download:715 - Endpoint users/DeusMaxMachina/downloads returned no response +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - download:697 - Trying endpoint: users/DeusMaxMachina/enqueue with array format +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/users/DeusMaxMachina/enqueue +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@aefzu\\Music\\Music\\Kendrick Lamar\\Black Panther The Album\\05.- Opps.flac', 'size': 19370023, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 404 +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:25:21 - newmusic.soulseek_client - ERROR - _make_request:272 - API request failed: 404 - +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - download:715 - Endpoint users/DeusMaxMachina/enqueue returned no response +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - download:722 - Array format failed, trying old object format +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - download:733 - Trying endpoint: transfers/DeusMaxMachina/enqueue with object format +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/DeusMaxMachina/enqueue +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'files': [{'filename': '@@aefzu\\Music\\Music\\Kendrick Lamar\\Black Panther The Album\\05.- Opps.flac', 'size': 19370023}]} +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 404 +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:25:21 - newmusic.soulseek_client - ERROR - _make_request:272 - API request failed: 404 - +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - download:751 - Fallback endpoint transfers/DeusMaxMachina/enqueue returned no response +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - download:733 - Trying endpoint: users/DeusMaxMachina/downloads with object format +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/users/DeusMaxMachina/downloads +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:21 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'files': [{'filename': '@@aefzu\\Music\\Music\\Kendrick Lamar\\Black Panther The Album\\05.- Opps.flac', 'size': 19370023}]} +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 404 +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:25:22 - newmusic.soulseek_client - ERROR - _make_request:272 - API request failed: 404 - +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - download:751 - Fallback endpoint users/DeusMaxMachina/downloads returned no response +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - download:733 - Trying endpoint: users/DeusMaxMachina/enqueue with object format +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/users/DeusMaxMachina/enqueue +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'files': [{'filename': '@@aefzu\\Music\\Music\\Kendrick Lamar\\Black Panther The Album\\05.- Opps.flac', 'size': 19370023}]} +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 404 +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:25:22 - newmusic.soulseek_client - ERROR - _make_request:272 - API request failed: 404 - +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - download:751 - Fallback endpoint users/DeusMaxMachina/enqueue returned no response +2025-07-13 20:25:22 - newmusic.soulseek_client - ERROR - download:757 - All download endpoints failed for @@aefzu\Music\Music\Kendrick Lamar\Black Panther The Album\05.- Opps.flac from DeusMaxMachina +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:25:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:25:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:25:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:25:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:26:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:26:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:26:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:26:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:27:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:27:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:27:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:27:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:28:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:28:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:28:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:28:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:29:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:29:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:29:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:29:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:30:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:30:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:30:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:30:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:30:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:30:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:30:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:30:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:31:06 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\[2018] Black Panther The Album\05 Opps.flac from Reemerge6193 (size: 19813774) +2025-07-13 20:31:06 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\[2018] Black Panther The Album\\05 Opps.flac', 'size': 19813774, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:31:06 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Reemerge6193 +2025-07-13 20:31:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Reemerge6193 +2025-07-13 20:31:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:31:06 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\[2018] Black Panther The Album\\05 Opps.flac', 'size': 19813774, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:31:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:31:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:31:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:31:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:31:07 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:31:07 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:31:07 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\[2018] Black Panther The Album\05 Opps.flac from Reemerge6193 +2025-07-13 20:31:07 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:31:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:31:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:31:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:31:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:31:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:31:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:31:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:31:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX","fileCount":12,"files":[{"id":"13d7e028-4f62-485a-9317-fb63368d6b49","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - GNX\\04 - man at the garden.flac","size":22271711,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:23:30.3289505","enqueuedAt":"2025-07-14T03:23:30.8815396","started... +2025-07-13 20:31:48 - newmusic.soulseek_client - DEBUG - clear_all_completed_downloads:890 - Clearing all completed downloads with endpoint: transfers/downloads/all/completed +2025-07-13 20:31:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/all/completed +2025-07-13 20:31:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:31:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 20:31:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:31:48 - newmusic.soulseek_client - INFO - clear_all_completed_downloads:895 - Successfully cleared all completed downloads from slskd +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\01 - BLOOD..mp3 from Viridi2413 (size: 11945050) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\01 - BLOOD..mp3', 'size': 11945050, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\01 - BLOOD..mp3', 'size': 11945050, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\02 - DNA..mp3 from Viridi2413 (size: 14660737) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3', 'size': 14660737, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3', 'size': 14660737, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\03 - YAH..mp3 from Viridi2413 (size: 13634646) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\03 - YAH..mp3', 'size': 13634646, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\03 - YAH..mp3', 'size': 13634646, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\04 - ELEMENT..mp3 from Viridi2413 (size: 15571895) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\04 - ELEMENT..mp3', 'size': 15571895, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\04 - ELEMENT..mp3', 'size': 15571895, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\05 - FEEL..mp3 from Viridi2413 (size: 15815350) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\05 - FEEL..mp3', 'size': 15815350, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\05 - FEEL..mp3', 'size': 15815350, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\06 - LOYALTY. (FEAT. RIHANNA.).mp3 from Viridi2413 (size: 16316941) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\06 - LOYALTY. (FEAT. RIHANNA.).mp3', 'size': 16316941, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\06 - LOYALTY. (FEAT. RIHANNA.).mp3', 'size': 16316941, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\07 - PRIDE..mp3 from Viridi2413 (size: 18233246) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\07 - PRIDE..mp3', 'size': 18233246, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\07 - PRIDE..mp3', 'size': 18233246, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\08 - HUMBLE..mp3 from Viridi2413 (size: 14302343) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\08 - HUMBLE..mp3', 'size': 14302343, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\08 - HUMBLE..mp3', 'size': 14302343, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\09 - LUST..mp3 from Viridi2413 (size: 19538322) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3', 'size': 19538322, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3', 'size': 19538322, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\10 - LOVE. (FEAT. ZACARI.).mp3 from Viridi2413 (size: 15758960) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\10 - LOVE. (FEAT. ZACARI.).mp3', 'size': 15758960, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\10 - LOVE. (FEAT. ZACARI.).mp3', 'size': 15758960, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\11 - XXX. (FEAT. U2.).mp3 from Viridi2413 (size: 17391081) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\11 - XXX. (FEAT. U2.).mp3', 'size': 17391081, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\11 - XXX. (FEAT. U2.).mp3', 'size': 17391081, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\12 - FEAR..mp3 from Viridi2413 (size: 25645752) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\12 - FEAR..mp3', 'size': 25645752, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\12 - FEAR..mp3', 'size': 25645752, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\13 - GOD..mp3 from Viridi2413 (size: 17175807) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\13 - GOD..mp3', 'size': 17175807, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\13 - GOD..mp3', 'size': 17175807, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\14 - DUCKWORTH.mp3 from Viridi2413 (size: 17167458) +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\14 - DUCKWORTH.mp3', 'size': 17167458, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\14 - DUCKWORTH.mp3', 'size': 17167458, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":12,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"None","stateDescription":"None","requestedAt":"2025-07-14T03:32:28.7538914","bytesTransferred":0,"averageSpeed":0,"bytesRemaining":14660737,"percentComplete":0},{"id":"9f0... +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:28 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\04 - ELEMENT..mp3 from Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:28 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\03 - YAH..mp3 from Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:28 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\06 - LOYALTY. (FEAT. RIHANNA.).mp3 from Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:28 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\11 - XXX. (FEAT. U2.).mp3 from Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:28 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\07 - PRIDE..mp3 from Viridi2413 +2025-07-13 20:32:28 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:29 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\10 - LOVE. (FEAT. ZACARI.).mp3 from Viridi2413 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:29 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\02 - DNA..mp3 from Viridi2413 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:29 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\12 - FEAR..mp3 from Viridi2413 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:29 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\14 - DUCKWORTH.mp3 from Viridi2413 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:29 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\05 - FEEL..mp3 from Viridi2413 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:29 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\13 - GOD..mp3 from Viridi2413 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:29 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\01 - BLOOD..mp3 from Viridi2413 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:29 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\08 - HUMBLE..mp3 from Viridi2413 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:32:29 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@fvzzq\Album & EPs\Kendrick Lamar - DAMN\09 - LUST..mp3 from Viridi2413 +2025-07-13 20:32:29 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:32:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:32:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:32:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:32:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:32:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\01 - Sherane A.K.A. Master Splinters Daughter.mp3 from coolasbreeze (size: 11072965) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\01 - Sherane A.K.A. Master Splinters Daughter.mp3', 'size': 11072965, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\01 - Sherane A.K.A. Master Splinters Daughter.mp3', 'size': 11072965, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\02 - Bitch, Dant Kill My Vibe.mp3 from coolasbreeze (size: 12555659) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\02 - Bitch, Dant Kill My Vibe.mp3', 'size': 12555659, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\02 - Bitch, Dant Kill My Vibe.mp3', 'size': 12555659, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\03 - Backstreet Freestyle.mp3 from coolasbreeze (size: 8633108) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\03 - Backstreet Freestyle.mp3', 'size': 8633108, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\03 - Backstreet Freestyle.mp3', 'size': 8633108, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\04 - The Art Of Peer Pressure.mp3 from coolasbreeze (size: 13108410) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\04 - The Art Of Peer Pressure.mp3', 'size': 13108410, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\04 - The Art Of Peer Pressure.mp3', 'size': 13108410, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\05 - Money Trees (Feat. Jay Rock).mp3 from coolasbreeze (size: 15603630) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\05 - Money Trees (Feat. Jay Rock).mp3', 'size': 15603630, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\05 - Money Trees (Feat. Jay Rock).mp3', 'size': 15603630, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\06 - Poetic Justice (Feat. Drake).mp3 from coolasbreeze (size: 12133524) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\06 - Poetic Justice (Feat. Drake).mp3', 'size': 12133524, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\06 - Poetic Justice (Feat. Drake).mp3', 'size': 12133524, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\07 - Good Kid.mp3 from coolasbreeze (size: 8691610) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\07 - Good Kid.mp3', 'size': 8691610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\07 - Good Kid.mp3', 'size': 8691610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\08 - M.A.A.D City (Feat. MC Eiht).mp3 from coolasbreeze (size: 14132414) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\08 - M.A.A.D City (Feat. MC Eiht).mp3', 'size': 14132414, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\08 - M.A.A.D City (Feat. MC Eiht).mp3', 'size': 14132414, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\09 - Swimming Pools (Drank) (Extended Version).mp3 from coolasbreeze (size: 12678974) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\09 - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12678974, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\09 - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12678974, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\10 - Sing About Me, Im Dying Of Thirst.mp3 from coolasbreeze (size: 29070281) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\10 - Sing About Me, Im Dying Of Thirst.mp3', 'size': 29070281, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\10 - Sing About Me, Im Dying Of Thirst.mp3', 'size': 29070281, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\11 - Real (Feat. Anna Wise Of Sonnymoon).mp3 from coolasbreeze (size: 17863752) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\11 - Real (Feat. Anna Wise Of Sonnymoon).mp3', 'size': 17863752, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\11 - Real (Feat. Anna Wise Of Sonnymoon).mp3', 'size': 17863752, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\12 - Compton (Feat. Dr. Dre).mp3 from coolasbreeze (size: 10051038) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\12 - Compton (Feat. Dr. Dre).mp3', 'size': 10051038, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\12 - Compton (Feat. Dr. Dre).mp3', 'size': 10051038, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\13 - The Recipe (Feat. Dr Dre) (Bonus Track).mp3 from coolasbreeze (size: 14254679) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\13 - The Recipe (Feat. Dr Dre) (Bonus Track).mp3', 'size': 14254679, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\13 - The Recipe (Feat. Dr Dre) (Bonus Track).mp3', 'size': 14254679, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\14 - Black Boy Fly (Bonus Track).mp3 from coolasbreeze (size: 11294471) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\14 - Black Boy Fly (Bonus Track).mp3', 'size': 11294471, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\14 - Black Boy Fly (Bonus Track).mp3', 'size': 11294471, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\15 - Now Or Never (Feat. Mary J. Blige) (Bonus Track).mp3 from coolasbreeze (size: 10370802) +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\15 - Now Or Never (Feat. Mary J. Blige) (Bonus Track).mp3', 'size': 10370802, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/coolasbreeze +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'music\\Kendrick Lamar\\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\\15 - Now Or Never (Feat. Mary J. Blige) (Bonus Track).mp3', 'size': 10370802, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\07 - Good Kid.mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\02 - Bitch, Dant Kill My Vibe.mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\01 - Sherane A.K.A. Master Splinters Daughter.mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\05 - Money Trees (Feat. Jay Rock).mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\06 - Poetic Justice (Feat. Drake).mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\08 - M.A.A.D City (Feat. MC Eiht).mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\10 - Sing About Me, Im Dying Of Thirst.mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\03 - Backstreet Freestyle.mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\04 - The Art Of Peer Pressure.mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\15 - Now Or Never (Feat. Mary J. Blige) (Bonus Track).mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\09 - Swimming Pools (Drank) (Extended Version).mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\12 - Compton (Feat. Dr. Dre).mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\13 - The Recipe (Feat. Dr Dre) (Bonus Track).mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\14 - Black Boy Fly (Bonus Track).mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:33:21 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: music\Kendrick Lamar\Kendrik Lamar - Good Kid M.A.A.D City [Deluxe Edition] [2012] [320 Kbps] [Album+iTunes+Bonus Tracks] [F10]\11 - Real (Feat. Anna Wise Of Sonnymoon).mp3 from coolasbreeze +2025-07-13 20:33:21 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:33:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:27 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:27 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:27 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:27 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:37 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:37 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:37 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:37 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:41 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:41 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:41 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:41 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:43 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:43 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:43 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:43 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:51 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:51 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:33:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:33:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:33:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:33:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:05 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:05 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:34:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:34:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:34:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:34:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:35:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:35:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:35:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:35:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:35:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:35:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:35:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:32:29.0538036","bytesTransferred":0,"averag... +2025-07-13 20:35:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07-14T03:35:14.1051766... +2025-07-13 20:35:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07-14T03:35:14.1051766... +2025-07-13 20:35:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07-14T03:35:14.1051766... +2025-07-13 20:35:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07-14T03:35:14.1051766... +2025-07-13 20:35:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07-14T03:35:14.1051766... +2025-07-13 20:35:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07-14T03:35:14.1051766... +2025-07-13 20:35:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07-14T03:35:14.1051766... +2025-07-13 20:35:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07-14T03:35:14.1051766... +2025-07-13 20:35:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07-14T03:35:14.1051766... +2025-07-13 20:35:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07-14T03:35:14.1051766... +2025-07-13 20:35:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:35:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:35:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:35:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:35:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:35:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:35:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:35:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:35:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:35:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:35:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:35:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:35:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:35:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:35:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:35:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":14,"files":[{"id":"d726bf7b-7ddd-4ee6-8119-bec019592670","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\02 - DNA..mp3","size":14660737,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.7538914","enqueuedAt":"2025-07-14T03:35:13.8262736","startedAt":"2025-07... +2025-07-13 20:36:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:36:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:36:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:36:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:36:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:36:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:36:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:36:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:36:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remotely","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:32:29.3953388","bytesTransferred":0,"average... +2025-07-13 20:37:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Initializing","stateDescription":"Initializing","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","bytesTransferred":0,"averageSpeed":0... +2025-07-13 20:37:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","startedAt":"2025-07-14T03:37:33.1357102Z... +2025-07-13 20:37:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","startedAt":"2025-07-14T03:37:33.1357102Z... +2025-07-13 20:37:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","startedAt":"2025-07-14T03:37:33.1357102Z... +2025-07-13 20:37:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","startedAt":"2025-07-14T03:37:33.1357102Z... +2025-07-13 20:37:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","startedAt":"2025-07-14T03:37:33.1357102Z... +2025-07-13 20:37:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","startedAt":"2025-07-14T03:37:33.1357102Z... +2025-07-13 20:37:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","startedAt":"2025-07-14T03:37:33.1357102Z... +2025-07-13 20:37:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","startedAt":"2025-07-14T03:37:33.1357102Z... +2025-07-13 20:37:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","startedAt":"2025-07-14T03:37:33.1357102Z... +2025-07-13 20:37:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","startedAt":"2025-07-14T03:37:33.1357102Z... +2025-07-13 20:37:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","startedAt":"2025-07-14T03:37:33.1357102Z... +2025-07-13 20:37:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","startedAt":"2025-07-14T03:37:33.1357102Z... +2025-07-13 20:37:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:37:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:37:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:37:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"Viridi2413","directories":[{"directory":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN","fileCount":4,"files":[{"id":"203bf6dc-2c58-494e-bfa7-5494ec4441d6","username":"Viridi2413","direction":"Download","filename":"@@fvzzq\\Album & EPs\\Kendrick Lamar - DAMN\\09 - LUST..mp3","size":19538322,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed, Succeeded","requestedAt":"2025-07-14T03:32:28.754355","enqueuedAt":"2025-07-14T03:37:32.8431563","startedAt":"2025-07-... +2025-07-13 20:46:45 - newmusic.soulseek_client - DEBUG - clear_all_completed_downloads:890 - Clearing all completed downloads with endpoint: transfers/downloads/all/completed +2025-07-13 20:46:45 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/all/completed +2025-07-13 20:46:45 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:46:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 20:46:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:46:46 - newmusic.soulseek_client - INFO - clear_all_completed_downloads:895 - Successfully cleared all completed downloads from slskd +2025-07-13 20:46:47 - newmusic.main - INFO - closeEvent:176 - Closing application... +2025-07-13 20:46:47 - newmusic.main - INFO - closeEvent:181 - Cleaning up Downloads page threads... +2025-07-13 20:46:47 - newmusic.main - INFO - closeEvent:186 - Stopping status monitoring thread... +2025-07-13 20:46:50 - newmusic.main - INFO - closeEvent:191 - Closing Soulseek client... +2025-07-13 20:46:50 - newmusic.main - INFO - closeEvent:197 - Application closed successfully +2025-07-13 20:48:08 - newmusic - INFO - setup_logging:57 - Logging initialized with level: DEBUG +2025-07-13 20:48:08 - newmusic.main - INFO - main:211 - Starting NewMusic application +2025-07-13 20:48:09 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 20:48:09 - newmusic.plex_client - INFO - _find_music_library:98 - Found music library: Music +2025-07-13 20:48:09 - newmusic.plex_client - INFO - _setup_client:84 - Successfully connected to Plex server: PLEX-MACHINE +2025-07-13 20:48:09 - newmusic.soulseek_client - INFO - _setup_client:220 - Soulseek client configured with slskd at http://localhost:5030 +2025-07-13 20:48:09 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 20:48:10 - newmusic.main - INFO - change_page:163 - Changed to page: dashboard +2025-07-13 20:48:10 - newmusic.main - INFO - setup_media_player_connections:150 - Media player connections established between sidebar and downloads page +2025-07-13 20:48:10 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Aether +2025-07-13 20:48:10 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Favorite Artists +2025-07-13 20:48:11 - newmusic.main - INFO - change_page:163 - Changed to page: downloads +2025-07-13 20:48:13 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Brittnea +2025-07-13 20:48:14 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Baleigh +2025-07-13 20:48:15 - newmusic.soulseek_client - INFO - search:551 - Starting search for: 'kendrick album' +2025-07-13 20:48:15 - newmusic.soulseek_client - DEBUG - search:561 - Search data: {'searchText': 'kendrick album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 20:48:15 - newmusic.soulseek_client - DEBUG - search:562 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 20:48:15 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 20:48:15 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:15 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'searchText': 'kendrick album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 20:48:15 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:48:15 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: {"fileCount":0,"id":"e32afc9c-30aa-401f-a0b7-3af7bb39b696","isComplete":false,"lockedFileCount":0,"responseCount":0,"responses":[],"searchText":"kendrick album","startedAt":"2025-07-14T03:48:15.3039387Z","state":"InProgress","token":3415}... +2025-07-13 20:48:15 - newmusic.soulseek_client - INFO - search:575 - Search initiated with ID: e32afc9c-30aa-401f-a0b7-3af7bb39b696 +2025-07-13 20:48:15 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 1/20) - elapsed: 0.0s +2025-07-13 20:48:15 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/e32afc9c-30aa-401f-a0b7-3af7bb39b696/responses +2025-07-13 20:48:15 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:15 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:48:15 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: []... +2025-07-13 20:48:16 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Extra Music +2025-07-13 20:48:16 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Maggi Main +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 2/20) - elapsed: 1.5s +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/e32afc9c-30aa-401f-a0b7-3af7bb39b696/responses +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"fileCount":1,"files":[{"bitDepth":16,"code":1,"extension":"","filename":"@@lbxvi\\+Music\\The Game\\The R.E.D. Album\\02 - The City feat. Kendrick Lamar.flac","length":341,"sampleRate":44100,"size":39768358,"isLocked":false}],"hasFreeUploadSlot":false,"lockedFileCount":0,"lockedFiles":[],"queueLength":0,"token":3415,"uploadSpeed":586846,"username":"adoghello"},{"fileCount":2,"files":[{"bitDepth":16,"code":1,"extension":"","filename":"@@msbxe\\Music\\Kendrick Scott Oracle\\Conviction (Album)\\... +2025-07-13 20:48:17 - newmusic.soulseek_client - INFO - search:597 - Found 249 new responses (249 total) at 1.5s +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:345 - Processing 249 user responses +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User adoghello has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User relaxedcrab has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmustbeacamel has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geraldo876 has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User musica101 has 19 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jeskola333 has 4 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreamer has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreem has 6 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lava_Lamp918 has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User snigglegros has 9 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alitamachine has 17 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User legodano has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clownpatrol6666 has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lilt19ad6 has 3 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fourthgear has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brihar22 has 0 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nightmare_dronemk12 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Bian has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yagoobian has 3 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dunce has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User erasethesanity has 0 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fern911 has 4 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User technosux has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Reemerge6193 has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sumb0dy has 22 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User WesternMustangs2000 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superlozer has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chimchooree has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yukosan666 has 16 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User IMregoR has 0 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dekachin has 3 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iaman00b has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User vfoxm has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gogbone has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User djjeremy has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DeusMaxMachina has 19 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sevenarts has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jaxxthesynth has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User etaylor86 has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User save20families has 12 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User puresauce35 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thampy has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wrabbit has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User theoddhermit has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MagikMuzik58 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Audio_Dope2 has 10 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User togapepperashi has 16 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bidynasty has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tehfuture has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ricardoastley has 4 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guineahorn has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User choomgangillbro has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hotchair has 76 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User churchofozzy1 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SlavicFire has 20 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AfterlinePerformed has 7 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User InsaneRose has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clf2008 has 85 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Marxist has 30 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ta_face_esti has 27 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User batmaster has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mystro has 4 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Stekel has 31 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chickensandwich has 21 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User YJWMY91Bk has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JTE1817 has 16 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AwesomeAustn has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User murdercitydevil has 4 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ageofthefever has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User admiran has 19 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GentooIsBased has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User macro has 59 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catawawa has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tsubasa has 30 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guppies16 has 3 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User up4mayhem has 29 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kerobaros has 217 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User davesv has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User richmilnix has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dwtn81 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User shtluck has 86 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gdtek has 21 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User conyeezy has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bigkahuna30267 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SoulHunterWolf has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User petejwhizz has 19 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User imagines2014 has 7 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User quisps has 17 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BigBallls has 10 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Finnyboy has 19 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lpma has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Datasmurf has 8 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cy1der has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Biotwist has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Deadbolt1209 has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kron0ziz has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Searcher1975! has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Derpus has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Davidless has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User maneuve has 0 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Chicken_Biscuit has 20 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User EJW has 11 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User twiztor has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sheikhyerbootai has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gombers04 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bounceman has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lulzcat773 has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FileGod has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SonicRings has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Pancho_Pantera has 12 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geetboy has 10 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nexuszeero has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User formerbusboy has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User {{{d(*_*)b}}} has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User blokmotion has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reemo4250 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dp8039 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User misticgris has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Pauper1722 has 236 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User XY0 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheTrillT-Rex has 3 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MacchiaLux has 3 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zinnac has 19 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User algernon has 3 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User onenightinkyoto has 83 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TerryDavis has 10 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _tyrese_ has 0 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dubs. has 4 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BeatscapeLounge has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User LordFerite has 35 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stinkyrat has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tunnik has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TransRights! has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BhrisBenoit has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User turbochamp has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User parasomia has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BurakkuKami has 17 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimmydean6969 has 7 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User floralbeat has 17 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User h23234 has 10 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User senhor_roar has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User begets has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Dw@n$i has 17 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User drewbagelz has 4 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BladeRelic has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oblama has 150 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rooooool has 24 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User choomfie has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ReadyPlayer420 has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User denali83 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User +-+ has 3 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User amd90 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superluminaire has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User 3030 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minimum has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stormcynk has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catpunx has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User KingGomi has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User marx2k has 12 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gradylives3 has 18 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alilstinky has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User leitunggeist has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dioestar has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elipsedeclipse has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ilikedmyoldname has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ValdikSS2 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Basiv has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BoinkBonk has 18 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pup has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gandr003 has 26 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmightbemikey has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User OPIOM has 0 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lckdscl has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Divine Wind has 16 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User The Locutus has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tbdbitl1 has 18 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Shadiness9250 has 30 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Krullakake has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User assaub has 7 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User estebanz has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User khaoohs has 26 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Obadtzxo has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User digimotong has 32 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User mindreader has 35 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rat5150 has 6 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User raremustache has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User PGTipz has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User messiah165 has 300 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User eazy4me has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User holsteins has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kgapak has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _kyle_1 has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User berts1404 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bpat2 has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User v1r2l2k has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Teoteou has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Me&MyDemons has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oier26 has 11 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MyMindIsBlowing has 0 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User takeourcarsnow has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Handbanana has 0 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gustave1984 has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lord_Anakyn has 37 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aRandomFurOnSlsk has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grapeman69 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wingler has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JDogHere has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cktc has 50 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sakurako has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sataNathan has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lost&forgotten. has 3 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Sam-jam has 14 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User mfs:321 has 6 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User johnny.megaton has 0 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User casio-official has 4 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Damon O'Manic!!! has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User beatner has 0 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User penicilling has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User severedxties has 6 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User CaptainNoFuture has 0 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User web-graffiti has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User felonraper has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User greendot has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheFakeRws has 32 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brookerthetrailerparkboy has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GetFixedBoi has 26 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User breakone9r has 9 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aa_anima has 15 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rainking has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ParadiseLost has 16 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kino_ has 17 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zerw has 17 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User korusse has 72 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DoctorLove has 0 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tonerone has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User noarmpits has 17 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lisandrx has 11 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rikki has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thlayli_x has 28 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User afronaut has 8 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lossless1024 has 2 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ssb497 has 86 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimtybobert has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User woundedflesh has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Musicmaster2023 has 5 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SnowFish24 has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reverwinsskt has 4 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Jerooome has 1 files +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User neskk has 6 files +2025-07-13 20:48:17 - newmusic.soulseek_client - INFO - _process_search_responses:399 - Found 158 individual tracks and 205 albums +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:400 - Album detection details: 363 potential albums processed +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: adoghello/@@lbxvi/+Music/The Game/The R.E.D. Album -> 1 tracks +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: relaxedcrab/@@msbxe/Music/Kendrick Scott Oracle/Conviction (Album) -> 1 tracks +2025-07-13 20:48:17 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: itmustbeacamel/@@ffjhz/Music/Kendrick Lamar/2018 - Black Panther - The Album (Music From and Inspired By) -> 14 tracks +2025-07-13 20:48:17 - newmusic.soulseek_client - INFO - search:617 - Processed results: 158 tracks, 205 albums +2025-07-13 20:48:17 - newmusic.soulseek_client - INFO - search:621 - Early termination: Found 249 responses, stopping search +2025-07-13 20:48:17 - newmusic.soulseek_client - INFO - search:632 - Search completed. Final results: 158 tracks and 205 albums for query: kendrick album +2025-07-13 20:48:21 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Broque Main +2025-07-13 20:48:28 - newmusic.spotify_client - INFO - get_user_playlists:140 - Retrieved 7 playlists +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3 from onenightinkyoto (size: 10950997) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3", 'size': 10950997, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3", 'size': 10950997, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3 from onenightinkyoto (size: 12433677) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3", 'size': 12433677, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3", 'size': 12433677, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-03 - Kendrick Lamar - Backseat Freestyle.mp3 from onenightinkyoto (size: 8511116) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-03 - Kendrick Lamar - Backseat Freestyle.mp3', 'size': 8511116, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-03 - Kendrick Lamar - Backseat Freestyle.mp3', 'size': 8511116, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3 from onenightinkyoto (size: 12986426) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3', 'size': 12986426, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3', 'size': 12986426, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-05 - Kendrick Lamar - Money Trees.mp3 from onenightinkyoto (size: 15481650) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-05 - Kendrick Lamar - Money Trees.mp3', 'size': 15481650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-05 - Kendrick Lamar - Money Trees.mp3', 'size': 15481650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-06 - Kendrick Lamar - Poetic Justice.mp3 from onenightinkyoto (size: 12011544) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3', 'size': 12011544, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3', 'size': 12011544, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-07 - Kendrick Lamar - good kid.mp3 from onenightinkyoto (size: 8569610) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-07 - Kendrick Lamar - good kid.mp3', 'size': 8569610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-07 - Kendrick Lamar - good kid.mp3', 'size': 8569610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-08 - Kendrick Lamar - m.A.A.d city.mp3 from onenightinkyoto (size: 14010434) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-08 - Kendrick Lamar - m.A.A.d city.mp3', 'size': 14010434, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-08 - Kendrick Lamar - m.A.A.d city.mp3', 'size': 14010434, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3 from onenightinkyoto (size: 12557007) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12557007, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12557007, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3 from onenightinkyoto (size: 28948308) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3", 'size': 28948308, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3", 'size': 28948308, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-11 - Kendrick Lamar - Real.mp3 from onenightinkyoto (size: 17741753) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-11 - Kendrick Lamar - Real.mp3', 'size': 17741753, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-11 - Kendrick Lamar - Real.mp3', 'size': 17741753, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-12 - Kendrick Lamar - Compton.mp3 from onenightinkyoto (size: 9929053) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3', 'size': 9929053, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3', 'size': 9929053, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-01 - Kendrick Lamar - The Recipe.mp3 from onenightinkyoto (size: 14132683) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-01 - Kendrick Lamar - The Recipe.mp3', 'size': 14132683, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-01 - Kendrick Lamar - The Recipe.mp3', 'size': 14132683, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-02 - Kendrick Lamar - Black Boy Fly.mp3 from onenightinkyoto (size: 11172461) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3', 'size': 11172461, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3', 'size': 11172461, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-03 - Kendrick Lamar - Now or Never.mp3 from onenightinkyoto (size: 10258217) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-03 - Kendrick Lamar - Now or Never.mp3', 'size': 10258217, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-03 - Kendrick Lamar - Now or Never.mp3', 'size': 10258217, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-04 - Kendrick Lamar - County Building Blues.mp3 from onenightinkyoto (size: 10333424) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-04 - Kendrick Lamar - County Building Blues.mp3', 'size': 10333424, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-04 - Kendrick Lamar - County Building Blues.mp3', 'size': 10333424, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3 from onenightinkyoto (size: 11150279) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3", 'size': 11150279, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3", 'size': 11150279, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3 from onenightinkyoto (size: 12599849) +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3', 'size': 12599849, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:46 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3', 'size': 12599849, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-08 - Kendrick Lamar - m.A.A.d city.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-07 - Kendrick Lamar - good kid.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-01 - Kendrick Lamar - The Recipe.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-11 - Kendrick Lamar - Real.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-03 - Kendrick Lamar - Now or Never.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-05 - Kendrick Lamar - Money Trees.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-02 - Kendrick Lamar - Black Boy Fly.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-04 - Kendrick Lamar - County Building Blues.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-12 - Kendrick Lamar - Compton.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:47 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-06 - Kendrick Lamar - Poetic Justice.mp3 from onenightinkyoto +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:48:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:48:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:48:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:48:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-03 - Kendrick Lamar - Backseat Freestyle.mp3 from onenightinkyoto +2025-07-13 20:48:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:48:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:48:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:48:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:48:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:48:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:51 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:48:51 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:48:53 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:48:53 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:53 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:48:53 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:48:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:48:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:48:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:48:57 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:48:57 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:48:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:48:59 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:48:59 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:48:59 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:48:59 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:01 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:01 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:01 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:01 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:03 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:03 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:03 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:03 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:05 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:05 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:05 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:05 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:07 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:07 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:07 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:07 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:09 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:09 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:09 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:09 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:11 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:11 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:15 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:15 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:15 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:15 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:23 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:23 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:23 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:23 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:25 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:25 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:25 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:25 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:27 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:27 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:27 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:27 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:31 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:31 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:31 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:31 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:33 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:33 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:35 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:35 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:35 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:35 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:37 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:37 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:37 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:37 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:39 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:39 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:39 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:39 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:41 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:41 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:41 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:41 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:43 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:43 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:43 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:43 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:45 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:45 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:45 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:45 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:51 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:51 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:53 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:53 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:53 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:53 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:57 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:57 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:49:59 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:49:59 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:49:59 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:49:59 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:50:01 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:50:01 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:50:01 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:50:01 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:50:03 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:50:03 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:50:03 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:50:03 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:50:05 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:50:05 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:50:05 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:50:05 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:50:07 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:50:07 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:50:07 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:50:07 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:50:09 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:50:09 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:50:09 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:50:09 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:50:11 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:50:11 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:50:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:50:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:50:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:50:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:50:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:50:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:50:15 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:50:15 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:50:15 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:50:15 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:50:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:50:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:50:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:50:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:50:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:50:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:50:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:50:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:50:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:50:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:50:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:50:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:50:23 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:50:23 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:50:23 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:50:23 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"7d0502db-8ed7-47b1-ae2f-c2a9209df25f","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:54:52 - newmusic.main - INFO - closeEvent:176 - Closing application... +2025-07-13 20:54:52 - newmusic.main - INFO - closeEvent:181 - Cleaning up Downloads page threads... +2025-07-13 20:54:52 - newmusic.main - INFO - closeEvent:186 - Stopping status monitoring thread... +2025-07-13 20:54:53 - newmusic.main - INFO - closeEvent:191 - Closing Soulseek client... +2025-07-13 20:54:53 - newmusic.main - INFO - closeEvent:197 - Application closed successfully +2025-07-13 20:55:13 - newmusic - INFO - setup_logging:57 - Logging initialized with level: DEBUG +2025-07-13 20:55:13 - newmusic.main - INFO - main:211 - Starting NewMusic application +2025-07-13 20:55:13 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 20:55:13 - newmusic.plex_client - INFO - _find_music_library:98 - Found music library: Music +2025-07-13 20:55:13 - newmusic.plex_client - INFO - _setup_client:84 - Successfully connected to Plex server: PLEX-MACHINE +2025-07-13 20:55:13 - newmusic.soulseek_client - INFO - _setup_client:220 - Soulseek client configured with slskd at http://localhost:5030 +2025-07-13 20:55:14 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 20:55:14 - newmusic.main - INFO - change_page:163 - Changed to page: dashboard +2025-07-13 20:55:14 - newmusic.main - INFO - setup_media_player_connections:150 - Media player connections established between sidebar and downloads page +2025-07-13 20:55:15 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Aether +2025-07-13 20:55:15 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Favorite Artists +2025-07-13 20:55:16 - newmusic.main - INFO - change_page:163 - Changed to page: sync +2025-07-13 20:55:16 - newmusic.main - INFO - change_page:163 - Changed to page: downloads +2025-07-13 20:55:17 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Brittnea +2025-07-13 20:55:18 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Baleigh +2025-07-13 20:55:19 - newmusic.soulseek_client - INFO - search:551 - Starting search for: 'Kendrick Album' +2025-07-13 20:55:19 - newmusic.soulseek_client - DEBUG - search:561 - Search data: {'searchText': 'Kendrick Album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 20:55:19 - newmusic.soulseek_client - DEBUG - search:562 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 20:55:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 20:55:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:19 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'searchText': 'Kendrick Album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 20:55:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:55:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: {"fileCount":0,"id":"c56224e0-2bff-4866-9cba-43d8434f0936","isComplete":false,"lockedFileCount":0,"responseCount":0,"responses":[],"searchText":"Kendrick Album","startedAt":"2025-07-14T03:55:19.7839676Z","state":"InProgress","token":3489}... +2025-07-13 20:55:19 - newmusic.soulseek_client - INFO - search:575 - Search initiated with ID: c56224e0-2bff-4866-9cba-43d8434f0936 +2025-07-13 20:55:19 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 1/20) - elapsed: 0.0s +2025-07-13 20:55:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/c56224e0-2bff-4866-9cba-43d8434f0936/responses +2025-07-13 20:55:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:20 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Extra Music +2025-07-13 20:55:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:55:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: []... +2025-07-13 20:55:20 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Maggi Main +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 2/20) - elapsed: 1.5s +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/c56224e0-2bff-4866-9cba-43d8434f0936/responses +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"fileCount":1,"files":[{"bitDepth":16,"code":1,"extension":"","filename":"@@lbxvi\\+Music\\The Game\\The R.E.D. Album\\02 - The City feat. Kendrick Lamar.flac","length":341,"sampleRate":44100,"size":39768358,"isLocked":false}],"hasFreeUploadSlot":false,"lockedFileCount":0,"lockedFiles":[],"queueLength":0,"token":3489,"uploadSpeed":586846,"username":"adoghello"},{"fileCount":2,"files":[{"bitDepth":16,"code":1,"extension":"","filename":"@@msbxe\\Music\\Kendrick Scott Oracle\\Conviction (Album)\\... +2025-07-13 20:55:21 - newmusic.soulseek_client - INFO - search:597 - Found 249 new responses (249 total) at 1.5s +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:345 - Processing 249 user responses +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User adoghello has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User relaxedcrab has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmustbeacamel has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alitamachine has 17 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jeskola333 has 4 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreem has 6 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User snigglegros has 9 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User musica101 has 19 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fourthgear has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreamer has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geraldo876 has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lilt19ad6 has 3 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User WesternMustangs2000 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fern911 has 4 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chimchooree has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User theoddhermit has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nightmare_dronemk12 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User erasethesanity has 0 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User maneuve has 0 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hotchair has 76 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User djjeremy has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User IMregoR has 0 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yukosan666 has 16 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User vfoxm has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User save20families has 12 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MagikMuzik58 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dekachin has 3 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sumb0dy has 22 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sevenarts has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User puresauce35 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superlozer has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Audio_Dope2 has 10 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gogbone has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yagoobian has 3 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tehfuture has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bidynasty has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brihar22 has 0 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ricardoastley has 4 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User legodano has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clownpatrol6666 has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User etaylor86 has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Marxist has 30 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lava_Lamp918 has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SlavicFire has 20 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xcixxorx has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Stekel has 31 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User severedxties has 6 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User churchofozzy1 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User macro has 59 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User choomgangillbro has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Bian has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thampy has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User batmaster has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AfterlinePerformed has 7 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clf2008 has 85 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User togapepperashi has 16 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guppies16 has 3 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User richmilnix has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sheikhyerbootai has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mystro has 4 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User InsaneRose has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ta_face_esti has 27 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GeorgeHatesFun has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stormcynk has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User shtluck has 86 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Derpus has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Finnyboy has 19 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bigkahuna30267 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User petejwhizz has 19 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lulzcat773 has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Datasmurf has 8 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kerobaros has 217 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grapeman69 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dwtn81 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FileGod has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Davidless has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmightbemikey has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gombers04 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jaxxthesynth has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cy1der has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User EJW has 11 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User davesv has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lpma has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User formerbusboy has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Searcher1975! has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catpunx has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AwesomeAustn has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SoulHunterWolf has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reemo4250 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ageofthefever has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Dw@n$i has 17 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guineahorn has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Chicken_Biscuit has 20 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GentooIsBased has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User admiran has 19 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Reemerge6193 has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SonicRings has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wrabbit has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User conyeezy has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User parasomia has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Pauper1722 has 236 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User twiztor has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MusicLarry has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bounceman has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User blokmotion has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User XY0 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User murdercitydevil has 4 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dubs. has 4 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lossless1024 has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geetboy has 10 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nexuszeero has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User YJWMY91Bk has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pup has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User misticgris has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JTE1817 has 16 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User {{{d(*_*)b}}} has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reverwinsskt has 4 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Deadbolt1209 has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GoldenDeus has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zinnac has 19 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BhrisBenoit has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User drewbagelz has 4 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ParadiseLost has 16 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _tyrese_ has 0 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User 3030 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User beatner has 0 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User imagines2014 has 7 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catawawa has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TerryDavis has 10 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User begets has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User senhor_roar has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BigBallls has 10 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TransRights! has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tsubasa has 30 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User amd90 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elipsedeclipse has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minimum has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oblama has 150 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User +-+ has 3 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User up4mayhem has 29 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User KingGomi has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MacchiaLux has 3 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BladeRelic has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dandemite has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rat5150 has 6 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lckdscl has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User denali83 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User onenightinkyoto has 83 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ValdikSS2 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Divine Wind has 16 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User OPIOM has 0 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User v1r2l2k has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tunnik has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User raremustache has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Obadtzxo has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dunce has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kenjaman has 92 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User berts1404 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thlayli_x has 28 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User estebanz has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MyMindIsBlowing has 0 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _kyle_1 has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User leitunggeist has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User LordFerite has 35 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kgapak has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User PGTipz has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alilstinky has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gustave1984 has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lord_Anakyn has 37 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FLASHBACK6070 has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sataNathan has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Teoteou has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Damon O'Manic!!! has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User breakone9r has 9 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ReadyPlayer420 has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rainking has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User michaelwave has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User The Locutus has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JDogHere has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lost&forgotten. has 3 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Jerooome has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User visions has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ssb497 has 86 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stinkyrat has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iaman00b has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Me&MyDemons has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User woundedflesh has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User eazy4me has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bamagooner has 19 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tbdbitl1 has 18 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rikki has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aa_anima has 15 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sakurako has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User takeourcarsnow has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kobeyads has 0 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DoctorLove has 0 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lascar972 has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User filfilfil has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cktc has 50 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User marx2k has 12 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Musicmaster2023 has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User web-graffiti has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User choomfie has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pugacioff has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nick_in_mersey3 has 16 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User CaptainNoFuture has 0 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User RandomZero has 38 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dressa1112 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User assaub has 7 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xY7pQ2zW9aK5bJ has 13 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User coolasbreeze has 46 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minnis has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User mfs:321 has 6 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zerw has 17 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TitanX420 has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Afton has 14 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Pagerg has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bajolo has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tuliomajit1992 has 28 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Fenris has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User RockCartel has 4 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Foe4 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gdtek has 21 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User waddaw has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User casio-official has 4 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pickledeyebrowed has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mole has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rancid88 has 24 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lightandcoffee has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheTrillT-Rex has 3 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User algernon has 3 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User campee has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kfs1986 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kron0ziz has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lll3nto has 2 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BeatscapeLounge has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rKAYo has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dio141 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dp8039 has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Biotwist has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SupStu has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User floralbeat has 17 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User felonraper has 5 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chickensandwich has 21 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BurakkuKami has 17 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User digimotong has 32 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimmydean6969 has 7 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User turbochamp has 1 files +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User khudea has 0 files +2025-07-13 20:55:21 - newmusic.soulseek_client - INFO - _process_search_responses:399 - Found 176 individual tracks and 206 albums +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:400 - Album detection details: 382 potential albums processed +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: adoghello/@@lbxvi/+Music/The Game/The R.E.D. Album -> 1 tracks +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: relaxedcrab/@@msbxe/Music/Kendrick Scott Oracle/Conviction (Album) -> 1 tracks +2025-07-13 20:55:21 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: itmustbeacamel/@@ffjhz/Music/Kendrick Lamar/2018 - Black Panther - The Album (Music From and Inspired By) -> 14 tracks +2025-07-13 20:55:21 - newmusic.soulseek_client - INFO - search:617 - Processed results: 176 tracks, 206 albums +2025-07-13 20:55:21 - newmusic.soulseek_client - INFO - search:621 - Early termination: Found 249 responses, stopping search +2025-07-13 20:55:21 - newmusic.soulseek_client - INFO - search:632 - Search completed. Final results: 176 tracks and 206 albums for query: Kendrick Album +2025-07-13 20:55:25 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Broque Main +2025-07-13 20:55:33 - newmusic.spotify_client - INFO - get_user_playlists:140 - Retrieved 7 playlists +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3 from onenightinkyoto (size: 10950997) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3", 'size': 10950997, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3", 'size': 10950997, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3 from onenightinkyoto (size: 12433677) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3", 'size': 12433677, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3", 'size': 12433677, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-03 - Kendrick Lamar - Backseat Freestyle.mp3 from onenightinkyoto (size: 8511116) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-03 - Kendrick Lamar - Backseat Freestyle.mp3', 'size': 8511116, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-03 - Kendrick Lamar - Backseat Freestyle.mp3', 'size': 8511116, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3 from onenightinkyoto (size: 12986426) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3', 'size': 12986426, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3', 'size': 12986426, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-05 - Kendrick Lamar - Money Trees.mp3 from onenightinkyoto (size: 15481650) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-05 - Kendrick Lamar - Money Trees.mp3', 'size': 15481650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-05 - Kendrick Lamar - Money Trees.mp3', 'size': 15481650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-06 - Kendrick Lamar - Poetic Justice.mp3 from onenightinkyoto (size: 12011544) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3', 'size': 12011544, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3', 'size': 12011544, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-07 - Kendrick Lamar - good kid.mp3 from onenightinkyoto (size: 8569610) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-07 - Kendrick Lamar - good kid.mp3', 'size': 8569610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-07 - Kendrick Lamar - good kid.mp3', 'size': 8569610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-08 - Kendrick Lamar - m.A.A.d city.mp3 from onenightinkyoto (size: 14010434) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-08 - Kendrick Lamar - m.A.A.d city.mp3', 'size': 14010434, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-08 - Kendrick Lamar - m.A.A.d city.mp3', 'size': 14010434, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3 from onenightinkyoto (size: 12557007) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12557007, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12557007, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3 from onenightinkyoto (size: 28948308) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3", 'size': 28948308, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3", 'size': 28948308, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-11 - Kendrick Lamar - Real.mp3 from onenightinkyoto (size: 17741753) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-11 - Kendrick Lamar - Real.mp3', 'size': 17741753, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-11 - Kendrick Lamar - Real.mp3', 'size': 17741753, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-12 - Kendrick Lamar - Compton.mp3 from onenightinkyoto (size: 9929053) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3', 'size': 9929053, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3', 'size': 9929053, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-01 - Kendrick Lamar - The Recipe.mp3 from onenightinkyoto (size: 14132683) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-01 - Kendrick Lamar - The Recipe.mp3', 'size': 14132683, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-01 - Kendrick Lamar - The Recipe.mp3', 'size': 14132683, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-02 - Kendrick Lamar - Black Boy Fly.mp3 from onenightinkyoto (size: 11172461) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3', 'size': 11172461, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3', 'size': 11172461, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-03 - Kendrick Lamar - Now or Never.mp3 from onenightinkyoto (size: 10258217) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-03 - Kendrick Lamar - Now or Never.mp3', 'size': 10258217, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-03 - Kendrick Lamar - Now or Never.mp3', 'size': 10258217, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-04 - Kendrick Lamar - County Building Blues.mp3 from onenightinkyoto (size: 10333424) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-04 - Kendrick Lamar - County Building Blues.mp3', 'size': 10333424, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-04 - Kendrick Lamar - County Building Blues.mp3', 'size': 10333424, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3 from onenightinkyoto (size: 11150279) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3", 'size': 11150279, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3", 'size': 11150279, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3 from onenightinkyoto (size: 12599849) +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3', 'size': 12599849, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3', 'size': 12599849, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":12,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-06 - Kendrick Lamar - Poetic Justice.mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-11 - Kendrick Lamar - Real.mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-07 - Kendrick Lamar - good kid.mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-01 - Kendrick Lamar - The Recipe.mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-12 - Kendrick Lamar - Compton.mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-03 - Kendrick Lamar - Backseat Freestyle.mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-02 - Kendrick Lamar - Black Boy Fly.mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-05 - Kendrick Lamar - Money Trees.mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-04 - Kendrick Lamar - County Building Blues.mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-08 - Kendrick Lamar - m.A.A.d city.mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3 from onenightinkyoto +2025-07-13 20:55:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:57 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-03 - Kendrick Lamar - Now or Never.mp3 from onenightinkyoto +2025-07-13 20:55:57 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:57 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3 from onenightinkyoto +2025-07-13 20:55:57 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:57 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3 from onenightinkyoto +2025-07-13 20:55:57 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 20:55:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:55:57 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3 from onenightinkyoto +2025-07-13 20:55:57 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 20:55:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:55:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:55:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:55:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:56:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:56:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:56:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:56:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 20:57:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 20:57:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"710384ab-e91e-4129-8a09-650b28cb0b80","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3","size":12433677,"sta... +2025-07-13 20:57:49 - newmusic.soulseek_client - DEBUG - clear_all_completed_downloads:890 - Clearing all completed downloads with endpoint: transfers/downloads/all/completed +2025-07-13 20:57:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/all/completed +2025-07-13 20:57:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 20:57:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 20:57:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 20:57:49 - newmusic.soulseek_client - INFO - clear_all_completed_downloads:895 - Successfully cleared all completed downloads from slskd +2025-07-13 21:07:35 - newmusic.main - INFO - closeEvent:176 - Closing application... +2025-07-13 21:07:35 - newmusic.main - INFO - closeEvent:181 - Cleaning up Downloads page threads... +2025-07-13 21:07:35 - newmusic.main - INFO - closeEvent:186 - Stopping status monitoring thread... +2025-07-13 21:07:37 - newmusic.main - INFO - closeEvent:191 - Closing Soulseek client... +2025-07-13 21:07:37 - newmusic.main - INFO - closeEvent:197 - Application closed successfully +2025-07-13 21:10:58 - newmusic - INFO - setup_logging:57 - Logging initialized with level: DEBUG +2025-07-13 21:10:58 - newmusic.main - INFO - main:211 - Starting NewMusic application +2025-07-13 21:10:59 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 21:10:59 - newmusic.plex_client - INFO - _find_music_library:98 - Found music library: Music +2025-07-13 21:10:59 - newmusic.plex_client - INFO - _setup_client:84 - Successfully connected to Plex server: PLEX-MACHINE +2025-07-13 21:10:59 - newmusic.soulseek_client - INFO - _setup_client:220 - Soulseek client configured with slskd at http://localhost:5030 +2025-07-13 21:10:59 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 21:11:00 - newmusic.main - INFO - change_page:163 - Changed to page: dashboard +2025-07-13 21:11:00 - newmusic.main - INFO - setup_media_player_connections:150 - Media player connections established between sidebar and downloads page +2025-07-13 21:11:00 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Aether +2025-07-13 21:11:00 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Favorite Artists +2025-07-13 21:11:02 - newmusic.main - INFO - change_page:163 - Changed to page: downloads +2025-07-13 21:11:03 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Brittnea +2025-07-13 21:11:04 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Baleigh +2025-07-13 21:11:05 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Extra Music +2025-07-13 21:11:06 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Maggi Main +2025-07-13 21:11:07 - newmusic.soulseek_client - INFO - search:551 - Starting search for: 'Kendrick Album' +2025-07-13 21:11:07 - newmusic.soulseek_client - DEBUG - search:561 - Search data: {'searchText': 'Kendrick Album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:11:07 - newmusic.soulseek_client - DEBUG - search:562 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:11:07 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:11:07 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:07 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'searchText': 'Kendrick Album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:11:07 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:11:07 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: {"fileCount":0,"id":"a49d802b-ea13-462c-a91a-32596c5625e6","isComplete":false,"lockedFileCount":0,"responseCount":0,"responses":[],"searchText":"Kendrick Album","startedAt":"2025-07-14T04:11:07.3155773Z","state":"InProgress","token":3563}... +2025-07-13 21:11:07 - newmusic.soulseek_client - INFO - search:575 - Search initiated with ID: a49d802b-ea13-462c-a91a-32596c5625e6 +2025-07-13 21:11:07 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 1/20) - elapsed: 0.0s +2025-07-13 21:11:07 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/a49d802b-ea13-462c-a91a-32596c5625e6/responses +2025-07-13 21:11:07 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:07 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:11:07 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: []... +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 2/20) - elapsed: 1.5s +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/a49d802b-ea13-462c-a91a-32596c5625e6/responses +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"fileCount":1,"files":[{"bitDepth":16,"code":1,"extension":"","filename":"@@lbxvi\\+Music\\The Game\\The R.E.D. Album\\02 - The City feat. Kendrick Lamar.flac","length":341,"sampleRate":44100,"size":39768358,"isLocked":false}],"hasFreeUploadSlot":true,"lockedFileCount":0,"lockedFiles":[],"queueLength":0,"token":3563,"uploadSpeed":586846,"username":"adoghello"},{"fileCount":2,"files":[{"bitDepth":16,"code":1,"extension":"","filename":"@@msbxe\\Music\\Kendrick Scott Oracle\\Conviction (Album)\\0... +2025-07-13 21:11:09 - newmusic.soulseek_client - INFO - search:597 - Found 249 new responses (249 total) at 1.5s +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:345 - Processing 249 user responses +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User adoghello has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User relaxedcrab has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alitamachine has 17 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreamer has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User technosux has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User snigglegros has 9 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmustbeacamel has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brihar22 has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dunce has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jeskola333 has 4 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fourthgear has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geraldo876 has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User legodano has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreem has 6 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User IMregoR has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nightmare_dronemk12 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User WesternMustangs2000 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User theoddhermit has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lilt19ad6 has 3 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User musica101 has 19 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User maneuve has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clownpatrol6666 has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User shtluck has 86 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User erasethesanity has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DeusMaxMachina has 19 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chickensandwich has 21 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guppies16 has 3 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Audio_Dope2 has 10 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fern911 has 4 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yukosan666 has 16 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chimchooree has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User churchofozzy1 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User puresauce35 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bidynasty has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superlozer has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hotchair has 76 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gogbone has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thampy has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User crint has 3 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sevenarts has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ricardoastley has 4 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tehfuture has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Finnyboy has 19 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User djjeremy has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BeatscapeLounge has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Stekel has 31 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lpma has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheTrillT-Rex has 3 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grapeman69 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guineahorn has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Marxist has 30 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User etaylor86 has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clf2008 has 85 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User davesv has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Basiv has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mystro has 4 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ta_face_esti has 27 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iaman00b has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sumb0dy has 22 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dekachin has 3 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User InsaneRose has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GeorgeHatesFun has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ageofthefever has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Searcher1975! has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User petejwhizz has 19 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User EJW has 11 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yagoobian has 3 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Reemerge6193 has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lava_Lamp918 has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User save20families has 12 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User severedxties has 6 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SoulHunterWolf has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dioestar has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User batmaster has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Datasmurf has 8 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xcixxorx has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BurakkuKami has 17 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AfterlinePerformed has 7 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User imagines2014 has 7 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BhrisBenoit has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Dw@n$i has 17 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User parasomia has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User conyeezy has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Chicken_Biscuit has 20 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wrabbit has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmightbemikey has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User misticgris has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SlavicFire has 20 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Bian has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User togapepperashi has 16 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User admiran has 19 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User leitunggeist has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jaxxthesynth has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _tyrese_ has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geetboy has 10 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reverwinsskt has 4 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gombers04 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User vfoxm has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Deadbolt1209 has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stormcynk has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nexuszeero has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User {{{d(*_*)b}}} has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimmydean6969 has 7 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User felonraper has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TerryDavis has 10 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Pauper1722 has 236 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User twiztor has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FileGod has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catpunx has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Krullakake has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User h23234 has 10 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catawawa has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AwesomeAustn has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kerobaros has 217 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elipsedeclipse has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dwtn81 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gdtek has 21 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User blokmotion has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JTE1817 has 16 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Derpus has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dubs. has 4 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User KingGomi has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BigBallls has 10 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sheikhyerbootai has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lulzcat773 has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User begets has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User macro has 59 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User YJWMY91Bk has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TransRights! has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User onenightinkyoto has 83 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SonicRings has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gradylives3 has 18 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Sam-jam has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bigkahuna30267 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Obadtzxo has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User 3030 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zinnac has 19 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dandemite has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reemo4250 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tsubasa has 30 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Davidless has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User digimotong has 32 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User The Locutus has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GoldenDeus has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _kyle_1 has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User estebanz has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User johnny.megaton has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User +-+ has 3 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kino_ has 17 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User murdercitydevil has 4 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MacchiaLux has 3 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User XY0 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rat5150 has 6 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minimum has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GentooIsBased has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User drewbagelz has 4 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gustave1984 has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bounceman has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User assaub has 7 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FLASHBACK6070 has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MyMindIsBlowing has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ReadyPlayer420 has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Me&MyDemons has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GetFixedBoi has 26 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pup has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User richmilnix has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ValdikSS2 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User raremustache has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lost&forgotten. has 3 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User formerbusboy has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User noarmpits has 17 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thlayli_x has 28 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aRandomFurOnSlsk has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User OPIOM has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Damon O'Manic!!! has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User LordFerite has 35 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User web-graffiti has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lckdscl has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MusicLarry has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User beatner has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ParadiseLost has 16 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User v1r2l2k has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User denali83 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alilstinky has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Handbanana has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lossless1024 has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lord_Anakyn has 37 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User amd90 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Teoteou has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheFakeRws has 32 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User filfilfil has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Shadiness9250 has 30 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Jerooome has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BladeRelic has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stinkyrat has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User PGTipz has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ssb497 has 86 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TitanX420 has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User neskk has 6 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DoctorLove has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sataNathan has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lascar972 has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kgapak has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bamagooner has 19 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mr.Wilson has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User takeourcarsnow has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User monsterpco has 3 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tunnik has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User berts1404 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rainking has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tuliomajit1992 has 28 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User michaelwave has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User visions has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ElessarMP3 has 19 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grohl has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JDogHere has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rancid88 has 24 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User senhor_roar has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rikki has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sakurako has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oblama has 150 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User breakone9r has 9 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kobeyads has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User up4mayhem has 29 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nick_in_mersey3 has 16 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lll3nto has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User CaptainNoFuture has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cktc has 50 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User waddaw has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Afton has 14 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User casio-official has 4 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Fenris has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User khudea has 0 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pugacioff has 5 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mole has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aa_anima has 15 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User campee has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lightandcoffee has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Pagerg has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User m00nl1ght98 has 4 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dressa1112 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kfs1986 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User coolasbreeze has 46 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User piggles has 3 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User RandomZero has 38 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bajolo has 2 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SnowFish24 has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lisandrx has 11 files +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stiffuper has 1 files +2025-07-13 21:11:09 - newmusic.soulseek_client - INFO - _process_search_responses:399 - Found 154 individual tracks and 190 albums +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:400 - Album detection details: 344 potential albums processed +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: adoghello/@@lbxvi/+Music/The Game/The R.E.D. Album -> 1 tracks +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: relaxedcrab/@@msbxe/Music/Kendrick Scott Oracle/Conviction (Album) -> 1 tracks +2025-07-13 21:11:09 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: alitamachine/@@nlbqv/Music/Kendrick Lamar, The Weeknd & SZA - Black Panther The Album Music From And Inspired By -> 14 tracks +2025-07-13 21:11:09 - newmusic.soulseek_client - INFO - search:617 - Processed results: 154 tracks, 190 albums +2025-07-13 21:11:09 - newmusic.soulseek_client - INFO - search:621 - Early termination: Found 249 responses, stopping search +2025-07-13 21:11:09 - newmusic.soulseek_client - INFO - search:632 - Search completed. Final results: 154 tracks and 190 albums for query: Kendrick Album +2025-07-13 21:11:11 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Broque Main +2025-07-13 21:11:18 - newmusic.spotify_client - INFO - get_user_playlists:140 - Retrieved 7 playlists +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3 from onenightinkyoto (size: 10950997) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3", 'size': 10950997, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3", 'size': 10950997, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3 from onenightinkyoto (size: 12433677) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3", 'size': 12433677, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3", 'size': 12433677, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-03 - Kendrick Lamar - Backseat Freestyle.mp3 from onenightinkyoto (size: 8511116) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-03 - Kendrick Lamar - Backseat Freestyle.mp3', 'size': 8511116, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-03 - Kendrick Lamar - Backseat Freestyle.mp3', 'size': 8511116, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3 from onenightinkyoto (size: 12986426) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3', 'size': 12986426, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3', 'size': 12986426, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-05 - Kendrick Lamar - Money Trees.mp3 from onenightinkyoto (size: 15481650) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-05 - Kendrick Lamar - Money Trees.mp3', 'size': 15481650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-05 - Kendrick Lamar - Money Trees.mp3', 'size': 15481650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-06 - Kendrick Lamar - Poetic Justice.mp3 from onenightinkyoto (size: 12011544) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3', 'size': 12011544, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3', 'size': 12011544, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-07 - Kendrick Lamar - good kid.mp3 from onenightinkyoto (size: 8569610) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-07 - Kendrick Lamar - good kid.mp3', 'size': 8569610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-07 - Kendrick Lamar - good kid.mp3', 'size': 8569610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-08 - Kendrick Lamar - m.A.A.d city.mp3 from onenightinkyoto (size: 14010434) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-08 - Kendrick Lamar - m.A.A.d city.mp3', 'size': 14010434, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-08 - Kendrick Lamar - m.A.A.d city.mp3', 'size': 14010434, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3 from onenightinkyoto (size: 12557007) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12557007, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12557007, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3 from onenightinkyoto (size: 28948308) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3", 'size': 28948308, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3", 'size': 28948308, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-11 - Kendrick Lamar - Real.mp3 from onenightinkyoto (size: 17741753) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-11 - Kendrick Lamar - Real.mp3', 'size': 17741753, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-11 - Kendrick Lamar - Real.mp3', 'size': 17741753, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-12 - Kendrick Lamar - Compton.mp3 from onenightinkyoto (size: 9929053) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3', 'size': 9929053, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3', 'size': 9929053, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-01 - Kendrick Lamar - The Recipe.mp3 from onenightinkyoto (size: 14132683) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-01 - Kendrick Lamar - The Recipe.mp3', 'size': 14132683, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-01 - Kendrick Lamar - The Recipe.mp3', 'size': 14132683, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-02 - Kendrick Lamar - Black Boy Fly.mp3 from onenightinkyoto (size: 11172461) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3', 'size': 11172461, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3', 'size': 11172461, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-03 - Kendrick Lamar - Now or Never.mp3 from onenightinkyoto (size: 10258217) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-03 - Kendrick Lamar - Now or Never.mp3', 'size': 10258217, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-03 - Kendrick Lamar - Now or Never.mp3', 'size': 10258217, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-04 - Kendrick Lamar - County Building Blues.mp3 from onenightinkyoto (size: 10333424) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-04 - Kendrick Lamar - County Building Blues.mp3', 'size': 10333424, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-04 - Kendrick Lamar - County Building Blues.mp3', 'size': 10333424, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3 from onenightinkyoto (size: 11150279) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3", 'size': 11150279, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3", 'size': 11150279, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3 from onenightinkyoto (size: 12599849) +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3', 'size': 12599849, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:47 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3', 'size': 12599849, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-01 - Kendrick Lamar - The Recipe.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-04 - Kendrick Lamar - County Building Blues.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-03 - Kendrick Lamar - Backseat Freestyle.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-08 - Kendrick Lamar - m.A.A.d city.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-06 - Kendrick Lamar - Poetic Justice.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-07 - Kendrick Lamar - good kid.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-12 - Kendrick Lamar - Compton.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-02 - Kendrick Lamar - Black Boy Fly.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-05 - Kendrick Lamar - Money Trees.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:48 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-03 - Kendrick Lamar - Now or Never.mp3 from onenightinkyoto +2025-07-13 21:11:48 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:11:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:11:49 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-11 - Kendrick Lamar - Real.mp3 from onenightinkyoto +2025-07-13 21:11:49 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:11:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:11:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:11:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:11:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:11:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:51 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:11:51 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:11:53 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:11:53 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:53 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:11:53 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:11:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:11:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:11:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:11:57 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:11:57 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:11:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:11:59 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:11:59 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:11:59 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:11:59 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:01 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:01 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:01 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:01 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:03 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:03 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:03 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:03 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:05 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:05 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:05 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:05 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:07 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:07 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:07 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:07 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:09 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:09 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:09 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:09 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:11 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:11 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:15 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:15 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:15 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:15 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:23 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:23 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:23 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:23 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:25 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:25 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:25 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:25 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:27 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:27 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:27 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:27 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:31 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:31 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:31 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:31 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:33 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:33 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:35 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:35 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:35 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:35 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:37 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:37 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:37 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:37 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:39 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:39 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:39 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:39 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:41 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:41 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:41 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:41 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:43 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:43 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:43 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:43 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:45 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:45 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:45 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:45 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:51 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:51 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:53 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:53 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:53 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:53 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:57 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:57 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:12:59 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:12:59 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:12:59 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:12:59 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:13:01 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:13:01 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:13:01 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:13:01 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:13:03 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:13:03 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:13:03 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:13:03 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:13:05 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:13:05 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:13:05 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:13:05 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:13:07 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:13:07 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:13:07 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:13:07 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:13:09 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:13:09 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:13:09 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:13:09 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"16e7162e-efdf-4a20-a491-5ece58d32db7","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3","size":9929053,"startOffset":0,"state"... +2025-07-13 21:16:49 - newmusic.soulseek_client - DEBUG - clear_all_completed_downloads:890 - Clearing all completed downloads with endpoint: transfers/downloads/all/completed +2025-07-13 21:16:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/all/completed +2025-07-13 21:16:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:16:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 21:16:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:16:49 - newmusic.soulseek_client - INFO - clear_all_completed_downloads:895 - Successfully cleared all completed downloads from slskd +2025-07-13 21:16:52 - newmusic.main - INFO - closeEvent:176 - Closing application... +2025-07-13 21:16:52 - newmusic.main - INFO - closeEvent:181 - Cleaning up Downloads page threads... +2025-07-13 21:16:52 - newmusic.main - INFO - closeEvent:186 - Stopping status monitoring thread... +2025-07-13 21:16:55 - newmusic.main - INFO - closeEvent:191 - Closing Soulseek client... +2025-07-13 21:16:55 - newmusic.main - INFO - closeEvent:197 - Application closed successfully +2025-07-13 21:24:25 - newmusic - INFO - setup_logging:57 - Logging initialized with level: DEBUG +2025-07-13 21:24:25 - newmusic.main - INFO - main:211 - Starting NewMusic application +2025-07-13 21:24:25 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 21:24:25 - newmusic.plex_client - INFO - _find_music_library:98 - Found music library: Music +2025-07-13 21:24:25 - newmusic.plex_client - INFO - _setup_client:84 - Successfully connected to Plex server: PLEX-MACHINE +2025-07-13 21:24:25 - newmusic.soulseek_client - INFO - _setup_client:220 - Soulseek client configured with slskd at http://localhost:5030 +2025-07-13 21:24:25 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 21:24:26 - newmusic.main - INFO - change_page:163 - Changed to page: dashboard +2025-07-13 21:24:26 - newmusic.main - INFO - setup_media_player_connections:150 - Media player connections established between sidebar and downloads page +2025-07-13 21:24:26 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Aether +2025-07-13 21:24:26 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Favorite Artists +2025-07-13 21:24:27 - newmusic.main - INFO - change_page:163 - Changed to page: downloads +2025-07-13 21:24:29 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Brittnea +2025-07-13 21:24:30 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Baleigh +2025-07-13 21:24:31 - newmusic.soulseek_client - INFO - search:551 - Starting search for: 'Kendrick Album' +2025-07-13 21:24:31 - newmusic.soulseek_client - DEBUG - search:561 - Search data: {'searchText': 'Kendrick Album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:24:31 - newmusic.soulseek_client - DEBUG - search:562 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:24:31 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:24:31 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:24:31 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'searchText': 'Kendrick Album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:24:31 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:24:31 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: {"fileCount":0,"id":"45bdb5ad-f340-440f-8c6c-da916fbdfab7","isComplete":false,"lockedFileCount":0,"responseCount":0,"responses":[],"searchText":"Kendrick Album","startedAt":"2025-07-14T04:24:31.4919467Z","state":"InProgress","token":3637}... +2025-07-13 21:24:31 - newmusic.soulseek_client - INFO - search:575 - Search initiated with ID: 45bdb5ad-f340-440f-8c6c-da916fbdfab7 +2025-07-13 21:24:31 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 1/20) - elapsed: 0.0s +2025-07-13 21:24:31 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/45bdb5ad-f340-440f-8c6c-da916fbdfab7/responses +2025-07-13 21:24:31 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:24:31 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Extra Music +2025-07-13 21:24:31 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:24:31 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: []... +2025-07-13 21:24:32 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Maggi Main +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 2/20) - elapsed: 1.5s +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/45bdb5ad-f340-440f-8c6c-da916fbdfab7/responses +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"fileCount":1,"files":[{"bitDepth":16,"code":1,"extension":"","filename":"@@lbxvi\\+Music\\The Game\\The R.E.D. Album\\02 - The City feat. Kendrick Lamar.flac","length":341,"sampleRate":44100,"size":39768358,"isLocked":false}],"hasFreeUploadSlot":true,"lockedFileCount":0,"lockedFiles":[],"queueLength":0,"token":3637,"uploadSpeed":586846,"username":"adoghello"},{"fileCount":1,"files":[{"bitRate":266,"code":1,"extension":"","filename":"@@bnomt\\music\\P-T\\The_Lonely_Island-The_Wack_Album-2013-M... +2025-07-13 21:24:33 - newmusic.soulseek_client - INFO - search:597 - Found 250 new responses (250 total) at 1.5s +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:345 - Processing 250 user responses +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User adoghello has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User technosux has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iaman00b has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User PsychicWulf has 16 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User relaxedcrab has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gandr003 has 26 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User snigglegros has 9 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User togapepperashi has 16 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User crint has 3 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fern911 has 4 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmustbeacamel has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User algernon has 3 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superluminaire has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreamer has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User floralbeat has 17 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dp8039 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Biotwist has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sevenarts has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ricardoastley has 4 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rooooool has 24 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geraldo876 has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dunce has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nightmare_dronemk12 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jeskola333 has 4 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guppies16 has 3 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SlavicFire has 20 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User turbochamp has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User IMregoR has 0 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User legodano has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User save20families has 12 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yagoobian has 3 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superlozer has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User musica101 has 19 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gdtek has 21 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lava_Lamp918 has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Gratitude4024 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brihar22 has 0 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brb1228 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lilt19ad6 has 3 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clownpatrol6666 has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chickensandwich has 21 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fourthgear has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Icansaveher has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xcixxorx has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BeatscapeLounge has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User skandalouz25 has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Floshi has 0 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheTrillT-Rex has 3 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alitamachine has 17 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User maneuve has 0 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User davesv has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User djjeremy has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User severedxties has 6 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ageofthefever has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chimchooree has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User vfoxm has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TerryDavis has 10 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sumb0dy has 22 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User churchofozzy1 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catawawa has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yukosan666 has 16 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tonerone has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User erasethesanity has 0 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dekachin has 3 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User richmilnix has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hotchair has 76 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User composerzane has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jaxxthesynth has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lulzcat773 has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dwtn81 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User InsaneRose has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wingler has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tehfuture has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Reemerge6193 has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ilikedmyoldname has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BoinkBonk has 18 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gogbone has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User etaylor86 has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brookerthetrailerparkboy has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clf2008 has 85 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guineahorn has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User onenightinkyoto has 83 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Audio_Dope2 has 10 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bidynasty has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gombers04 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User macro has 59 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lpma has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AfterlinePerformed has 7 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bigkahuna30267 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User murdercitydevil has 4 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User mindreader has 35 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User theoddhermit has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User leitunggeist has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geetboy has 10 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User khaoohs has 26 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BigBallls has 10 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BurakkuKami has 17 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kerobaros has 217 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SonicRings has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User formerbusboy has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dioestar has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ta_face_esti has 27 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oier26 has 11 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimmydean6969 has 7 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Bian has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cytokinetic has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User YJWMY91Bk has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elendarsilvermoon has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GeorgeHatesFun has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Marxist has 30 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elipsedeclipse has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User admiran has 19 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User miniblock has 7 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wrabbit has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Stekel has 31 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mystro has 4 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User messiah165 has 300 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User holsteins has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User batmaster has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sheikhyerbootai has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thampy has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User penicilling has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User EJW has 11 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Krullakake has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AwesomeAustn has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimbob23 has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Divine Wind has 16 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gradylives3 has 18 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User afronaut has 8 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Searcher1975! has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GentooIsBased has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bswslskd has 3 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User parasomia has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User begets has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User h23234 has 10 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BhrisBenoit has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User misticgris has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MusicLarry has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catpunx has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User greendot has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kino_ has 17 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User puresauce35 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User petejwhizz has 19 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Chicken_Biscuit has 20 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SoulHunterWolf has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tsubasa has 30 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grapeman69 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rat5150 has 6 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Basiv has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Sam-jam has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreem has 6 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cy1der has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Shadiness9250 has 30 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User johnny.megaton has 0 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ParadiseLost has 16 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TransRights! has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Datasmurf has 8 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Finnyboy has 19 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dandemite has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User {{{d(*_*)b}}} has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimtybobert has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmightbemikey has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User blokmotion has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Davidless has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GetFixedBoi has 26 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User up4mayhem has 29 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ssb497 has 86 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GoldenDeus has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User frenchsteph has 3 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User XY0 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User awesem has 16 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minimum has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reverwinsskt has 4 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pup has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MyMindIsBlowing has 0 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dubs. has 4 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ValdikSS2 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MYCELIUM_BUDDY has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reemo4250 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User +-+ has 3 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bounceman has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lossless1024 has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User drewbagelz has 4 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User OPIOM has 0 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _tyrese_ has 0 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aRandomFurOnSlsk has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User noarmpits has 17 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MacchiaLux has 3 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FileGod has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stormcynk has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User web-graffiti has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User amd90 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User conyeezy has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Derpus has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lisandrx has 11 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheFakeRws has 32 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FreeStuffNotVirus has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User marx2k has 12 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User LordFerite has 35 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zinnac has 19 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BladeRelic has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tbdbitl1 has 18 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User takeourcarsnow has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kgapak has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User digimotong has 32 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SnowFish24 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oblama has 150 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User trek7008 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nexuszeero has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Deadbolt1209 has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User RandomZero has 38 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kormn has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tunnik has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User estebanz has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DuckinthePond has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lightandcoffee has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User 3030 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User breakone9r has 9 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iiprisma has 6 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User KingGomi has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dracbf has 17 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User denali83 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gustave1984 has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User felonraper has 5 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Damon O'Manic!!! has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User m00nl1ght98 has 4 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User filfilfil has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rancid88 has 24 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lckdscl has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nixgoat has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User v1r2l2k has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User raremustache has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stiffuper has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Jerooome has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User The Locutus has 14 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User coolasbreeze has 46 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mr.Wilson has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thlayli_x has 28 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grohl has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wallywubox has 13 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Obadtzxo has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User assaub has 7 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User berts1404 has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Handbanana has 0 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alilstinky has 15 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AntStark has 2 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Pauper1722 has 236 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fakedbatman has 1 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ferallindsay has 17 files +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User monsterpco has 3 files +2025-07-13 21:24:33 - newmusic.soulseek_client - INFO - _process_search_responses:399 - Found 168 individual tracks and 201 albums +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:400 - Album detection details: 369 potential albums processed +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: adoghello/@@lbxvi/+Music/The Game/The R.E.D. Album -> 1 tracks +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: technosux/@@bnomt/music/P-T/The_Lonely_Island-The_Wack_Album-2013-MTD -> 1 tracks +2025-07-13 21:24:33 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: PsychicWulf/@@tiobk/Music Albums/Drake - Take Care (Deluxe Version) [Official Album][CD-Rip] -> 1 tracks +2025-07-13 21:24:33 - newmusic.soulseek_client - INFO - search:617 - Processed results: 168 tracks, 201 albums +2025-07-13 21:24:33 - newmusic.soulseek_client - INFO - search:621 - Early termination: Found 250 responses, stopping search +2025-07-13 21:24:33 - newmusic.soulseek_client - INFO - search:632 - Search completed. Final results: 168 tracks and 201 albums for query: Kendrick Album +2025-07-13 21:24:37 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Broque Main +2025-07-13 21:24:44 - newmusic.spotify_client - INFO - get_user_playlists:140 - Retrieved 7 playlists +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-01. Sherane a.k.a. Master Splinters Daughter.flac from ssb497 (size: 23526583) +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-01. Sherane a.k.a. Master Splinters Daughter.flac', 'size': 23526583, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-01. Sherane a.k.a. Master Splinters Daughter.flac', 'size': 23526583, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-02. Bitch, Dont Kill My Vibe.flac from ssb497 (size: 33987817) +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-02. Bitch, Dont Kill My Vibe.flac', 'size': 33987817, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-02. Bitch, Dont Kill My Vibe.flac', 'size': 33987817, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-03. Backseat Freestyle.flac from ssb497 (size: 24528884) +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-03. Backseat Freestyle.flac', 'size': 24528884, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-03. Backseat Freestyle.flac', 'size': 24528884, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-04. The Art of Peer Pressure.flac from ssb497 (size: 31119539) +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-04. The Art of Peer Pressure.flac', 'size': 31119539, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-04. The Art of Peer Pressure.flac', 'size': 31119539, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-05. Money Trees (feat. Jay Rock).flac from ssb497 (size: 42832644) +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-05. Money Trees (feat. Jay Rock).flac', 'size': 42832644, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-05. Money Trees (feat. Jay Rock).flac', 'size': 42832644, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-06. Poetic Justice (feat. Drake).flac from ssb497 (size: 31364127) +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac', 'size': 31364127, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac', 'size': 31364127, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-07. Good Kid.flac from ssb497 (size: 25425730) +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-07. Good Kid.flac', 'size': 25425730, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-07. Good Kid.flac', 'size': 25425730, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-08. m.A.A.d city (feat. MC Eiht).flac from ssb497 (size: 40651418) +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-08. m.A.A.d city (feat. MC Eiht).flac', 'size': 40651418, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-08. m.A.A.d city (feat. MC Eiht).flac', 'size': 40651418, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-09. Swimming Pools (Drank) [Extended Version].flac from ssb497 (size: 32374034) +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-09. Swimming Pools (Drank) [Extended Version].flac', 'size': 32374034, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-09. Swimming Pools (Drank) [Extended Version].flac', 'size': 32374034, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-10. Sing About Me, I'm Dying of Thirst.flac from ssb497 (size: 72922770) +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-10. Sing About Me, I'm Dying of Thirst.flac", 'size': 72922770, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-10. Sing About Me, I'm Dying of Thirst.flac", 'size': 72922770, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-11. Real (feat. Anna Wise).flac from ssb497 (size: 46963886) +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-11. Real (feat. Anna Wise).flac', 'size': 46963886, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-11. Real (feat. Anna Wise).flac', 'size': 46963886, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-12. Compton (feat. Dr. Dre).flac from ssb497 (size: 31890879) +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-12. Compton (feat. Dr. Dre).flac', 'size': 31890879, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:12 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-12. Compton (feat. Dr. Dre).flac', 'size': 31890879, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac from ssb497 (size: 42531085) +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac', 'size': 42531085, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac', 'size': 42531085, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-14. Black Boy Fly (Bonus Track).flac from ssb497 (size: 30837612) +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-14. Black Boy Fly (Bonus Track).flac', 'size': 30837612, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-14. Black Boy Fly (Bonus Track).flac', 'size': 30837612, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-15. Now Or Never (feat. Mary J. Blige) [Bonus Track].flac from ssb497 (size: 28182391) +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-15. Now Or Never (feat. Mary J. Blige) [Bonus Track].flac', 'size': 28182391, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-15. Now Or Never (feat. Mary J. Blige) [Bonus Track].flac', 'size': 28182391, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-16. Collect Calls (Bonus Track).flac from ssb497 (size: 22448172) +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-16. Collect Calls (Bonus Track).flac', 'size': 22448172, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-16. Collect Calls (Bonus Track).flac', 'size': 22448172, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-17. Swimming Pools (Drank) [Bonus Track].flac from ssb497 (size: 27776977) +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-17. Swimming Pools (Drank) [Bonus Track].flac', 'size': 27776977, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-17. Swimming Pools (Drank) [Bonus Track].flac', 'size': 27776977, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-18. Bitch, Dont Kill My Vibe (feat. JAY Z) [Remix].flac from ssb497 (size: 30843291) +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-18. Bitch, Dont Kill My Vibe (feat. JAY Z) [Remix].flac', 'size': 30843291, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-18. Bitch, Dont Kill My Vibe (feat. JAY Z) [Remix].flac', 'size': 30843291, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:13 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-01. Sherane a.k.a. Master Splinters Daughter.flac from ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:13 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-06. Poetic Justice (feat. Drake).flac from ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:13 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-14. Black Boy Fly (Bonus Track).flac from ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:13 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-10. Sing About Me, I'm Dying of Thirst.flac from ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:13 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-17. Swimming Pools (Drank) [Bonus Track].flac from ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:13 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-03. Backseat Freestyle.flac from ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Requested","stateDescription":"Requested","requeste... +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:13 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-11. Real (feat. Anna Wise).flac from ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:13 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-07. Good Kid.flac from ssb497 +2025-07-13 21:25:13 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:14 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-08. m.A.A.d city (feat. MC Eiht).flac from ssb497 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:14 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-18. Bitch, Dont Kill My Vibe (feat. JAY Z) [Remix].flac from ssb497 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:14 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-09. Swimming Pools (Drank) [Extended Version].flac from ssb497 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:14 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-02. Bitch, Dont Kill My Vibe.flac from ssb497 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:14 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-12. Compton (feat. Dr. Dre).flac from ssb497 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:14 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-04. The Art of Peer Pressure.flac from ssb497 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:14 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-15. Now Or Never (feat. Mary J. Blige) [Bonus Track].flac from ssb497 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:14 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac from ssb497 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:14 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-05. Money Trees (feat. Jay Rock).flac from ssb497 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:25:14 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@bodnl\Audio - Music\Kendrick Lamar\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\1-16. Collect Calls (Bonus Track).flac from ssb497 +2025-07-13 21:25:14 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:25:15 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:15 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:15 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:15 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:23 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:23 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:23 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:23 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:25 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:25 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:25 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:25 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:27 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:27 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:27 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:27 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:31 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:31 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:31 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:31 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:33 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:33 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:35 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:35 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:35 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:35 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:37 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:37 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:37 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:37 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:39 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:39 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:39 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:39 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:41 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:41 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:41 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:41 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:43 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:43 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:43 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:43 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:45 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:45 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:45 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:45 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:51 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:51 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:53 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:53 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:53 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:53 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:57 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:57 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:25:59 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:25:59 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:25:59 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:25:59 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:26:01 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:01 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:01 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:01 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:26:03 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:03 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:03 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:03 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:26:05 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:05 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:05 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:05 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:26:07 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:07 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:07 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:07 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:26:09 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:09 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:09 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:09 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:26:11 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:11 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:26:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:26:15 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:15 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:15 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:15 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Queued, Remotely","stateDescription":"Queued, Remot... +2025-07-13 21:26:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:23 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:23 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:23 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:23 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:25 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:25 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:25 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:25 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:27 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:27 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:27 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:27 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:31 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:31 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:31 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:31 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:33 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:33 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:35 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:35 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:35 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:35 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:37 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:37 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:37 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:37 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:39 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:39 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:39 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:39 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:41 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:41 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:41 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:41 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:43 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:43 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:43 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:43 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:44 - newmusic.soulseek_client - DEBUG - clear_all_completed_downloads:890 - Clearing all completed downloads with endpoint: transfers/downloads/all/completed +2025-07-13 21:26:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/all/completed +2025-07-13 21:26:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 21:26:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:26:44 - newmusic.soulseek_client - INFO - clear_all_completed_downloads:895 - Successfully cleared all completed downloads from slskd +2025-07-13 21:26:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:45 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:45 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:45 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:45 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:45 - newmusic.soulseek_client - DEBUG - cancel_download:867 - Cancelling download with endpoint: transfers/downloads/ssb497/e2d79926-eade-40df-9bb5-f5120a0ea85d?remove=false +2025-07-13 21:26:45 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/ssb497/e2d79926-eade-40df-9bb5-f5120a0ea85d?remove=false +2025-07-13 21:26:45 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:45 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:45 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 21:26:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:26:46 - newmusic.soulseek_client - DEBUG - cancel_download:867 - Cancelling download with endpoint: transfers/downloads/ssb497/c271bc39-0edf-4ecd-bdbf-149473d3de9e?remove=false +2025-07-13 21:26:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/ssb497/c271bc39-0edf-4ecd-bdbf-149473d3de9e?remove=false +2025-07-13 21:26:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 21:26:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:26:47 - newmusic.soulseek_client - DEBUG - cancel_download:867 - Cancelling download with endpoint: transfers/downloads/ssb497/1f6ea1a9-edb2-4ab1-bccf-5896af260b84?remove=false +2025-07-13 21:26:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/ssb497/1f6ea1a9-edb2-4ab1-bccf-5896af260b84?remove=false +2025-07-13 21:26:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 21:26:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:26:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:48 - newmusic.soulseek_client - DEBUG - cancel_download:867 - Cancelling download with endpoint: transfers/downloads/ssb497/213522e1-5921-4144-a9a1-956900d99e53?remove=false +2025-07-13 21:26:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/ssb497/213522e1-5921-4144-a9a1-956900d99e53?remove=false +2025-07-13 21:26:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 21:26:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:26:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:26:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:26:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:26:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"InProgress","stateDescription":"InProgress","reques... +2025-07-13 21:26:50 - newmusic.main - INFO - closeEvent:176 - Closing application... +2025-07-13 21:26:50 - newmusic.main - INFO - closeEvent:181 - Cleaning up Downloads page threads... +2025-07-13 21:26:50 - newmusic.main - INFO - closeEvent:186 - Stopping status monitoring thread... +2025-07-13 21:26:50 - newmusic.main - INFO - closeEvent:191 - Closing Soulseek client... +2025-07-13 21:26:50 - newmusic.main - INFO - closeEvent:197 - Application closed successfully +2025-07-13 21:27:37 - newmusic - INFO - setup_logging:57 - Logging initialized with level: DEBUG +2025-07-13 21:27:37 - newmusic.main - INFO - main:211 - Starting NewMusic application +2025-07-13 21:27:37 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 21:27:37 - newmusic.plex_client - INFO - _find_music_library:98 - Found music library: Music +2025-07-13 21:27:37 - newmusic.plex_client - INFO - _setup_client:84 - Successfully connected to Plex server: PLEX-MACHINE +2025-07-13 21:27:37 - newmusic.soulseek_client - INFO - _setup_client:220 - Soulseek client configured with slskd at http://localhost:5030 +2025-07-13 21:27:37 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 21:27:38 - newmusic.main - INFO - change_page:163 - Changed to page: dashboard +2025-07-13 21:27:38 - newmusic.main - INFO - setup_media_player_connections:150 - Media player connections established between sidebar and downloads page +2025-07-13 21:27:38 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Aether +2025-07-13 21:27:39 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Favorite Artists +2025-07-13 21:27:41 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Brittnea +2025-07-13 21:27:42 - newmusic.main - INFO - change_page:163 - Changed to page: downloads +2025-07-13 21:27:42 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Baleigh +2025-07-13 21:27:44 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Extra Music +2025-07-13 21:27:45 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Maggi Main +2025-07-13 21:27:45 - newmusic.soulseek_client - INFO - search:551 - Starting search for: 'kendrick album' +2025-07-13 21:27:45 - newmusic.soulseek_client - DEBUG - search:561 - Search data: {'searchText': 'kendrick album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:27:45 - newmusic.soulseek_client - DEBUG - search:562 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:27:45 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:27:45 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:27:45 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'searchText': 'kendrick album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:27:45 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:27:45 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: {"fileCount":0,"id":"b6451b6b-0818-4228-95f1-ddca3880422a","isComplete":false,"lockedFileCount":0,"responseCount":0,"responses":[],"searchText":"kendrick album","startedAt":"2025-07-14T04:27:45.7621023Z","state":"InProgress","token":3697}... +2025-07-13 21:27:45 - newmusic.soulseek_client - INFO - search:575 - Search initiated with ID: b6451b6b-0818-4228-95f1-ddca3880422a +2025-07-13 21:27:45 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 1/20) - elapsed: 0.0s +2025-07-13 21:27:45 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/b6451b6b-0818-4228-95f1-ddca3880422a/responses +2025-07-13 21:27:45 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:27:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:27:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: []... +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 2/20) - elapsed: 1.5s +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/b6451b6b-0818-4228-95f1-ddca3880422a/responses +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"fileCount":3,"files":[{"code":1,"extension":"","filename":"@@qedzm\\Music\\Kendrick Lamar\\DAMN\\album.nfo","size":4779,"isLocked":false},{"code":1,"extension":"","filename":"@@qedzm\\Music\\Kendrick Lamar\\To Pimp a Butterfly\\album.nfo","size":2952,"isLocked":false},{"code":1,"extension":"","filename":"@@qedzm\\Music\\Kendrick Lamar\\good kid, m.A.A.d city (Deluxe Version)\\album.nfo","size":2941,"isLocked":false}],"hasFreeUploadSlot":true,"lockedFileCount":0,"lockedFiles":[],"queueLength":... +2025-07-13 21:27:47 - newmusic.soulseek_client - INFO - search:597 - Found 250 new responses (250 total) at 1.5s +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:345 - Processing 250 user responses +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User algernon has 3 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superluminaire has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gandr003 has 26 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Biotwist has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dp8039 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User floralbeat has 17 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brookerthetrailerparkboy has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Gratitude4024 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User turbochamp has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rooooool has 24 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User composerzane has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User skandalouz25 has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elendarsilvermoon has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tonerone has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User mindreader has 35 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BoinkBonk has 18 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimbob23 has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oier26 has 11 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cytokinetic has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User khaoohs has 26 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User greendot has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User penicilling has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User adoghello has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User afronaut has 8 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User PsychicWulf has 16 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Divine Wind has 16 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ilikedmyoldname has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User relaxedcrab has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User technosux has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User snigglegros has 9 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ssb497 has 86 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User miniblock has 7 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Floshi has 0 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fern911 has 4 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User vfoxm has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geraldo876 has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MYCELIUM_BUDDY has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dekachin has 3 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimtybobert has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yagoobian has 3 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ricardoastley has 4 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreamer has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User frenchsteph has 3 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jeskola333 has 4 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sevenarts has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alitamachine has 17 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User soyburger has 4 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User IMregoR has 0 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guppies16 has 3 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Dw@n$i has 17 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nightmare_dronemk12 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superlozer has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AntStark has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SlavicFire has 20 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dracbf has 17 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wrabbit has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dunce has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DuckinthePond has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brihar22 has 0 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User musica101 has 19 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User legodano has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lilt19ad6 has 3 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fourthgear has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Icansaveher has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmustbeacamel has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bswslskd has 3 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User togapepperashi has 16 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User severedxties has 6 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User churchofozzy1 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ageofthefever has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DeusMaxMachina has 19 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chimchooree has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clownpatrol6666 has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yukosan666 has 16 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tehfuture has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iaman00b has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User maneuve has 0 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User erasethesanity has 0 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User davesv has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hotchair has 76 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brb1228 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iiprisma has 6 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User InsaneRose has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User crint has 3 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FreeStuffNotVirus has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User djjeremy has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User richmilnix has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lightandcoffee has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Audio_Dope2 has 10 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clf2008 has 85 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dwtn81 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rroni has 19 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User puresauce35 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gdtek has 21 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Davidless has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kormn has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thampy has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmightbemikey has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gogbone has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xcixxorx has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User leitunggeist has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rblotnicky has 20 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bidynasty has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lpma has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Marxist has 30 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User blubber123 has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User etaylor86 has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Stekel has 31 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User theoddhermit has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SonicRings has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mystro has 4 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Kozi~NO_big_downloads has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catpunx has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheTrillT-Rex has 3 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AfterlinePerformed has 7 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User imagines2014 has 7 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ta_face_esti has 27 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gombers04 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User YJWMY91Bk has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GeorgeHatesFun has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FAUST has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Reemerge6193 has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User EJW has 11 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geetboy has 10 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lava_Lamp918 has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User save20families has 12 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User petejwhizz has 19 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Bian has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User misticgris has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elipsedeclipse has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BeatscapeLounge has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BurakkuKami has 17 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bounceman has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guineahorn has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BigBallls has 10 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kerobaros has 217 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User onenightinkyoto has 83 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User soulshookt has 42 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ZmbyMowse has 300 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BhrisBenoit has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bigkahuna30267 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _tyrese_ has 0 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catawawa has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JTE1817 has 16 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lulzcat773 has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User begets has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User batmaster has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TerryDavis has 10 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User felonraper has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Chicken_Biscuit has 20 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rat5150 has 6 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Snow~ has 6 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User macro has 59 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User {{{d(*_*)b}}} has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dubs. has 4 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimmydean6969 has 7 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sataNathan has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tsubasa has 30 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User von_ubelmann has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User conyeezy has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reverwinsskt has 4 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User h23234 has 10 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dioestar has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreem has 6 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User formerbusboy has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User parasomia has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nexuszeero has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SoulHunterWolf has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AwesomeAustn has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FileGod has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minimum has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cy1der has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MusicLarry has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Finnyboy has 19 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User digimotong has 32 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User blokmotion has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jaxxthesynth has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grapeman69 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yort has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User admiran has 19 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SlowDay has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Basiv has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TransRights! has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User denali83 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GoldenDeus has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ValdikSS2 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User twiztor has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User e1psy has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sheikhyerbootai has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User senhor_roar has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GentooIsBased has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tbdbitl1 has 18 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MyMindIsBlowing has 0 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User OPIOM has 0 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Borkus McJorkus has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oblama has 150 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BladeRelic has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ngadyang has 7 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User XY0 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stormcynk has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User 3030 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Damon O'Manic!!! has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Datasmurf has 8 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Sam-jam has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chickensandwich has 21 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reemo4250 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Derpus has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User estebanz has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User amd90 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nixgoat has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MacchiaLux has 3 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Krullakake has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ParadiseLost has 16 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User +-+ has 3 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User RandomZero has 38 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User filfilfil has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pup has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kgapak has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sumb0dy has 22 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User organic_rust has 99 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User beatner has 0 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ReadyPlayer420 has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User The Locutus has 14 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kino_ has 17 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lisandrx has 11 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User awesem has 16 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User drewbagelz has 4 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User trek7008 has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hvyhnds has 9 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User murdercitydevil has 4 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kenjaman has 92 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User raremustache has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tunnik has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stinkyrat has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gradylives3 has 18 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User LordFerite has 35 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zinnac has 19 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JDogHere has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User noarmpits has 17 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DuckinthePond#2 has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User assaub has 7 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User takeourcarsnow has 5 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Handbanana has 0 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thlayli_x has 28 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User KingGomi has 2 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gustave1984 has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alilstinky has 15 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User web-graffiti has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lckdscl has 1 files +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User up4mayhem has 29 files +2025-07-13 21:27:47 - newmusic.soulseek_client - INFO - _process_search_responses:399 - Found 210 individual tracks and 230 albums +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:400 - Album detection details: 440 potential albums processed +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: superluminaire/music/Kendrick Lamar/Black Panther - The Album (Music From and Inspired By) [2018] -> 14 tracks +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: gandr003/@@ffbhe/MUSIC/Released/Kendrick Lamar/[2018] Black Panther The Album (music from and inspired by) -> 14 tracks +2025-07-13 21:27:47 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: Biotwist/@@mxdnq/soundworks/full albums/emenem/Eminem - Marshal Mathers LP 2 - MMLP2 [2013-Album] WEB-DL Leak Mp3 NimitMak SilverRG -> 1 tracks +2025-07-13 21:27:47 - newmusic.soulseek_client - INFO - search:617 - Processed results: 210 tracks, 230 albums +2025-07-13 21:27:47 - newmusic.soulseek_client - INFO - search:621 - Early termination: Found 250 responses, stopping search +2025-07-13 21:27:47 - newmusic.soulseek_client - INFO - search:632 - Search completed. Final results: 210 tracks and 230 albums for query: kendrick album +2025-07-13 21:27:50 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Broque Main +2025-07-13 21:27:52 - newmusic.soulseek_client - INFO - search:551 - Starting search for: 'kendrick humble' +2025-07-13 21:27:52 - newmusic.soulseek_client - DEBUG - search:561 - Search data: {'searchText': 'kendrick humble', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:27:52 - newmusic.soulseek_client - DEBUG - search:562 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:27:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:27:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:27:52 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'searchText': 'kendrick humble', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:27:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:27:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: {"fileCount":0,"id":"a3af037b-ac98-49c4-b848-ffc345193652","isComplete":false,"lockedFileCount":0,"responseCount":0,"responses":[],"searchText":"kendrick humble","startedAt":"2025-07-14T04:27:52.9871255Z","state":"InProgress","token":3698}... +2025-07-13 21:27:52 - newmusic.soulseek_client - INFO - search:575 - Search initiated with ID: a3af037b-ac98-49c4-b848-ffc345193652 +2025-07-13 21:27:52 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 1/20) - elapsed: 0.0s +2025-07-13 21:27:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/a3af037b-ac98-49c4-b848-ffc345193652/responses +2025-07-13 21:27:53 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:27:53 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:27:53 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: []... +2025-07-13 21:27:54 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 2/20) - elapsed: 1.5s +2025-07-13 21:27:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/a3af037b-ac98-49c4-b848-ffc345193652/responses +2025-07-13 21:27:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"fileCount":1,"files":[{"code":1,"extension":"","filename":"@@nlbqv\\Music\\Kendrick Lamar - DAMN\\08. HUMBLE..mp3","size":7183668,"isLocked":false}],"hasFreeUploadSlot":true,"lockedFileCount":0,"lockedFiles":[],"queueLength":63,"token":3698,"uploadSpeed":7314965,"username":"alitamachine"},{"fileCount":1,"files":[{"bitRate":320,"code":1,"extension":"","filename":"@@qmbeg\\Compilations [mp3]\\Now That's What I Call Music\\[2017] Now That's What I Call Music! 97 {2017 album; compilation}\\2-10 K... +2025-07-13 21:27:55 - newmusic.soulseek_client - INFO - search:597 - Found 250 new responses (250 total) at 1.5s +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:345 - Processing 250 user responses +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alitamachine has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hotchair has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geraldo876 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iaman00b has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reverwinsskt has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User theoddhermit has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User soyburger has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dioestar has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User EJW has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BurakkuKami has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gdtek has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Shadiness9250 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tehfuture has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User severedxties has 7 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User parasomia has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User crint has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Krullakake has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lava_Lamp918 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BeatscapeLounge has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User PsychicWulf has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User snigglegros has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TerryDavis has 7 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lilt19ad6 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GetFixedBoi has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fourthgear has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aRandomFurOnSlsk has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bidynasty has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superlozer has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User slsk_d has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheTrillT-Rex has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chimchooree has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thampy has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User save20families has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guineahorn has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Basiv has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User technosux has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stinkyrat has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User vfoxm has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jeskola333 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmustbeacamel has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clf2008 has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DeusMaxMachina has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User slskwarlan has 4 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dunce has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User m00nl1ght98 has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ricardoastley has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User petejwhizz has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User taketheeasyroad has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User IMregoR has 0 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Audio_Dope2 has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User maneuve has 0 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sevenarts has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bigkahuna30267 has 5 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kerobaros has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User legodano has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User imagines2014 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User togapepperashi has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Reemerge6193 has 4 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TransRights! has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kino_ has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nexuszeero has 4 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User YJWMY91Bk has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gogbone has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User {{{d(*_*)b}}} has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User saikazustg has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User denali83 has 5 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fern911 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Marxist has 4 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jshields24 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mystro has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Horizons has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sumb0dy has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Sam-jam has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dezv has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User korusse has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Arsenyte has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iwasinabandonce has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User etaylor86 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SoulHunterWolf has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cktc has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User estebanz has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ellieidb has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User johnny.megaton has 0 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User girlpilled_ has 4 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Bulginess0853 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimmydean6969 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mr.Wilson has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User botsone has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lpma has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lisandrx has 8 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MusicLarry has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gustave1984 has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SlavicFire has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmightbemikey has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JTE1817 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Davidless has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jackPOTjohnny has 7 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bsdsm has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Chicken_Biscuit has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User macro has 8 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chewi105 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User conyeezy has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bounceman has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Finnyboy has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Jerooome has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AwesomeAustn has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stiffuper has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User murdercitydevil has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User digixdestined has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User megaera has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User galmteamv2 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zecho has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User djinn415 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User admiran has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wavvee has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheFakeRws has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catawawa has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User n0th1ngn3ss has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User leitunggeist has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ParadiseLost has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AfterlinePerformed has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User casio-official has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ppougj has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User drewbagelz has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User legodt has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User mxbook2000 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User mmcvoraciousways has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zinnac has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User CaptainNoFuture has 0 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User CleanupCrew has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User onenightinkyoto has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User detroit dogs has 0 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User felonraper has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oblama has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tbdbitl1 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minimum has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rocket--77 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tunnik has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cy1der has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SassyBouquet has 0 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Knight_Bewion has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User web-graffiti has 6 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Haruoki has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Deadbolt1209 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Byoiz has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dwtn81 has 4 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GentooIsBased has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Musicmaster2023 has 300 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alvanchip has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rat5150 has 10 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fromthesluicefortheduece has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lulzcat773 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fomenting has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kirkaug has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User mrm has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Bian has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User socialmusicred has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kobeyads has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User shytokyo has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User h23234 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alexmorehellyes has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zaniel has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hhoff2002 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GetLuckyB3 has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User privacydied has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dubs. has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User keybored has 0 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User firiusfoxx has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kenjaman has 6 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pup has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iwantmytwodollars has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rancid88 has 3 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User breakone9r has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lord_Anakyn has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jackohdee has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kenjom78 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hoodieninja has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bajolo has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User darkoutsider has 10 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User begets has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User +-+ has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geetboy has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clowninonsight has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SHB420 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User mickstilwell has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jkians21 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GoldenDeus has 4 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User awesem has 4 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pirandellokruger has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User heike_ghost has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gombers04 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pickledeyebrowed has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User RandomZero has 4 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User mysticgarden has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User runescape has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreem has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ferallindsay has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User vlorkroombah has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dangermoose1006 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tyesoup has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User OPIOM has 0 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wallywubox has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User glitchris has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User albiemedia has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Harrys Hood has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cinstitute2 has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zerw has 6 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rikki has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DJViper has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User latent has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xY7pQ2zW9aK5bJ has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yauch701 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BigBallls has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User michaelwave has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User KDaM1 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minnis has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User notbdz has 0 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bobbytragicradio has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Rick6067 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ddffff has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User coolasbreeze has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mooshy has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User takeourcarsnow has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User slushie3008 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User mcspanx has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alicenutter has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User werty892 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User trinsic has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ooepui18 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Corizon has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User spartantime has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ReadyPlayer420 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bedriddenaquanaut has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User exphlosion has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Highsteppa has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User digimotong has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User philosophie has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oofie has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User blueness5555 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dressa1112 has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bstroszek has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BladeRelic has 0 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User slevemcdicheal has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Wookiee has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guipiwan has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User RSIZZLE has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Depravity has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User icecold has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User mwav has 2 files +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wewoo has 1 files +2025-07-13 21:27:55 - newmusic.soulseek_client - INFO - _process_search_responses:399 - Found 492 individual tracks and 62 albums +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:400 - Album detection details: 551 potential albums processed +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: alitamachine/@@nlbqv/Music/Kendrick Lamar - DAMN -> 1 tracks +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: hotchair/@@qmbeg/Compilations [mp3]/Now That's What I Call Music/[2017] Now That's What I Call Music! 97 {2017 album; compilation} -> 1 tracks +2025-07-13 21:27:55 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: geraldo876/music/Kendrick Lamar - 16-24bit, 44khz/DAMN. - 24bit, 48khz (Vinyl) -> 1 tracks +2025-07-13 21:27:55 - newmusic.soulseek_client - INFO - search:617 - Processed results: 492 tracks, 62 albums +2025-07-13 21:27:55 - newmusic.soulseek_client - INFO - search:621 - Early termination: Found 250 responses, stopping search +2025-07-13 21:27:55 - newmusic.soulseek_client - INFO - search:632 - Search completed. Final results: 492 tracks and 62 albums for query: kendrick humble +2025-07-13 21:27:57 - newmusic.spotify_client - INFO - get_user_playlists:140 - Retrieved 7 playlists +2025-07-13 21:28:08 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: storage\SLSK\Kendrick Lamar - HUMBLE.flac from web-graffiti (size: 19997815) +2025-07-13 21:28:08 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': 'storage\\SLSK\\Kendrick Lamar - HUMBLE.flac', 'size': 19997815, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:28:08 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/web-graffiti +2025-07-13 21:28:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/web-graffiti +2025-07-13 21:28:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:28:08 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': 'storage\\SLSK\\Kendrick Lamar - HUMBLE.flac', 'size': 19997815, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:28:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:28:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:28:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:28:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed... +2025-07-13 21:28:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:28:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:28:11 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: storage\SLSK\Kendrick Lamar - HUMBLE.flac from web-graffiti +2025-07-13 21:28:11 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:28:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:28:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:28:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:28:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed... +2025-07-13 21:28:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:28:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:28:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:28:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed... +2025-07-13 21:28:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:28:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:28:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:28:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed... +2025-07-13 21:28:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:28:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:28:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:28:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed... +2025-07-13 21:28:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:28:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:28:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:28:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed... +2025-07-13 21:28:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:28:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:28:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:28:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed... +2025-07-13 21:28:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:28:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:28:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:28:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed... +2025-07-13 21:28:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:28:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:28:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:28:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed... +2025-07-13 21:28:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:28:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:28:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:28:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"5266a112-e9c5-4818-801e-f6e47eeb5d27","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-06. Poetic Justice (feat. Drake).flac","size":31364127,"startOffset":0,"state":"Completed, Succeeded","stateDescription":"Completed... +2025-07-13 21:30:30 - newmusic.soulseek_client - DEBUG - clear_all_completed_downloads:890 - Clearing all completed downloads with endpoint: transfers/downloads/all/completed +2025-07-13 21:30:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/all/completed +2025-07-13 21:30:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:30:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 21:30:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:30:30 - newmusic.soulseek_client - INFO - clear_all_completed_downloads:895 - Successfully cleared all completed downloads from slskd +2025-07-13 21:30:34 - newmusic.main - INFO - closeEvent:176 - Closing application... +2025-07-13 21:30:34 - newmusic.main - INFO - closeEvent:181 - Cleaning up Downloads page threads... +2025-07-13 21:30:34 - newmusic.main - INFO - closeEvent:186 - Stopping status monitoring thread... +2025-07-13 21:30:36 - newmusic.main - INFO - closeEvent:191 - Closing Soulseek client... +2025-07-13 21:30:36 - newmusic.main - INFO - closeEvent:197 - Application closed successfully +2025-07-13 21:36:14 - newmusic - INFO - setup_logging:57 - Logging initialized with level: DEBUG +2025-07-13 21:36:14 - newmusic.main - INFO - main:211 - Starting NewMusic application +2025-07-13 21:36:14 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 21:36:14 - newmusic.plex_client - INFO - _find_music_library:98 - Found music library: Music +2025-07-13 21:36:14 - newmusic.plex_client - INFO - _setup_client:84 - Successfully connected to Plex server: PLEX-MACHINE +2025-07-13 21:36:14 - newmusic.soulseek_client - INFO - _setup_client:220 - Soulseek client configured with slskd at http://localhost:5030 +2025-07-13 21:36:14 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 21:36:15 - newmusic.main - INFO - change_page:163 - Changed to page: dashboard +2025-07-13 21:36:15 - newmusic.main - INFO - setup_media_player_connections:150 - Media player connections established between sidebar and downloads page +2025-07-13 21:36:16 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Aether +2025-07-13 21:36:16 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Favorite Artists +2025-07-13 21:36:16 - newmusic.main - INFO - change_page:163 - Changed to page: downloads +2025-07-13 21:36:18 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Brittnea +2025-07-13 21:36:19 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Baleigh +2025-07-13 21:36:21 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Extra Music +2025-07-13 21:36:21 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Maggi Main +2025-07-13 21:36:21 - newmusic.soulseek_client - INFO - search:551 - Starting search for: 'Kendrick Album' +2025-07-13 21:36:21 - newmusic.soulseek_client - DEBUG - search:561 - Search data: {'searchText': 'Kendrick Album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:36:21 - newmusic.soulseek_client - DEBUG - search:562 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:36:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:36:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:36:21 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'searchText': 'Kendrick Album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:36:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:36:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: {"fileCount":0,"id":"6d3d54e2-dc8c-4f73-ade4-0cbe20f998f4","isComplete":false,"lockedFileCount":0,"responseCount":0,"responses":[],"searchText":"Kendrick Album","startedAt":"2025-07-14T04:36:22.2051715Z","state":"InProgress","token":3712}... +2025-07-13 21:36:22 - newmusic.soulseek_client - INFO - search:575 - Search initiated with ID: 6d3d54e2-dc8c-4f73-ade4-0cbe20f998f4 +2025-07-13 21:36:22 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 1/20) - elapsed: 0.0s +2025-07-13 21:36:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/6d3d54e2-dc8c-4f73-ade4-0cbe20f998f4/responses +2025-07-13 21:36:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:36:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:36:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: []... +2025-07-13 21:36:23 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 2/20) - elapsed: 1.5s +2025-07-13 21:36:23 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/6d3d54e2-dc8c-4f73-ade4-0cbe20f998f4/responses +2025-07-13 21:36:23 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"fileCount":1,"files":[{"bitDepth":16,"code":1,"extension":"","filename":"@@lbxvi\\+Music\\The Game\\The R.E.D. Album\\02 - The City feat. Kendrick Lamar.flac","length":341,"sampleRate":44100,"size":39768358,"isLocked":false}],"hasFreeUploadSlot":true,"lockedFileCount":0,"lockedFiles":[],"queueLength":0,"token":3712,"uploadSpeed":586846,"username":"adoghello"},{"fileCount":2,"files":[{"bitDepth":16,"code":1,"extension":"","filename":"@@msbxe\\Music\\Kendrick Scott Oracle\\Conviction (Album)\\0... +2025-07-13 21:36:24 - newmusic.soulseek_client - INFO - search:597 - Found 250 new responses (250 total) at 1.5s +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:345 - Processing 250 user responses +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User adoghello has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User relaxedcrab has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User technosux has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User snigglegros has 9 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreamer has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User crint has 3 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User The Locutus has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmustbeacamel has 15 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dekachin has 3 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brb1228 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nightmare_dronemk12 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User djjeremy has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ricardoastley has 4 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User musica101 has 19 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jeskola333 has 4 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guppies16 has 3 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User legodano has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User IMregoR has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alitamachine has 17 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geraldo876 has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superlozer has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dunce has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brihar22 has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lilt19ad6 has 3 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User erasethesanity has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xcixxorx has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fourthgear has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User vfoxm has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thampy has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User maneuve has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jaxxthesynth has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User churchofozzy1 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User severedxties has 6 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yagoobian has 3 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Icansaveher has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User theoddhermit has 15 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hotchair has 76 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Audio_Dope2 has 10 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User togapepperashi has 16 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tehfuture has 15 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ageofthefever has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fern911 has 4 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yukosan666 has 16 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DeusMaxMachina has 19 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User richmilnix has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User davesv has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sumb0dy has 22 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clf2008 has 85 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User InsaneRose has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lpma has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SlavicFire has 20 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User puresauce35 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dwtn81 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gogbone has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User YJWMY91Bk has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clownpatrol6666 has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User etaylor86 has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User leitunggeist has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elipsedeclipse has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User onenightinkyoto has 83 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wrabbit has 15 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Bian has 15 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bidynasty has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Marxist has 30 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mystro has 4 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User begets has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stormcynk has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User parasomia has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kerobaros has 217 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ta_face_esti has 27 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Reemerge6193 has 15 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lulzcat773 has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User formerbusboy has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User save20families has 12 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreem has 6 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BhrisBenoit has 15 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User von_ubelmann has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SoulHunterWolf has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SonicRings has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gombers04 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GeorgeHatesFun has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User murdercitydevil has 4 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User imagines2014 has 7 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Deadbolt1209 has 15 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User EJW has 11 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User admiran has 19 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Chicken_Biscuit has 20 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User batmaster has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Finnyboy has 19 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmightbemikey has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catawawa has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AfterlinePerformed has 7 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User petejwhizz has 19 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User macro has 59 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User misticgris has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catpunx has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Searcher1975! has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guineahorn has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User twiztor has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reemo4250 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tbdbitl1 has 18 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lossless1024 has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GentooIsBased has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BladeRelic has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Davidless has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User blokmotion has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BigBallls has 10 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User digimotong has 32 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cy1der has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GoldenDeus has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Datasmurf has 8 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _tyrese_ has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nexuszeero has 15 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zinnac has 19 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dubs. has 4 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SxSlka has 16 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TerryDavis has 10 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ParadiseLost has 16 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rat5150 has 6 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User conyeezy has 15 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sheikhyerbootai has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Damon O'Manic!!! has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gustave1984 has 15 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User OPIOM has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reverwinsskt has 4 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minimum has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User denali83 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User eazy4me has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MacchiaLux has 3 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User XY0 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chickensandwich has 21 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MyMindIsBlowing has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User takeourcarsnow has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pup has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User amd90 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User 3030 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BeatscapeLounge has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User awesem has 16 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gdtek has 21 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Stekel has 31 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tunnik has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User filfilfil has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheTrillT-Rex has 3 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iaman00b has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User estebanz has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lckdscl has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Basiv has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User drewbagelz has 4 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User woundedflesh has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Pauper1722 has 236 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User KingGomi has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thlayli_x has 28 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stinkyrat has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User v1r2l2k has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alilstinky has 15 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ValdikSS2 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User visions has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MusicLarry has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User {{{d(*_*)b}}} has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User h23234 has 10 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Handbanana has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tuliomajit1992 has 28 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fakedbatman has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kgapak has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BurakkuKami has 17 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User beatner has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dioestar has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User raremustache has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lord_Anakyn has 37 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _kyle_1 has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JDogHere has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sataNathan has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Nzd has 7 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimmydean6969 has 7 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FLASHBACK6070 has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bigkahuna30267 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ReadyPlayer420 has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User RockCartel has 4 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User coolasbreeze has 46 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rainking has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User felonraper has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User berts1404 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wallywubox has 13 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bounceman has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User casio-official has 4 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DoctorLove has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User assaub has 7 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User breakone9r has 9 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pugacioff has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User LordFerite has 35 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cktc has 50 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Krullakake has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User marx2k has 12 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sakurako has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Musicmaster2023 has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lll3nto has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lascar972 has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dressa1112 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dandemite has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rikki has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Sam-jam has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Jerooome has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nick_in_mersey3 has 16 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gradylives3 has 18 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cmdline9865421 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nxxRotten has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rKAYo has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TitanX420 has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oblama has 150 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User johnny.megaton has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User noarmpits has 17 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User campee has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kfs1986 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User khudea has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FileGod has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User michaelwave has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Derpus has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zerw has 17 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kobeyads has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lisandrx has 11 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aRandomFurOnSlsk has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grohl has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User CaptainNoFuture has 0 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User senhor_roar has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bajolo has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User merc248 has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Shadiness9250 has 30 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheFakeRws has 32 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AwesomeAustn has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Foe4 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kino_ has 17 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Fenris has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xY7pQ2zW9aK5bJ has 13 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Afton has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GetFixedBoi has 26 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ferallindsay has 17 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ElessarMP3 has 19 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mole has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SupStu has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rancid88 has 24 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Pagerg has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User +-+ has 3 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mr.Wilson has 15 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User assistantstevie has 16 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User web-graffiti has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User negaome has 14 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lava_Lamp918 has 2 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dio141 has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pickledeyebrowed has 5 files +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minnis has 1 files +2025-07-13 21:36:24 - newmusic.soulseek_client - INFO - _process_search_responses:399 - Found 160 individual tracks and 180 albums +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:400 - Album detection details: 340 potential albums processed +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: adoghello/@@lbxvi/+Music/The Game/The R.E.D. Album -> 1 tracks +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: relaxedcrab/@@msbxe/Music/Kendrick Scott Oracle/Conviction (Album) -> 1 tracks +2025-07-13 21:36:24 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: technosux/@@bnomt/music/P-T/The_Lonely_Island-The_Wack_Album-2013-MTD -> 1 tracks +2025-07-13 21:36:24 - newmusic.soulseek_client - INFO - search:617 - Processed results: 160 tracks, 180 albums +2025-07-13 21:36:24 - newmusic.soulseek_client - INFO - search:621 - Early termination: Found 250 responses, stopping search +2025-07-13 21:36:24 - newmusic.soulseek_client - INFO - search:632 - Search completed. Final results: 160 tracks and 180 albums for query: Kendrick Album +2025-07-13 21:36:26 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Broque Main +2025-07-13 21:36:34 - newmusic.spotify_client - INFO - get_user_playlists:140 - Retrieved 7 playlists +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3 from onenightinkyoto (size: 10950997) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3", 'size': 10950997, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3", 'size': 10950997, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3 from onenightinkyoto (size: 12433677) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3", 'size': 12433677, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3", 'size': 12433677, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-03 - Kendrick Lamar - Backseat Freestyle.mp3 from onenightinkyoto (size: 8511116) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-03 - Kendrick Lamar - Backseat Freestyle.mp3', 'size': 8511116, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-03 - Kendrick Lamar - Backseat Freestyle.mp3', 'size': 8511116, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3 from onenightinkyoto (size: 12986426) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3', 'size': 12986426, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3', 'size': 12986426, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-05 - Kendrick Lamar - Money Trees.mp3 from onenightinkyoto (size: 15481650) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-05 - Kendrick Lamar - Money Trees.mp3', 'size': 15481650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-05 - Kendrick Lamar - Money Trees.mp3', 'size': 15481650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-06 - Kendrick Lamar - Poetic Justice.mp3 from onenightinkyoto (size: 12011544) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3', 'size': 12011544, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3', 'size': 12011544, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-07 - Kendrick Lamar - good kid.mp3 from onenightinkyoto (size: 8569610) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-07 - Kendrick Lamar - good kid.mp3', 'size': 8569610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-07 - Kendrick Lamar - good kid.mp3', 'size': 8569610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-08 - Kendrick Lamar - m.A.A.d city.mp3 from onenightinkyoto (size: 14010434) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-08 - Kendrick Lamar - m.A.A.d city.mp3', 'size': 14010434, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-08 - Kendrick Lamar - m.A.A.d city.mp3', 'size': 14010434, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3 from onenightinkyoto (size: 12557007) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12557007, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12557007, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3 from onenightinkyoto (size: 28948308) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3", 'size': 28948308, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3", 'size': 28948308, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-11 - Kendrick Lamar - Real.mp3 from onenightinkyoto (size: 17741753) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-11 - Kendrick Lamar - Real.mp3', 'size': 17741753, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-11 - Kendrick Lamar - Real.mp3', 'size': 17741753, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-12 - Kendrick Lamar - Compton.mp3 from onenightinkyoto (size: 9929053) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3', 'size': 9929053, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3', 'size': 9929053, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-01 - Kendrick Lamar - The Recipe.mp3 from onenightinkyoto (size: 14132683) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-01 - Kendrick Lamar - The Recipe.mp3', 'size': 14132683, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-01 - Kendrick Lamar - The Recipe.mp3', 'size': 14132683, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-02 - Kendrick Lamar - Black Boy Fly.mp3 from onenightinkyoto (size: 11172461) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3', 'size': 11172461, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3', 'size': 11172461, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-03 - Kendrick Lamar - Now or Never.mp3 from onenightinkyoto (size: 10258217) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-03 - Kendrick Lamar - Now or Never.mp3', 'size': 10258217, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-03 - Kendrick Lamar - Now or Never.mp3', 'size': 10258217, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-04 - Kendrick Lamar - County Building Blues.mp3 from onenightinkyoto (size: 10333424) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-04 - Kendrick Lamar - County Building Blues.mp3', 'size': 10333424, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-04 - Kendrick Lamar - County Building Blues.mp3', 'size': 10333424, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3 from onenightinkyoto (size: 11150279) +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3", 'size': 11150279, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3", 'size': 11150279, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3 from onenightinkyoto (size: 12599849) +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3', 'size': 12599849, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3', 'size': 12599849, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:11 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3 from onenightinkyoto +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:11 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-06 - Kendrick Lamar - Poetic Justice.mp3 from onenightinkyoto +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:11 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3 from onenightinkyoto +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:11 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3 from onenightinkyoto +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:11 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-12 - Kendrick Lamar - Compton.mp3 from onenightinkyoto +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:11 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-11 - Kendrick Lamar - Real.mp3 from onenightinkyoto +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:11 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-02 - Kendrick Lamar - Black Boy Fly.mp3 from onenightinkyoto +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:11 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3 from onenightinkyoto +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:11 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-03 - Kendrick Lamar - Backseat Freestyle.mp3 from onenightinkyoto +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:11 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-01 - Kendrick Lamar - The Recipe.mp3 from onenightinkyoto +2025-07-13 21:37:11 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:12 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3 from onenightinkyoto +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:12 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-05 - Kendrick Lamar - Money Trees.mp3 from onenightinkyoto +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:12 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-03 - Kendrick Lamar - Now or Never.mp3 from onenightinkyoto +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:12 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3 from onenightinkyoto +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:12 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-08 - Kendrick Lamar - m.A.A.d city.mp3 from onenightinkyoto +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:12 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3 from onenightinkyoto +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:12 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-04 - Kendrick Lamar - County Building Blues.mp3 from onenightinkyoto +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:37:12 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-07 - Kendrick Lamar - good kid.mp3 from onenightinkyoto +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:15 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:15 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:23 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:23 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:25 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:25 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:27 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:27 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:31 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:31 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:35 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:35 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:37 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:37 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:39 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:39 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:41 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:41 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:43 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:43 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:44 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:44 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:45 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:45 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:46 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:46 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:48 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:48 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:50 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:50 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:51 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:51 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:52 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:52 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:53 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:53 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:54 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:54 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:37:58 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:37:58 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:37:59 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:37:59 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:00 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:00 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:01 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:01 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:02 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:02 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:03 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:03 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:04 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:04 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:05 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:05 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:07 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:07 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:08 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:08 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:09 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:09 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:10 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:10 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:12 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:12 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:14 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:14 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:15 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:15 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:16 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:16 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:18 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:18 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:20 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:20 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:22 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:22 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:23 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:23 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:24 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:24 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:25 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:25 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:26 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:26 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:27 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:27 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:31 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:31 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:32 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:32 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:34 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:34 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:35 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:35 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:37 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:37 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:38 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:38 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:39 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:39 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:40 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:40 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:41 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:41 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:42 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:38:42 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:43 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:38:43 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"ssb497","directories":[{"directory":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city","fileCount":9,"files":[{"id":"e67df739-e8b0-4092-8ff6-b3939ca13735","username":"ssb497","direction":"Download","filename":"@@bodnl\\Audio - Music\\Kendrick Lamar\\Kendrick Lamar - Album - 2012 - good kid, m.A.A.d city\\1-13. The Recipe (feat. Dr. Dre) [Bonus Track].flac","size":42531085,"startOffset":0,"state":"Completed, Succeeded","stateDescription"... +2025-07-13 21:38:56 - newmusic.soulseek_client - DEBUG - clear_all_completed_downloads:890 - Clearing all completed downloads with endpoint: transfers/downloads/all/completed +2025-07-13 21:38:56 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/all/completed +2025-07-13 21:38:56 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:38:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 21:38:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:38:56 - newmusic.soulseek_client - INFO - clear_all_completed_downloads:895 - Successfully cleared all completed downloads from slskd +2025-07-13 21:42:47 - newmusic.main - INFO - closeEvent:176 - Closing application... +2025-07-13 21:42:47 - newmusic.main - INFO - closeEvent:181 - Cleaning up Downloads page threads... +2025-07-13 21:42:47 - newmusic.main - INFO - closeEvent:186 - Stopping status monitoring thread... +2025-07-13 21:42:49 - newmusic.main - INFO - closeEvent:191 - Closing Soulseek client... +2025-07-13 21:42:49 - newmusic.main - INFO - closeEvent:197 - Application closed successfully +2025-07-13 21:43:18 - newmusic - INFO - setup_logging:57 - Logging initialized with level: DEBUG +2025-07-13 21:43:18 - newmusic.main - INFO - main:211 - Starting NewMusic application +2025-07-13 21:43:19 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 21:43:19 - newmusic.plex_client - INFO - _find_music_library:98 - Found music library: Music +2025-07-13 21:43:19 - newmusic.plex_client - INFO - _setup_client:84 - Successfully connected to Plex server: PLEX-MACHINE +2025-07-13 21:43:19 - newmusic.soulseek_client - INFO - _setup_client:220 - Soulseek client configured with slskd at http://localhost:5030 +2025-07-13 21:43:19 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 21:43:20 - newmusic.main - INFO - change_page:163 - Changed to page: dashboard +2025-07-13 21:43:20 - newmusic.main - INFO - setup_media_player_connections:150 - Media player connections established between sidebar and downloads page +2025-07-13 21:43:20 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Aether +2025-07-13 21:43:20 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Favorite Artists +2025-07-13 21:43:22 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Brittnea +2025-07-13 21:43:23 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Baleigh +2025-07-13 21:43:23 - newmusic.main - INFO - change_page:163 - Changed to page: downloads +2025-07-13 21:43:25 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Extra Music +2025-07-13 21:43:25 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Maggi Main +2025-07-13 21:43:28 - newmusic.soulseek_client - INFO - search:551 - Starting search for: 'Kendrick album' +2025-07-13 21:43:28 - newmusic.soulseek_client - DEBUG - search:561 - Search data: {'searchText': 'Kendrick album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:43:28 - newmusic.soulseek_client - DEBUG - search:562 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:43:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:43:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:28 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'searchText': 'Kendrick album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:43:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:43:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: {"fileCount":0,"id":"1113687e-c850-4083-a352-d153f51fb5b3","isComplete":false,"lockedFileCount":0,"responseCount":0,"responses":[],"searchText":"Kendrick album","startedAt":"2025-07-14T04:43:28.2763614Z","state":"InProgress","token":3788}... +2025-07-13 21:43:28 - newmusic.soulseek_client - INFO - search:575 - Search initiated with ID: 1113687e-c850-4083-a352-d153f51fb5b3 +2025-07-13 21:43:28 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 1/20) - elapsed: 0.0s +2025-07-13 21:43:28 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/1113687e-c850-4083-a352-d153f51fb5b3/responses +2025-07-13 21:43:28 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:43:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: []... +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 2/20) - elapsed: 1.5s +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/1113687e-c850-4083-a352-d153f51fb5b3/responses +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"fileCount":1,"files":[{"bitDepth":16,"code":1,"extension":"","filename":"@@lbxvi\\+Music\\The Game\\The R.E.D. Album\\02 - The City feat. Kendrick Lamar.flac","length":341,"sampleRate":44100,"size":39768358,"isLocked":false}],"hasFreeUploadSlot":true,"lockedFileCount":0,"lockedFiles":[],"queueLength":0,"token":3788,"uploadSpeed":586846,"username":"adoghello"},{"fileCount":5,"files":[{"bitRate":320,"code":1,"extension":"","filename":"@@sqmcr\\Music\\Soulseek\\Black Panther The Album\\01 black ... +2025-07-13 21:43:30 - newmusic.soulseek_client - INFO - search:597 - Found 249 new responses (249 total) at 1.5s +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:345 - Processing 249 user responses +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User adoghello has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elendarsilvermoon has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User crint has 3 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User PsychicWulf has 16 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User relaxedcrab has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User technosux has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmustbeacamel has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iaman00b has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User The Locutus has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geraldo876 has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jeskola333 has 4 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dekachin has 3 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superlozer has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User musica101 has 19 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alitamachine has 17 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dunce has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User djjeremy has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brihar22 has 0 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gdtek has 21 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clownpatrol6666 has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fourthgear has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User maneuve has 0 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreamer has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User snigglegros has 9 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User legodano has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lilt19ad6 has 3 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wrabbit has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nightmare_dronemk12 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DeusMaxMachina has 19 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AwesomeAustn has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User theoddhermit has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yukosan666 has 16 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chimchooree has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Icansaveher has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Reemerge6193 has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fern911 has 4 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guppies16 has 3 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yagoobian has 3 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User erasethesanity has 0 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User IMregoR has 0 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tehfuture has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreem has 6 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clf2008 has 85 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User assistantstevie has 16 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ricardoastley has 4 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User etaylor86 has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User severedxties has 6 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sevenarts has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Audio_Dope2 has 10 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brb1228 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User puresauce35 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BeatscapeLounge has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User vfoxm has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gogbone has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xcixxorx has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guineahorn has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User togapepperashi has 16 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bidynasty has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SlavicFire has 20 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User save20families has 12 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheTrillT-Rex has 3 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AfterlinePerformed has 7 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grapeman69 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FileGod has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hotchair has 76 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thampy has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JTE1817 has 16 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User macro has 59 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chickensandwich has 21 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User churchofozzy1 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sumb0dy has 22 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Marxist has 30 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kerobaros has 217 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimmydean6969 has 7 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User parasomia has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User davesv has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User felonraper has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GeorgeHatesFun has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BurakkuKami has 17 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmightbemikey has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User YJWMY91Bk has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jaxxthesynth has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Stekel has 31 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mystro has 4 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tsubasa has 30 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bigkahuna30267 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User XY0 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User InsaneRose has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User richmilnix has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stormcynk has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lpma has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catawawa has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fakedbatman has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dwtn81 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ta_face_esti has 27 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cy1der has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User batmaster has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User petejwhizz has 19 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Shadiness9250 has 30 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lulzcat773 has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User von_ubelmann has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User leitunggeist has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User eazy4me has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User EJW has 11 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TerryDavis has 10 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Chicken_Biscuit has 20 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Deadbolt1209 has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User murdercitydevil has 4 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User admiran has 19 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Basiv has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Searcher1975! has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gombers04 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SonicRings has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User twiztor has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SoulHunterWolf has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dioestar has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Datasmurf has 8 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User conyeezy has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User begets has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Sam-jam has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TransRights! has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catpunx has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kino_ has 17 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User onenightinkyoto has 83 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GentooIsBased has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User misticgris has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MusicLarry has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User h23234 has 10 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Davidless has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nexuszeero has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Krullakake has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _tyrese_ has 0 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Finnyboy has 19 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User blokmotion has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zinnac has 19 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lossless1024 has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lava_Lamp918 has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elipsedeclipse has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reemo4250 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aRandomFurOnSlsk has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MacchiaLux has 3 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reverwinsskt has 4 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BigBallls has 10 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User {{{d(*_*)b}}} has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User awesem has 16 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ParadiseLost has 16 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dubs. has 4 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User drewbagelz has 4 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sheikhyerbootai has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GoldenDeus has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tbdbitl1 has 18 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Derpus has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lisandrx has 11 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bounceman has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User senhor_roar has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User beatner has 0 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User denali83 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User 3030 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ReadyPlayer420 has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User johnny.megaton has 0 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BladeRelic has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rat5150 has 6 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User amd90 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User LordFerite has 35 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oblama has 150 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User +-+ has 3 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gradylives3 has 18 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Pauper1722 has 236 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minimum has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheFakeRws has 32 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grohl has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pup has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User visions has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lckdscl has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pugacioff has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alilstinky has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User m00nl1ght98 has 4 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BhrisBenoit has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ValdikSS2 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stinkyrat has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User formerbusboy has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gustave1984 has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User OPIOM has 0 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User breakone9r has 9 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tunnik has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SxSlka has 16 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User estebanz has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MyMindIsBlowing has 0 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GetFixedBoi has 26 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kenjaman has 92 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User assaub has 7 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ferallindsay has 17 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User coolasbreeze has 46 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thlayli_x has 28 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User raremustache has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mr.Wilson has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Jerooome has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User v1r2l2k has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sakurako has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Damon O'Manic!!! has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lord_Anakyn has 37 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Handbanana has 0 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kgapak has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User filfilfil has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sataNathan has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rancid88 has 24 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FLASHBACK6070 has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cktc has 50 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ElessarMP3 has 19 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User berts1404 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wallywubox has 13 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User monsterpco has 3 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JDogHere has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User takeourcarsnow has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aa_anima has 15 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rainking has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User noarmpits has 17 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rikki has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TitanX420 has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User merc248 has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nick_in_mersey3 has 16 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User marx2k has 12 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lost&forgotten. has 3 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SnowFish24 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dandemite has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User korusse has 72 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SkinnyPete has 62 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kfs1986 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lascar972 has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User casio-official has 4 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bajolo has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dio141 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pickledeyebrowed has 5 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zerw has 17 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Foe4 has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User khudea has 0 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stilbruch has 3 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User piggles has 3 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User woundedflesh has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stiffuper has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kobeyads has 0 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SupStu has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User CaptainNoFuture has 0 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User michaelwave has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mole has 2 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xY7pQ2zW9aK5bJ has 13 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nxxRotten has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Afton has 14 files +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Fenris has 1 files +2025-07-13 21:43:30 - newmusic.soulseek_client - INFO - _process_search_responses:399 - Found 168 individual tracks and 208 albums +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:400 - Album detection details: 376 potential albums processed +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: adoghello/@@lbxvi/+Music/The Game/The R.E.D. Album -> 1 tracks +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: elendarsilvermoon/@@sqmcr/Music/Soulseek/Black Panther The Album -> 5 tracks +2025-07-13 21:43:30 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: PsychicWulf/@@tiobk/Music Albums/Drake - Take Care (Deluxe Version) [Official Album][CD-Rip] -> 1 tracks +2025-07-13 21:43:30 - newmusic.soulseek_client - INFO - search:617 - Processed results: 168 tracks, 208 albums +2025-07-13 21:43:30 - newmusic.soulseek_client - INFO - search:621 - Early termination: Found 249 responses, stopping search +2025-07-13 21:43:30 - newmusic.soulseek_client - INFO - search:632 - Search completed. Final results: 168 tracks and 208 albums for query: Kendrick album +2025-07-13 21:43:31 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Broque Main +2025-07-13 21:43:38 - newmusic.spotify_client - INFO - get_user_playlists:140 - Retrieved 7 playlists +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3 from onenightinkyoto (size: 10950997) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3", 'size': 10950997, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3", 'size': 10950997, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3 from onenightinkyoto (size: 12433677) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3", 'size': 12433677, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3", 'size': 12433677, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-03 - Kendrick Lamar - Backseat Freestyle.mp3 from onenightinkyoto (size: 8511116) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-03 - Kendrick Lamar - Backseat Freestyle.mp3', 'size': 8511116, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-03 - Kendrick Lamar - Backseat Freestyle.mp3', 'size': 8511116, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3 from onenightinkyoto (size: 12986426) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3', 'size': 12986426, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3', 'size': 12986426, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-05 - Kendrick Lamar - Money Trees.mp3 from onenightinkyoto (size: 15481650) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-05 - Kendrick Lamar - Money Trees.mp3', 'size': 15481650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-05 - Kendrick Lamar - Money Trees.mp3', 'size': 15481650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-06 - Kendrick Lamar - Poetic Justice.mp3 from onenightinkyoto (size: 12011544) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3', 'size': 12011544, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3', 'size': 12011544, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-07 - Kendrick Lamar - good kid.mp3 from onenightinkyoto (size: 8569610) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-07 - Kendrick Lamar - good kid.mp3', 'size': 8569610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-07 - Kendrick Lamar - good kid.mp3', 'size': 8569610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-08 - Kendrick Lamar - m.A.A.d city.mp3 from onenightinkyoto (size: 14010434) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-08 - Kendrick Lamar - m.A.A.d city.mp3', 'size': 14010434, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-08 - Kendrick Lamar - m.A.A.d city.mp3', 'size': 14010434, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3 from onenightinkyoto (size: 12557007) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12557007, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12557007, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3 from onenightinkyoto (size: 28948308) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3", 'size': 28948308, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3", 'size': 28948308, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-11 - Kendrick Lamar - Real.mp3 from onenightinkyoto (size: 17741753) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-11 - Kendrick Lamar - Real.mp3', 'size': 17741753, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-11 - Kendrick Lamar - Real.mp3', 'size': 17741753, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-12 - Kendrick Lamar - Compton.mp3 from onenightinkyoto (size: 9929053) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3', 'size': 9929053, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3', 'size': 9929053, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-01 - Kendrick Lamar - The Recipe.mp3 from onenightinkyoto (size: 14132683) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-01 - Kendrick Lamar - The Recipe.mp3', 'size': 14132683, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-01 - Kendrick Lamar - The Recipe.mp3', 'size': 14132683, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-02 - Kendrick Lamar - Black Boy Fly.mp3 from onenightinkyoto (size: 11172461) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3', 'size': 11172461, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3', 'size': 11172461, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-03 - Kendrick Lamar - Now or Never.mp3 from onenightinkyoto (size: 10258217) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-03 - Kendrick Lamar - Now or Never.mp3', 'size': 10258217, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-03 - Kendrick Lamar - Now or Never.mp3', 'size': 10258217, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-04 - Kendrick Lamar - County Building Blues.mp3 from onenightinkyoto (size: 10333424) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-04 - Kendrick Lamar - County Building Blues.mp3', 'size': 10333424, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-04 - Kendrick Lamar - County Building Blues.mp3', 'size': 10333424, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3 from onenightinkyoto (size: 11150279) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3", 'size': 11150279, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3", 'size': 11150279, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3 from onenightinkyoto (size: 12599849) +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3', 'size': 12599849, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3', 'size': 12599849, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:55 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3 from onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:55 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-04 - Kendrick Lamar - County Building Blues.mp3 from onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:55 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-08 - Kendrick Lamar - m.A.A.d city.mp3 from onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:55 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-07 - Kendrick Lamar - good kid.mp3 from onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:55 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-03 - Kendrick Lamar - Now or Never.mp3 from onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:55 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-02 - Kendrick Lamar - Black Boy Fly.mp3 from onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:55 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3 from onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:55 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-05 - Kendrick Lamar - Money Trees.mp3 from onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:55 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-12 - Kendrick Lamar - Compton.mp3 from onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:55 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3 from onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:55 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-06 - Kendrick Lamar - Poetic Justice.mp3 from onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:55 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3 from onenightinkyoto +2025-07-13 21:43:55 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3 from onenightinkyoto +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-01 - Kendrick Lamar - The Recipe.mp3 from onenightinkyoto +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3 from onenightinkyoto +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-03 - Kendrick Lamar - Backseat Freestyle.mp3 from onenightinkyoto +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3 from onenightinkyoto +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:43:56 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-11 - Kendrick Lamar - Real.mp3 from onenightinkyoto +2025-07-13 21:43:56 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:43:57 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:43:57 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:43:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:43:59 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:43:59 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:43:59 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:43:59 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:01 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:01 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:01 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:01 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:03 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:03 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:03 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:03 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:05 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:05 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:05 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:05 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:07 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:07 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:07 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:07 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:09 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:09 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:09 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:09 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:11 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:11 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:15 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:15 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:15 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:15 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:23 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:23 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:23 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:23 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:25 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:25 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:25 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:25 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:27 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:27 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:27 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:27 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:31 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:31 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:31 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:31 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:33 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:33 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:35 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:35 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:35 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:35 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:37 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:37 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:37 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:37 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:39 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:39 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:39 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:39 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:41 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:41 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:41 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:41 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:43 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:43 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:43 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:43 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:45 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:45 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:45 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:45 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:51 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:51 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:53 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:53 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:53 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:53 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:57 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:57 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:44:59 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:44:59 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:44:59 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:44:59 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:01 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:01 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:01 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:01 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:03 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:03 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:03 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:03 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:05 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:05 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:05 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:05 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:07 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:07 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:07 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:07 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:09 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:09 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:09 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:09 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:11 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:11 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:15 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:15 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:15 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:15 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:21 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:21 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:23 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:23 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:23 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:23 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:25 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:25 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:25 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:25 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:27 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:27 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:27 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:27 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:29 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:29 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:31 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:31 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:31 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:31 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:33 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:33 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:33 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:33 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:35 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:35 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:35 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:35 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:37 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:37 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:37 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:37 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:39 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:39 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:39 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:39 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:41 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:41 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:41 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:41 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:43 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:43 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:43 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:43 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:45 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:45 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:45 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:45 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:47 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:47 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:51 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:51 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:53 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:53 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:53 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:53 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:55 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:55 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:57 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:57 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:57 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:57 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:45:59 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:45:59 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:45:59 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:45:59 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:46:01 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:46:01 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:46:01 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:46:01 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:46:03 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:46:03 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:46:03 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:46:03 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:46:05 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:46:05 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:46:05 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:46:05 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:46:07 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:46:07 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:46:07 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:46:07 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:46:09 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:46:09 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:46:09 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:46:09 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:46:11 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:46:11 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:46:11 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:46:11 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:46:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:46:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:46:13 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:46:13 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:46:15 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:46:15 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:46:15 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:46:15 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:46:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:46:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:46:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:46:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"007a44c7-7bba-4683-a198-9a123e9d2aad","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3","size":12011544,"startOffset":0... +2025-07-13 21:52:49 - newmusic.soulseek_client - DEBUG - clear_all_completed_downloads:890 - Clearing all completed downloads with endpoint: transfers/downloads/all/completed +2025-07-13 21:52:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making DELETE request to: http://localhost:5030/api/v0/transfers/downloads/all/completed +2025-07-13 21:52:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:52:49 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 204 +2025-07-13 21:52:49 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:52:49 - newmusic.soulseek_client - INFO - clear_all_completed_downloads:895 - Successfully cleared all completed downloads from slskd +2025-07-13 21:52:50 - newmusic.main - INFO - closeEvent:176 - Closing application... +2025-07-13 21:52:50 - newmusic.main - INFO - closeEvent:181 - Cleaning up Downloads page threads... +2025-07-13 21:52:50 - newmusic.main - INFO - closeEvent:186 - Stopping status monitoring thread... +2025-07-13 21:52:51 - newmusic.main - INFO - closeEvent:191 - Closing Soulseek client... +2025-07-13 21:52:51 - newmusic.main - INFO - closeEvent:197 - Application closed successfully +2025-07-13 21:53:11 - newmusic - INFO - setup_logging:57 - Logging initialized with level: DEBUG +2025-07-13 21:53:11 - newmusic.main - INFO - main:211 - Starting NewMusic application +2025-07-13 21:53:11 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 21:53:11 - newmusic.plex_client - INFO - _find_music_library:98 - Found music library: Music +2025-07-13 21:53:11 - newmusic.plex_client - INFO - _setup_client:84 - Successfully connected to Plex server: PLEX-MACHINE +2025-07-13 21:53:11 - newmusic.soulseek_client - INFO - _setup_client:220 - Soulseek client configured with slskd at http://localhost:5030 +2025-07-13 21:53:11 - newmusic.spotify_client - INFO - _setup_client:111 - Successfully authenticated with Spotify as broquethomas +2025-07-13 21:53:12 - newmusic.main - INFO - change_page:163 - Changed to page: dashboard +2025-07-13 21:53:12 - newmusic.main - INFO - setup_media_player_connections:150 - Media player connections established between sidebar and downloads page +2025-07-13 21:53:12 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Aether +2025-07-13 21:53:12 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Favorite Artists +2025-07-13 21:53:14 - newmusic.main - INFO - change_page:163 - Changed to page: downloads +2025-07-13 21:53:15 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Brittnea +2025-07-13 21:53:16 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Baleigh +2025-07-13 21:53:17 - newmusic.soulseek_client - INFO - search:551 - Starting search for: 'Kendrick album' +2025-07-13 21:53:17 - newmusic.soulseek_client - DEBUG - search:561 - Search data: {'searchText': 'Kendrick album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:53:17 - newmusic.soulseek_client - DEBUG - search:562 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:53:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/searches +2025-07-13 21:53:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:17 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: {'searchText': 'Kendrick album', 'timeout': 30000, 'filterResponses': True, 'minimumResponseFileCount': 1, 'minimumPeerUploadSpeed': 0} +2025-07-13 21:53:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:53:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: {"fileCount":0,"id":"1f4e893c-bffb-4c69-8d90-4522a183b0ff","isComplete":false,"lockedFileCount":0,"responseCount":0,"responses":[],"searchText":"Kendrick album","startedAt":"2025-07-14T04:53:17.5372831Z","state":"InProgress","token":3862}... +2025-07-13 21:53:17 - newmusic.soulseek_client - INFO - search:575 - Search initiated with ID: 1f4e893c-bffb-4c69-8d90-4522a183b0ff +2025-07-13 21:53:17 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 1/20) - elapsed: 0.0s +2025-07-13 21:53:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/1f4e893c-bffb-4c69-8d90-4522a183b0ff/responses +2025-07-13 21:53:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:17 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:53:17 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: []... +2025-07-13 21:53:17 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Extra Music +2025-07-13 21:53:18 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Maggi Main +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - search:585 - Polling for results (attempt 2/20) - elapsed: 1.5s +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/searches/1f4e893c-bffb-4c69-8d90-4522a183b0ff/responses +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"fileCount":5,"files":[{"bitRate":320,"code":1,"extension":"","filename":"@@sqmcr\\Music\\Soulseek\\Black Panther The Album\\01 black panther (feat. kendrick lamar).mp3","length":134,"size":5426527,"isLocked":false},{"bitRate":320,"code":1,"extension":"","filename":"@@sqmcr\\Music\\Soulseek\\Black Panther The Album\\02 all the stars (feat. kendrick lamar & sza).mp3","length":232,"size":9317080,"isLocked":false},{"bitRate":320,"code":1,"extension":"","filename":"@@sqmcr\\Music\\Soulseek\\Black ... +2025-07-13 21:53:19 - newmusic.soulseek_client - INFO - search:597 - Found 249 new responses (249 total) at 1.5s +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:345 - Processing 249 user responses +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elendarsilvermoon has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User adoghello has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User crint has 3 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User relaxedcrab has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmustbeacamel has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User PsychicWulf has 16 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User technosux has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jeskola333 has 4 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User iaman00b has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alitamachine has 17 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User musica101 has 19 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User maneuve has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dunce has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreamer has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fourthgear has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xcixxorx has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User snigglegros has 9 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User djjeremy has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User geraldo876 has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lilt19ad6 has 3 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User superlozer has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clownpatrol6666 has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User save20families has 12 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gdtek has 21 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DeusMaxMachina has 19 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User The Locutus has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wrabbit has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User clf2008 has 85 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nightmare_dronemk12 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yukosan666 has 16 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User IMregoR has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guppies16 has 3 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chimchooree has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User togapepperashi has 16 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fern911 has 4 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ricardoastley has 4 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sevenarts has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Icansaveher has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gogbone has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dreem has 6 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dekachin has 3 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User erasethesanity has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Audio_Dope2 has 10 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User legodano has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User yagoobian has 3 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User guineahorn has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kerobaros has 217 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brb1228 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User theoddhermit has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User puresauce35 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User brihar22 has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SlavicFire has 20 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tehfuture has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bigkahuna30267 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User etaylor86 has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User severedxties has 6 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ageofthefever has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Reemerge6193 has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User hotchair has 76 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Marxist has 30 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User parasomia has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User vfoxm has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User churchofozzy1 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AfterlinePerformed has 7 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Bian has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BeatscapeLounge has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User itmightbemikey has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sumb0dy has 22 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TerryDavis has 10 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GeorgeHatesFun has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jimmydean6969 has 7 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User imagines2014 has 7 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User chickensandwich has 21 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User assistantstevie has 16 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User batmaster has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ta_face_esti has 27 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BurakkuKami has 17 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User formerbusboy has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User jaxxthesynth has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User macro has 59 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User YJWMY91Bk has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mystro has 4 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SonicRings has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thampy has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dwtn81 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SoulHunterWolf has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bounceman has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User h23234 has 10 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reemo4250 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User admiran has 19 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Finnyboy has 19 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sheikhyerbootai has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User richmilnix has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User petejwhizz has 19 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tsubasa has 30 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Stekel has 31 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cy1der has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User davesv has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Searcher1975! has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User leitunggeist has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User twiztor has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Basiv has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Chicken_Biscuit has 20 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User conyeezy has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User murdercitydevil has 4 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FileGod has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stormcynk has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lulzcat773 has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Datasmurf has 8 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Davidless has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User blokmotion has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catpunx has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lpma has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nexuszeero has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User catawawa has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dioestar has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User AwesomeAustn has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Shadiness9250 has 30 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Krullakake has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User {{{d(*_*)b}}} has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ParadiseLost has 16 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User oblama has 150 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User von_ubelmann has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JTE1817 has 16 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User GoldenDeus has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gombers04 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User drewbagelz has 4 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lossless1024 has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User XY0 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _tyrese_ has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dubs. has 4 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User reverwinsskt has 4 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BigBallls has 10 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User awesem has 16 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User +-+ has 3 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Sam-jam has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Deadbolt1209 has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TransRights! has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stinkyrat has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BhrisBenoit has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grapeman69 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lava_Lamp918 has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User InsaneRose has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User fakedbatman has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Derpus has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zinnac has 19 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User onenightinkyoto has 83 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tbdbitl1 has 18 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User amd90 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User noarmpits has 17 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gustave1984 has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User 3030 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aRandomFurOnSlsk has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User begets has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TheFakeRws has 32 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User marx2k has 12 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Foe4 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User johnny.megaton has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tunnik has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User elipsedeclipse has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kino_ has 17 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lisandrx has 11 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User digimotong has 32 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User BladeRelic has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rat5150 has 6 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Pauper1722 has 236 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dandemite has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SnowFish24 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User breakone9r has 9 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pup has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lckdscl has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User alilstinky has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User denali83 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ValdikSS2 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User thlayli_x has 28 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User senhor_roar has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User v1r2l2k has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User OPIOM has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User campee has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MyMindIsBlowing has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User felonraper has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User raremustache has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User m00nl1ght98 has 4 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Handbanana has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pugacioff has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User takeourcarsnow has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User estebanz has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FLASHBACK6070 has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Lord_Anakyn has 37 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Grohl has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sataNathan has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Jerooome has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User berts1404 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User assaub has 7 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User minimum has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ElessarMP3 has 19 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User wallywubox has 13 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lost&forgotten. has 3 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User JDogHere has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User casio-official has 4 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User waddaw has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User MacchiaLux has 3 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User cktc has 50 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User visions has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User lascar972 has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mr.Wilson has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rainking has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rikki has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User sakurako has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kgapak has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User DoctorLove has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kobeyads has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User beatner has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User SkinnyPete has 62 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aa_anima has 15 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User xY7pQ2zW9aK5bJ has 13 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User korusse has 72 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User michaelwave has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User monsterpco has 3 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bajolo has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User ferallindsay has 17 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User _kyle_1 has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Me&MyDemons has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Obadtzxo has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User woundedflesh has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User CaptainNoFuture has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Damon O'Manic!!! has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User filfilfil has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stilbruch has 3 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User bidynasty has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User stiffuper has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User khudea has 0 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User zerw has 17 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User web-graffiti has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User aocx has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User TitanX420 has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Mole has 2 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User gahtv has 3 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Fenris has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User rancid88 has 24 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User kfs1986 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User dio141 has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User pickledeyebrowed has 5 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Pagerg has 1 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User coolasbreeze has 46 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User Afton has 14 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User tuliomajit1992 has 28 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User nick_in_mersey3 has 16 files +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:353 - User FourTwenty has 18 files +2025-07-13 21:53:19 - newmusic.soulseek_client - INFO - _process_search_responses:399 - Found 150 individual tracks and 182 albums +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:400 - Album detection details: 332 potential albums processed +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: elendarsilvermoon/@@sqmcr/Music/Soulseek/Black Panther The Album -> 5 tracks +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: adoghello/@@lbxvi/+Music/The Game/The R.E.D. Album -> 1 tracks +2025-07-13 21:53:19 - newmusic.soulseek_client - DEBUG - _process_search_responses:402 - Album: relaxedcrab/@@msbxe/Music/Kendrick Scott Oracle/Conviction (Album) -> 1 tracks +2025-07-13 21:53:19 - newmusic.soulseek_client - INFO - search:617 - Processed results: 150 tracks, 182 albums +2025-07-13 21:53:19 - newmusic.soulseek_client - INFO - search:621 - Early termination: Found 249 responses, stopping search +2025-07-13 21:53:19 - newmusic.soulseek_client - INFO - search:632 - Search completed. Final results: 150 tracks and 182 albums for query: Kendrick album +2025-07-13 21:53:24 - newmusic.spotify_client - INFO - get_user_playlists:133 - Fetching tracks for playlist: Broque Main +2025-07-13 21:53:31 - newmusic.spotify_client - INFO - get_user_playlists:140 - Retrieved 7 playlists +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3 from onenightinkyoto (size: 10950997) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3", 'size': 10950997, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3", 'size': 10950997, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3 from onenightinkyoto (size: 12433677) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3", 'size': 12433677, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3", 'size': 12433677, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-03 - Kendrick Lamar - Backseat Freestyle.mp3 from onenightinkyoto (size: 8511116) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-03 - Kendrick Lamar - Backseat Freestyle.mp3', 'size': 8511116, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-03 - Kendrick Lamar - Backseat Freestyle.mp3', 'size': 8511116, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3 from onenightinkyoto (size: 12986426) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3', 'size': 12986426, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3', 'size': 12986426, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-05 - Kendrick Lamar - Money Trees.mp3 from onenightinkyoto (size: 15481650) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-05 - Kendrick Lamar - Money Trees.mp3', 'size': 15481650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-05 - Kendrick Lamar - Money Trees.mp3', 'size': 15481650, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-06 - Kendrick Lamar - Poetic Justice.mp3 from onenightinkyoto (size: 12011544) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3', 'size': 12011544, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-06 - Kendrick Lamar - Poetic Justice.mp3', 'size': 12011544, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-07 - Kendrick Lamar - good kid.mp3 from onenightinkyoto (size: 8569610) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-07 - Kendrick Lamar - good kid.mp3', 'size': 8569610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-07 - Kendrick Lamar - good kid.mp3', 'size': 8569610, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-08 - Kendrick Lamar - m.A.A.d city.mp3 from onenightinkyoto (size: 14010434) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-08 - Kendrick Lamar - m.A.A.d city.mp3', 'size': 14010434, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-08 - Kendrick Lamar - m.A.A.d city.mp3', 'size': 14010434, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3 from onenightinkyoto (size: 12557007) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12557007, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3', 'size': 12557007, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3 from onenightinkyoto (size: 28948308) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3", 'size': 28948308, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3", 'size': 28948308, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-11 - Kendrick Lamar - Real.mp3 from onenightinkyoto (size: 17741753) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-11 - Kendrick Lamar - Real.mp3', 'size': 17741753, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-11 - Kendrick Lamar - Real.mp3', 'size': 17741753, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-12 - Kendrick Lamar - Compton.mp3 from onenightinkyoto (size: 9929053) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3', 'size': 9929053, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\1-12 - Kendrick Lamar - Compton.mp3', 'size': 9929053, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-01 - Kendrick Lamar - The Recipe.mp3 from onenightinkyoto (size: 14132683) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-01 - Kendrick Lamar - The Recipe.mp3', 'size': 14132683, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-01 - Kendrick Lamar - The Recipe.mp3', 'size': 14132683, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-02 - Kendrick Lamar - Black Boy Fly.mp3 from onenightinkyoto (size: 11172461) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3', 'size': 11172461, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3', 'size': 11172461, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-03 - Kendrick Lamar - Now or Never.mp3 from onenightinkyoto (size: 10258217) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-03 - Kendrick Lamar - Now or Never.mp3', 'size': 10258217, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-03 - Kendrick Lamar - Now or Never.mp3', 'size': 10258217, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-04 - Kendrick Lamar - County Building Blues.mp3 from onenightinkyoto (size: 10333424) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-04 - Kendrick Lamar - County Building Blues.mp3', 'size': 10333424, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-04 - Kendrick Lamar - County Building Blues.mp3', 'size': 10333424, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3 from onenightinkyoto (size: 11150279) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3", 'size': 11150279, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': "@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3", 'size': 11150279, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:645 - Attempting to download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3 from onenightinkyoto (size: 12599849) +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:658 - Using web interface API format: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3', 'size': 12599849, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - download:662 - Trying web interface endpoint: transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making POST request to: http://localhost:5030/api/v0/transfers/downloads/onenightinkyoto +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:245 - JSON payload: [{'filename': '@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3', 'size': 12599849, 'path': 'E:\\Broque Projects\\newMusic\\downloads'}] +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:53:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":16,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-01 - Kendrick Lamar - The Recipe.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-01 - Kendrick Lamar - Sherane a.k.a Master Splinter's Daughter.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-04 - Kendrick Lamar - The Art of Peer Pressure.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-09 - Kendrick Lamar - Swimming Pools (Drank) (Extended Version).mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-05 - Kendrick Lamar - Bitch, Don't Kill My Vibe (Remix).mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-06 - Kendrick Lamar - Swimming Pools (Drank) (Black Hippy Remix).mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-06 - Kendrick Lamar - Poetic Justice.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-04 - Kendrick Lamar - County Building Blues.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-03 - Kendrick Lamar - Now or Never.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-08 - Kendrick Lamar - m.A.A.d city.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-10 - Kendrick Lamar - Sing About Me, I'm Dying of Thirst.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-12 - Kendrick Lamar - Compton.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-07 - Kendrick Lamar - good kid.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-05 - Kendrick Lamar - Money Trees.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-11 - Kendrick Lamar - Real.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-03 - Kendrick Lamar - Backseat Freestyle.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\2-02 - Kendrick Lamar - Black Boy Fly.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 201 +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: ... +2025-07-13 21:53:52 - newmusic.soulseek_client - INFO - download:667 - [SUCCESS] Started download: @@zjfwm\Music\All Music\Official Releases\Kendrick Lamar\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\1-02 - Kendrick Lamar - Bitch, Don't Kill My Vibe.mp3 from onenightinkyoto +2025-07-13 21:53:52 - newmusic.soulseek_client - DEBUG - download:677 - No ID in response, using filename as fallback: {} +2025-07-13 21:53:53 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:53:53 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:53:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:53:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:53:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:53:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:53:57 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:53:57 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:53:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:53:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:53:59 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:53:59 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:01 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:01 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:03 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:03 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:06 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:06 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:06 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:06 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:07 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:07 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:08 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:08 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:09 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:09 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:10 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:10 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:11 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:11 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:12 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:12 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:13 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:13 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:14 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:14 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:15 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:15 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:16 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:16 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:17 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:17 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:18 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:18 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:19 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:19 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:20 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:20 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:21 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:21 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:22 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:22 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:23 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:23 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:24 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:24 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:25 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:25 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:26 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:26 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:27 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:27 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:28 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:28 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:29 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:29 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:30 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:30 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:31 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:31 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:32 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:32 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:33 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:33 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:34 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:34 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:36 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:36 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:36 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:36 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:37 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:37 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:38 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:38 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:39 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:39 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:40 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:40 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:41 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:41 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:42 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:42 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:43 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:43 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:44 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:44 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:45 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:45 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:46 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:46 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:47 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:47 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:48 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:48 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:49 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:49 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:50 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:50 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:51 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:51 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:52 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:52 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:53 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:53 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:54 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:54 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:55 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:55 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:56 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:56 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:57 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:57 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:54:58 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:54:58 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:54:59 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:54:59 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:55:00 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:55:00 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:55:01 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:55:01 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:55:02 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:55:02 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... +2025-07-13 21:55:03 - newmusic.soulseek_client - DEBUG - _make_request:242 - Making GET request to: http://localhost:5030/api/v0/transfers/downloads +2025-07-13 21:55:03 - newmusic.soulseek_client - DEBUG - _make_request:243 - Headers: {'Content-Type': 'application/json', 'X-API-Key': '1234567891234567'} +2025-07-13 21:55:04 - newmusic.soulseek_client - DEBUG - _make_request:254 - Response status: 200 +2025-07-13 21:55:04 - newmusic.soulseek_client - DEBUG - _make_request:255 - Response text: [{"username":"onenightinkyoto","directories":[{"directory":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city","fileCount":18,"files":[{"id":"2ffc8d40-e0cd-4787-aaaa-19bc7349f4d3","username":"onenightinkyoto","direction":"Download","filename":"@@zjfwm\\Music\\All Music\\Official Releases\\Kendrick Lamar\\2012 Album - Kendrick Lamar - good kid, m.A.A.d city\\2-02 - Kendrick Lamar - Black Boy Fly.mp3","size":11172461,"startOffset":0,... diff --git a/ui/pages/__pycache__/downloads.cpython-310.pyc b/ui/pages/__pycache__/downloads.cpython-310.pyc index 9e1248c5bd2363ced5b52e2cedf76eca7e8f3f6d..30e3f23e680e8700b6a3f8d3591d689b2e6dd239 100644 GIT binary patch delta 10485 zcma)C3w%_?)xUG@?q;*uEFpxvfklw85J9wxprRD0pn?ifFalxCY{+wy+}#DUz01;q zB|Zs)jt|g8t5&NOu(D8AKLE|Yg@mcwf6g;xw}cE^!qjWWoGV~ zbI#12Iq#dj_xL|}#UJP_Ec6-pnUjt;Ke6L$fdc{2vs?T@_3jq+;%Aw6c8fwGo>w33 z5f7)EBMX{HcF5>fSN&I{^VBK3@N^zO$?nMFCYQ8i43H%<9ywnoA{Ru?uP^}JAU6Vf zp}a~%&j+MOCIMNhDH(5>#`~(Y0li2=Q;}tIQ{?<6k4($WTV3h;i{%Soxfq-Hn*91! zcl{;DEV4yz1@Uruwfx3bqkaXjx5?hEqP|XEBd-PIQhA-c9{pwV26-d;m2$i6L%&My zkT;>fT<(;+(AUeG!{YEHnLX6N#-x-#a0@URv38nWtYa5 zm|zHAa6Gunh>z~sE{v2*7|F4q_Q#8DY+ikK8C6ufHo2Ioq!dOQ#YQ7km|VId9=77a zu==Q;%GA~MR8bl{DHx8m1)DmpAf{Sk@!&r(`56Rz%t(jq%`oXOb-A@#kYJ#sJ5fh10d}!zd&M$2T;Gqq04+bMxV{>DH;3d4Q||0>TnTox{ys zZXQ6RN-@}n$>dood^uGs|7r@TKdzxMbEaVW?cF&EmhBGTC@Zy+c;H%8k#!!ofD zs7LSGwbj{}x^xxQ&J2GMrJA|zxjwk8GZ?qRjcqaTNknC^B^uP2>YOX+6z>@8Y~Wd^ zsh%t7gym=Qcpf(kxH-U0gqzd(b@hwS=Fu749O8*H(1hI1i}EWE7Bsb3v3P@C(wgH| z-D|1r?B`vE@pZg-jD?lRM_%C*9#Kv{(_{KXF@8(UA~QfKh zlJ1ll_t+3zhAuSLEL;t7Nx9>O^w_KtdGS2kExj^-i-{-FPd-_opUgdZ%meBGj4fnE zYN!zg%Y5|P@C+T?uLA@_uJI!1It1tLT~QD2C$(($`nRabWgO+*k0g` zQh`mPEIo3M)3bZbt$QE#4`pLU10p-dE(UlX_hH53FIaTUf?vggk7B{mybb8xm=z=1 zGgiRz#0z^~gtB>{Yylt^+n(Gpt~4$OLCUkq!(`4#Yg~!i-avEHiD|e5233px>T#&G=NHjhq^O`6&H~5ug zeh@!Pn8l|i6W4)c(7WuShPown7cOFh=r;!Q@jQQd-I5h`>Tm;{k*-V31R5*Eg3d&{ z3`RTS!KN1ILv9;iTuAS?CONt$IJG?zZQ+e*#8868i`lG*x3sqh8~-C_Ck01`W3iU? z(GF(R6mDscNL93s&T0-=Pl2C)1#QW#8~E`E^u_uaj>D>DGx8cYpYX)Fd`{oyk=D|e zd2|R(D9=&BuS4uLpTRu6-H5ctFldW<>H#WWG7scGU_JaYXoxCBsc=yV)rwMRB>mG5 zovait{L*F@W=qH?s=ojW2+vXC$Mz0zo20$ z$BZkky$-9Qbnh`)=-7Wi1xKgMUSXRJS_!jsdGIGJZQ3(+S7$Lt0h9VM$F3so?a!Cq zw9J>jt;PTeqkEPH6|fW9Mop&lW5&xfSiW$?@&RX)4s%F;krsAekDc`_V}L)3t$|}R zuw+5bJ3;J=*u5}~9#uG=W_0q*#o7r3bOo*l~lZ z@CrIrOjrL{L*x07iqgwMen%x9W1-ig?x+Ma(&EqRZoR-7QqH6KtP+QK^fSOl`XWc6 z-sGtta-$vbd5o@I$6Sow;!gDYS|J+6iIH&ZU~ z@Y<%#FEi3W_1Ui0JoE+Vz3BapYm$X2x5E&G(^H;!zU`3#IHgY8)0)RLa1osvIw}kG zG6#l22R#kGUPNfK4Qv47%``bBkfT#>?WY#nX?JWtrV)7!PY*2`8nNj8fU=(gn*os> zgGT$Q`~Tf?a!mFVatm&!sOtbWg<=#`dy}DIIaNWsZ~Ur5vmc<`bCZOcO8c z56B9~JZv+O;8e;g$3VacjMMH9E&Sf7p8tg@$jkb@YJ2DuwBH*$E|s?_j|rq6X~#F7 z9beV7FnmHz6C97FwLY8;x)Kv0E>QXFg7Z~y9hIkRlH;`QGTj#gIEOkh$|2b7M0&yI za4cwj3#yR_<~aR}qwG#Z5)lXUx9mgM5G2Yp`Y{eUzJw#gpmh%>tuM1?3_0Sj4Ev-+ z38rCn-rjxnu+fQk&JETjLfM%;*Q8Tmx^*k7{%sfw0=D0q71Jn z8j3TDgg+Z+c##L>qK_iPAk`Ewy&@14p3eiWYJqg%pUK(km+NTiMCT%Mnid-jbXk!N zEuD#&bL@>S^}^$j$Rh(|; zwYm{pyI~clYp6R5^;pxThvQ+y>xhP9mk-fT89~1a(7b*xxTM`WKIaFp({^ta;`6)) zHu6|(jS)Es*ZGNNeM+~_Hf>j#k@8|b-(~~vgVDy;wf`t^j2w(sVK#EdpYq{2lVOe$zl};kF31hrDoQqaFbkzE>U*AZ@s^1Q>7wT|sk*1WJouhZryQ3)tp2WbDuoguzqQEQ(tcXxEPN8%BLJK83cB} zMBZ9mwD#zzV_0W&IC2QcA>T3TVlBn%4Em#yjSbE@)FS?V6PSYmoqK1Y0I~)R2I8IZ zaQhHY^{qoVy%;QNVIX3xP=v7DC44ljJP6JI=^`gUA66T!Oq;!Q0utw}o}9QaTPuiN z99|!p@o((cU~#9_vc4sXZ8RY%Y3Rz7hiR`V&doe0DWAl->TnbFiAyqaJ!c3Plx3pL z^nh@$#4hhu)va`%6aTM*IqMV2QE|gYaSYm0%fjlklG;qG7R4HqVL8#Xjea~22&CgA zT{e>KT!PM62y{F$Z?|hD!d55<>1q`#fUZ_Si;Y$t&q!Zd7TiE7sB7$et_KZA?a&Sn zh@q|!d*t*`^0_H52$44E*2iqMetP?TwzsuF7FM7JH9#q6K8J-xM__>h7(P2+21*Ru zC)1-!3@B=WU0~<6xvXpL0$HScFRV*JDzE!u*oj@(S}x7Trtk#oq2Fl?dOj1K=kWL% zo-J|SRF2ICii8*^d$PH6$~~v8AAz9EIa*nsi!8I(aD?HOZuK=BLH)zeFuhDguK~-F zrHM{1a)g0O%g%%L>tXcTbD!dlZBT?+n~x(C+taZ zX-p?Qbvj@Pw_B00?9nlfV|U=u-3SrZtKbNo}xP={zkxIF<&RpV4RYOq0`V@r3b&iQgWm}M~ZE;WtnyIVz( z>i<-DRnOnWsFOlu{f?dQgGhBy`_*qSTwi=2Q=hbS0)|cYqUpB)f$b&H)5v?)~NlTVhVQb9OSn*4f$FHR|bhnsP?KDMs)`Y1274 zwgG34Q_j}?8l1CsvNvr)b&>Jcw{%eXi7p(tbqJ)PfMY&&G{F(dAV(VrHbAXT>7cXD z(zi4mXSDNu={RE*Mvt(O+yF9EDo`=>AyXqZjQI6_R^nBAI%w7uSFu@wQe&~GG+iiU zpm&!NeOBu6n`AO7BNwUHI*_Ta$>c|ACl##WWn$cHQ1^Gy>7IIw^UKvcT@+TeKP7K^ z0alIOgeEy7r-s%jt!bm;T=|1`u;J2k1Y;PIrgXKNx@_)}ZeX~f8ZO&qg@Ets_ejq` zmd1wZ%;!2B%mh>=uV*n71&J35a9#;3#_F&0AMM#uxZLE{W=@Z^XZI#Ui=4~&g5U?6 ztj><$hOos!QZUw;un=Ht>30HscFN0=g=?p-meWI5te&wtwr0BHm?vRo*oWex*YZsd zx%6O8u|oNdSg=M}r7Wf6_z=f)qlI7sj}C#G7MhS}#PzrFR2E%*^aPbH?*wEj!qaSa zUWD+`$H5@37~T%I=RvtRAOai}ex96kjJG?UIA&&d(|(uOq~1@^cxo$Gz76!ExKs^p zpeyN`^31%AB!##{-E$QkEZWQ)(z52o>ntqKboI~=Nt~TI)utbin5q7}iR#74YH6D4 z==So=J!zWmA$LXQ7gtk8h#i^UZFIU2yVR4t6cRhsAA9LidZs*c?lp9a@azWnnH8DW zuBD}>xGgj7M!bo*P0iU(_X79GcB=R60m|7GnREK+4xak$4!Q*0NjK5Lzz$3ej_$HL z*IUSuRR1oj@Z1U54HcO?Z=!P<{m4$b8eL=;%>=`nchO|eUBK8~k$G|#l*QAJhkX^9 zS8k@qvB}JKMF)AaOK+o#JPLCMD>8TAM$1fbN9Lp5bRLO2)SSEMVez2){atjPcq22j zpKdV4{>;I9XrB-VROh`^Ua=08g9RPos~Q^HBjISG%i5!jm0Mq_=ewA$uFM>~m#ST! zNAa+{GIQhsdR>6~!Ee)5sP3Qs5Y3@&m8$z8iix;-?;*MtlU)zfWlJ(3ux?>~{~|&^ zX5LoauD z*q;nxj%4C)p{6nYE>q1kitZZs#N!r^kHCi z6*lX^k^%CNPxW0$CF+8wDPLW8h#n$Ym6`JtBEJ9RfNH?LttwOSG;K0Hw}7qnHMRZ6 z^f}#KrMCZsdc=H{|18b({F1l+l3MyKokQ1FsT-fA>%~*5>N#4R);IYK&u`{KIK<6U z+-RD^n8*d)uQJlDCb$Q;4pF}3nVnnKT2WzsLw0aN@!opzY)`NL#dOa+%H z`7TkDe2|yZ5~}4=W4;U+%A`o$vK7+T)SnL{gnw6!eVKNN->3&)rjFIeJCUJW z9pM-Ev*ua<=B3{ldg-_DN{?4%Vz1CIgmWK<)sk0fMx|zbjNlVqBv75%@hWu*?=%!V z`^@A~mH!)BFZwgxzoE1#9#tQ`M%OGlN1m4&-zTDzTPWx7on!IUpv|8$(Ju7gQa}^<4jL`~RPZY9FUMg$08u3Z|8JYuQhesM8 z#9ghE?eTJc{6xEYi?Aok%Wl9|YmlzYzSk<}y>I|#{}daMHj0{Gl9xNj6${Av?7>Z! zSK#0@H?%cK4qUBeL)=y$ms>i=ZcUcmX>x6r-E!IR|FBzkTy{Bb;Vie+^2#i?2HBVz zA9dN~{dogMj&JR53;Y?C&#U%0AI{HTZEjQoVqQ z(ffJAKC#X0Gp+pqN7N@rPzejQx*%1i^$I{u*`2P>iieQRSxC$9!M29_r{#{e`%C($ zrwW^LJLtf6mFXJiP(gbu_`=yUayoRAflQY_y-EH1J{iuRLI zQ|u}IGt^UW(m2tfj=V`PAX<3%Em|eqRtFSM6~05?EsP^Q(VtstjpSwO-1lgys(P2s z7aysncWE+htX9{*OPgzsf*>2~54tvXTGIL(>+Y~K;!r^Cc}_;3Y9=Ws}Sbl$_+QWmWt`%f5Qq)jbXCb*=NOZOfb z@nK9A{(;7&FJnghZCNwAz5m1SZ9kSzOAP<=5RC*;?}>DD#d~r!YF&56KSTVxWwCYq zdqiSVmbos{=b}pI1;g=lc8mB7-G~bq`hlA^urud#8=Swf-mr}|`6>K!K))f8P{(kP zJE$Aq&O*XE2k7W7HHkQ@QZtYcT>#)O!60(7pI> zjMR#J!f$$j;o4k;?`mAY^|`!MO)fKY=YP}PLhMuXKcrJ=$~cwykbdqx1)u+|3*3fU zdX(@gt9jWIupLeT{HBpM(tb~7?nkuNMWr5f`(No~`trEU^M9o= zLR6?X|3)W!D#75^ajNtadJv$eKA|A(8JBtI6MEg_|0b4-tpz_1lIx?NQ)%Yy&*_Xj zaigm8n2V@kZ3h|Bn=Cd;IdCZlr0{x(i>9f>%1?ED}G%OGwuXYre@sktQDd1+E z%FUO!L4s;n_waSx&rELN=4Nhm?Dk`In%|sQa4!Sy4e2eg2j1&)z6LMCc_O! z<`zff)~#+FvBjaT^%+aaKe&08AD`pqd2Vi3pB0+5RTX?Ye8N^0H&eMeg_~)fouk{T zRYSnc7jLMRfccHFQv)S|Nr9^3lS?NQ*O&TA>x(9oR;$kf=9yw@=8RG1QXw{EzENaO G6aNQ9e+~u! delta 4711 zcmaJ^33yaR5`JC%=FMa>83Kf4G6{qu0Y(rBvfPIVhC{jJ2!taBIsp<0@G=~UZx|qv z!{vxX(_j*kpd8^66nP+LM8#$0_;wL7E27^neESKD$F3i)z_L|u0zutxGheEztE;NJ z|LUXOjZaNcoDV3g&_h(O4dSR>XVA1~I4^~h62v3Ldf1hGMsAfG5+6|W&r6Qx2TpCmSl zO~@yU*F_ofDWY6dAfGBWi%R6_;zJRv7F%#GFNin9o2beVTg5iy)5LbM1Nn4OBX%Me zg5hshIf&h2PZ6YLioN13)Mtr(Vn6a3;%)H`@|og*co+Gsl}Z*92ZdSWNXr(7#9`Fs zi1)-1+5aSZt!aXd369wAH-CoK3*idqCJccr2#X>-RYzK_fWRqVTWSdE!A7FKeW zCvT-fGV_@&CqN2gPs$k+VU|4iJVXRfVzvwV8A`TN#j2IOCVmjCkTJzjs<^?bQA$+= zj8RaJ?QFG75h`+9nNp$F+i4*?)Y=CrQ|tjiUxxwYJHIXZ+5BPDSIE#8Z7D{`7bE*H zw5s@>`RPmvaHbSALkGJ*+~8zh0S!};LsFr+(^1fUj6Xy7x6F|Dv%n)0CxHhR^p<6* z@PsU!1Ow!jnb27#O@U;GOYe(|)4R&4Q=s+GLO^*fDQL-h4EhJNwiD(p1m#AbKk`}Q=iq9cWPlH}g zeJsvZ?}S9InGQW{`YDd$SOI+oh3Quj82yi^&~KB~LsPvEK~PJ&T|`bI@!9mDBrj)3 zD4t%3l4N<%EU6coztsS+3!<5W!F?Bk>?LWbcE_#BiJ8#XEXspg&ia@siy#bGA2})? zidjGN>wHWK9E~<_6hIBL4Z?uYa+3jrgBIYpc%@*CUq2;K0y5ST~i`xS>!x_-#CmFW9Sva+D$}wgZ zCxtDSVY8MLfjo?sWE~Hb1L4+$y4#KLhl8SNHOt`vm*FzPh1;-+M&)X%Qh(mI;SPzg zc8Dq>WkL|zu*Py=5W35|K^VwJ$o@-VMw0#pB~#U(q7)AxG8>OkT}0lzx&B#M`RRT= zV|tGKaT&Bt4i9DD+7{NiyG&`fwnaaZE)ls%vw9V5RaurCycSwOWsID$7S6M$W%qS34UWZ_W$Wu9Q-@Rtf+!grWIlE=^nG^78uUiGIQlta5J_{mTrTsXxnEyq-igq$$XDlz8%V_ zt49rtM)qA-vv*g#Sgn6QCo=?7d&SCZir;s zDr{Wym|gb3VVswFb1xjD`R&{XBQ?6GzW12-_rVCx3e6D*U@)*kS$YumunlsM34>V^ zbBzgWIeXpo9)bOgRme|{f+ub`de(){$yl5|eRgI>?t*!G1)cN_sJ2q5m7_E&*7P2O zcvUOI#)??8Pc2+w7~gve7PCrOateCFkyv@|6y&kV^63xYW$Zlr0gNA7i4J-xMLbD+ zg*K5-3*9I?sY_DV4w5zzd7q4|8+Y7K`$H(A^?v^mJcF$JY3S|iOGZZ? z1lBiF^H-0+YSeumYnGjc1jY(v!Wr<&Pd|ocuH|H$Ph^>`e(En$7e)1?1$j(2pgUWoIFd z1~$(@fA3olEguO+y4sTD-X7WhJf4sNUbEkMc$zgz_2OLcrdHfIRzVw?aUPnRyDz{R z&R&!~FG5F+f=u?BITs-VAm1y`U4n0+*eg$b2A{%4uUUE-FV)CjgCs}RK@3!S&6#zu zgllJT7=4z!c?JFhm%Q@kmypl;%B-uLTaP%hWUcv*zZe`)BHz86va= ztSD9{kCDB#4~o(KFkyoEG5dcFV{NS-4ig^L{$c zymbraF~?=Qq7?Ij(=zKjn86mA=e~m=XD`bU|AN&6`-#DU7P)stf5Wp-DTcfu;;E3N z|3wT5v@mQ{5h7AF#iuX9NGJx~zY4NF4|sMgNizON=pGYpsN&f|K*dQz&2CQI&%|?b z&5zJ7IGpOlRZ!K+P>og?tBuhH4c;``1X`skxn8ViS{Fn934E>+@wtjX#}P(i!*h)V z4GSbLNzAo{IF&OvNE@St7~oGd;tQG4N{n2K#SnUq!X5{f1fwgkyrfaHd9W(UP_0t6 zt9ZVCq1VJ1OX50+vA9qx9MZNT3Te#4aN~X(?vZHYLoxDPBDFr6PfYktv|vNHiT^iT zT79@D#iaUh-NaEpY6wjlac+k=x2OiJ@ToUKPQ4A` zO>@!6Rm}5p4MZc|g-}hA#%+jgyqY?Uq#Rz%_0_1JD!1JRU$A|)id%x~yHS;1KkXMn zprR(DUNfx$=Ir)Wz6UtZ?@GW|JywmyD_T$Y1GTd|WMesl$r1H!9K-qsu!1pI(5-pUFcWoq&1wNZ?I>7 zoV2*ZDAktvo5l`pAI9YTLe7-Lqc3J(F`LCjr`Jp)T(mkwOnO}~% z55sL%iTzqQPu2!v0G}#5Ph(N$aK``4SSQ(v^Gr5guH?MqXsZ^t%J5g{;@LoC91UvS zwd*mq9&L4yG=<1w>b*u%9TB<>^}i7bT|+WVHoirB3ROSK?bFnBYL?DXCQ{@Iu=HeRmsY@fN;9m;&RhxN8 z<69WpBqup|7Z@Ec*E{&Rh$-VH}66xSsKRY+kd7p@7Sc<$&;IoqCs1d z5#V@S3Azk(tdmbw;hs$%aP!VEC*Hj7=1uXy%by$Z&KlDc&7E9 z68RvlF-ERzE_WqzKSI_riF=!^CkN}T50GTN<$LAGB;G1~Eh*L!DKTG6!U+a@QN#K& z?SKmkC62ys^tUNzR2J)0*XmT8h7$K7y+Tx1>Qp)ER2=G5|LIis=|LiuM5rFqsSeYr zFw&{M(W!LN?-AKY&Hc78qz6b`E}v+}JH{!v9G%e8fk-1Fu|yhcC5?09oj;)O-`xoR qC0X8%uZW0sM@2_8NsD$y_l!=E-P`ltSjyzJ=ffGBYS#MrW9+}IqxY)- diff --git a/ui/pages/__pycache__/downloads.cpython-312.pyc b/ui/pages/__pycache__/downloads.cpython-312.pyc index 66df8aa86d2be631d95d8f2bc4c4f0d2ac908a01..ae849a8b306b84e7b7c34015191bc6577aa9fc37 100644 GIT binary patch delta 25859 zcmchA3tUvk+4q@q*=1oDmSuqj7Fg~e7eP@31w;e{1(Ay)3W%IVPy}5T62ig+}Acz)y9bwWI#WxB1`ckACRSepv1sMpEH- z{o5E-un`IsqhiER996+4?-bQ$UeuU{cEfR|9f|(OG>r-|;26`W6txigh=CBQL>+{_ zqCw;#w_p}TCH(oA`F0;M=$O#xC+gw3S`3CzBZffef1Ejl8Ut#XlrTI}!QQ5}Gy?&a z=UIkn3mCrovfg+T?!S&OVIjz%*PQL`MR&MaOc$LrS9_=+)lR)F*?OP9-W zSp|)uf7v;+N_aBs!-N@URr1x+<;qXU<+UaFTMw{1BSL`~^1FTjg1Z^an3+Z-GL5XL z!=_<247!##%*Lm|f)ZdsDcVC|F$u7Y$YS!Li%CTnlP_Hwey}w3`1WD;Q*^iE@Pq8n z)aX7(;TiTeHr8vY%uPD9832DAA;608*M5)U@xEWfs4Aai_xjuXZ0e`oc?UIk|0^hT zc&tK?zt_vFaDN~dHawIZgsXD|m69ERcVy5XJ5$-vhZ=aj;BV7B%??Xdx+7v&Gud*)5t6;Vu&j!li# zSe8YL9rus3uOa-?s%0=SKLeJD8rAw%BJz-eG^@d z*I#9o3WObR|AJj1pcfrJPFByMw;hqw>_a@d?09|#-e2?)zWWmU4MhzpeHN#_!^X0k z8}Y_>*b>96;7bRT46S@64=sM^9kz-+%ME|;+p*Z^GJ7xT!4F<$e}VSl9lvJpv@bIk zx3l7kV|-(&C|~Eobs4!9^UUkod2uD&my4^+6=J@5y}5$0bx19M)D2=GO|5|Y)o@=a z7Qy`*cbY;hhO{bi?SixtNZUwjC$&}E-PM&s@+O*GX08_3nJd~AVmYMMi2I@0bwFYT z%y;dV$XE|~>ckB&=k<`Y@)&B|ELOqY7I7nl4PrHfTg6QfHi|V6ZWC)E+%DEZ*d*2; zvonp&;%2yM5w}3NLu`PsRon{UPO%ZfHgOw-qPQJGv)BY-yJ!)cp`l%33*2>xJ0R>7 zTOr&n?u2lUh~U4r$5>H3#x{0|W=PvBwnNx0?t-vK?0|3|-S|4QkNGt27k5K~Mce~n zuh<2ll@8i67`VN3B)XxOeUyP600!3USn*$MuAn5msdqiXw>`)PIqrR*ol>B9N6R1C z6G~L=`0yIL+klQZ>ioFNf>=$DS%LM{-YzvK0*xfjqE zSSaFNV3|NXQN(?lMKrF)<7>FhEE|Zm#gNDaI>w8+YJ}EcRS8s4jL(s1E$%Ocs03$~ zao<6u_+lB{mElwC;BFnxEr+NazgrH86^@51xHBB;bgZo6F8ZOpj^IX4@+dKcOT$jTYb+F^L1_--aE(tJVYwH?ogcOR{NrC9QZBH zh}*u&eGlb2;QA95{l%gDHdmxW+Z^TN+&6eM;rQSs?i!C?cf50sLp=I}BE4hDWscRra4q|g zds9G9I@pi7E*AYKp1sb6I_|p4b+YI+2i#Z?I`3%vgv%!6pZ*J%$AIg8EM9-1z`|+dE{1N~Xzl`P|Lg=)^ z9K-tx=!#=sBL6u;H*i-n{~7ulZcpKt29eE=vPZ27*c;$G8yepKEj^w{;a9U(6)wDw z3r5K}#?FNzBR&5V^(Dv^tF0mDr58YR4c0XYzK@MC;HOXRlcI1$dXov zi+&nDJoJbPXWry^q{3&M$f#e?BemQk{LC>nL~BDL?D8@>mSh`x;AuT?G1545(9dfe zU`zSZIDG5><2c0q({a$-d_@#CeCDZ8(s#kHTWv%5+$gVKv!D|JU+#oWun0Cm)b2@! z;bfshg3S+7{M;#?da4%G6KG>$Fm!YvgWPp0JyU}iksVaSpT-JHPX56#>*t0!36|iQ z4`G}m0TYFwho= zO;cPj{^C3rg#VDvhoTjDb_cwS=hq1O;eC(z0hb?okauUu{DKW(tzXV@<{O?WDmH(0 zj@8NT9IUk*ANeb5#2-D#hp26Vo&ol*6_3@h8od5*tR6>x!Rj@E^P>v%4*dX7(nOFD zkW?r4f??trOU$6otMif8EuLpK9Ugg&4>4{fD?@ig*U!rFL3EHg#BF5`qLe7C&E(gl zZ-pWQvD?;`tf?<+GS&BXcJDIPSz6on)R=qwx~wK^r?tzRXG*fH<$;@R%H)mqAt++m z1Fx{T$ss9dTHwJ z+q=_j$un7QBOUrRtdSHyT*$NGSf9lQZJCF_1G%2!#TIj`6*?;R9PIAuX%$VKR`Xud z!A@((tqoH;@{!FtbOQS$+UFEaj8zHx!IEbZBs7*K|O}SiWm%>G`Fl zGlm40A=PO}9TF~UgC#@W__Fb&i9ji&_=0vVNG$PblGZd66e5K$at1A$Nm}%sLuU?2 znX6ryrOwRKiQcKq^^?VuHBx5vRMI9%AAeoJ1cuKfBz>phOoNoMT3S;xl~5~bV=o3J z*k{rUUFjvx^pc6zsq}SD{h}-B`I3GSv=X-1Wyp3Kvd8MD3@d?>ppc=y;k=Q+2MTA5 zF;7%HTrtu&x@oj#q<_ko z{%`g;GIk{E;f5!gA8wwCOg~k6C32A~a;Y{fxmhBwP#%JH2_t^2m1D%f-&H#Y2ks)q#>eXIz6vvUy_%^e{Z?c*RUa^zjYv z2ZY?Z97toC&dAImUphF;#|Fl_CSs(JwbR-XIeYhXz_RglS6uqlFZMyP58&KVzC!*J&r0j}}TQy>~&xs&4^cP!_d zS(Jj`TfuJt+`l-NuOOP8fmM74y5I5CD*o>r`i^6CHJ^vjV~*bz!B*gx4Lsm(=5El3 zsqmEo)-Y^JkH9bI^Z6Q3h{->ZJAsB{GV}`A+4vI(XB`9XeB=(+ADzHiTY>5SDW6xf z@Zj7ckhXscna{nV*NXyyRfDWG&{L0%#aHv$5OiYrls1?@!9305mS`c07Zq~-!_`_f zj~E+=oj1AUkmCsCBfxsce7yDsjsh;$YQ+9Z*kKG~NI(4Xu)wLU!tnm(dcL2v3i#b0 z^LqTp0zMu`CkvtYqXIrLDb_;;Y$QttdFy=d{HzI{XEvU0Bsjm2PYUCYKy9#*KikNh(A97I)|^X=5@_)5*7!4M432V=gQyV%-#o`p{AG81}vWTg>EJuX5Y6Kvd%v7;4u>=7hhh@r;)z-$MhLVC6AvpRrScs zz88v<-Keu$-WTw%N|K(j?W0IkH@%_ z-(}YtT>-J@17c^Q7P+FboKab0G0v#$A-~Ipw9#$j@vgi|XI|x`)wQwBxv@<$cTO30 z4+%5cV3#)Dsg0MCR!FQo^=r?RMZBfgvt!f>WE|(xyAL>C+hprnLtl zSs#Y;PUQ`+dNRiqx6B#0%oSHq=!`2kA5`$ZK1?#Mxu9PQj5s)43g0oUZ=KN_T>5mU zK7F+7f_^38Xd&6t+GR6Zy-S4Q2fDB`MI$W6Mj7%!|c|5WW&?Bw-;5 zUp1;qL%CNIl1p{mYdQh0=>o#E85|Aqfv!B6ePEVUV+G@D3fyYh24TJ;N~DVdw_|zFT2bHVEow*qj?eOw4Gyo-;dIfvKh_~H&7T9OPS@iniJnCEN@yAXu;pXEaF<-c)3&?M>2 zaAu<){_ghxfM>=5N{7Bhd8lpqSJXyo9~b61-~y`EppicF45zQ|42Y}_pJ(q|1hv82f1hbXPtP8Ll?jLN@CF$O z?rpWUb-*KnJEO?ENRV@1BrQ06uc^4tVlj7H7Z&QxGnEdgOz# zOI>;0h7z)J)yyRo+!xihK5f z3SFl#mV#D_Vb1_ZvQ)uvSoRVYz7*KE40mJ5IQ@W>pp5W6az$8Oic;osWVY$6dr3*j zHH(%-B|7^2ZYR`CSX{JfBf3m5O~Lq}tFXpdSR)nGO0`?1#$B$) zZf9e+w6#a-*(d4tPpd67W7hL=W1?$$xpR5BYk7lndBfC_tx{H_q}w*F-hKrPPi61N zr;m!Rj3Q@7kt?IxnNd9zzv&v|qX~CvO+%=9C?DX>Y1K%~NYF^}S>>2!{NSYTRC2A9 zR43InPH)>Owe6EE1GB(3&^q=yyf>(vg}ZHF3WTVFT~DIW4eSku39Mw_$3Ly&J3?oo zVu#8u>ceIOp`ojKMjt^z)I*zv2)lHsUkVwR)*gO8IcqH5wWP$kq{OwP&bg#+D!Kj| zqX>+0>f?ush6XPiqDM5N2QL_Mz+mMvq&W>~Ed!6s+HrYS>>w7Jo>dAD=( zZrA3+&drA@nHB6`2({JhRXGBpx1ddg_OMOtOiNDwY0b1D`?4WYGUboAzr5##J>yMM zMYGh>5?!Af2LNGFpOR=UE>EguND@O=yktB2q!hF zbs5}bi2u42ZZbuH>o$TDJij>}|0HM#%J>Fc^%{up0M@RCg9@PF=d2c=eVz5gzR`jo zJ{%?ZvC0$p+*vjOcVA%rSf3Na&)pG>e{~k}bsh$5rS=F#aF7V91D{~nCFb`7m5l?Q z&pnP?Z9*`#K|o{iJi7+&xo4hxo*+zG=^@j`!JW_C9cTqx=9D`p@YVf%2m)Le$msz+ zy4&^{1PvkN^P`O3-;ZuaYQp724b8L&uKX!U0p!`^bILu$oZQPZ^ST6?(&Y;%1&Q-3 zc04U@B+xoXw|gK-qoA&$6ynbZ*udeqyY*Ph3o6|CXI4F&aws@Bh}fzUb(z%~#us63+VkC0=pZNNCNavepaCToY;jp{yK$EW$o`@+{i zv0lQP>@t`2;{IA7WcG>Sqo!(0Pn#K7ChQyo5gwRGRR?aq=7!Gh{Q@=`3Nt;r4AV|C zDcWnc<_(0A?LvNPS*WYA4+N8Em1H9V5Ie6~2`9!oPLMsa{BxsfGo35 zeC>y_7RY3Y2i82`pJYleaHC_QqVWTT25s7NLsdp`d8R&MsuZF8SyQc*Gz`?vZI70d zgyHWdtiKkrwZY$lUl80~hus0R=KYLi3@$7y=K_M$y>Na3{;-^n!sEBOaehz^wA>3- zGq=f@-g1h;+spYJkvV}pYphnTH3eNtX^}Us7Wc5X$b-~k?P;Oo(&8by7laNfZ)B48 zt0164$I%5s$F0O9<`H7tLdR&fD|M?g6*iuBsiS);wdbgtKtDWM!Y^J%_HP)lXJJ6Q zJS(E3^?-YM&CUEim}Il%fLVkg?@PsH70~;?l<-=6RZ5_|+4_>v{Q)6!m;^+)xTI@o zBh&5f6rF5&@1;8~ywb8G$Xq^IOC{%{oA=kqmQCbVODx%=$);>M327-lZuz5`OeYzf zOMzc%>XM&aA2rll{_K^>yB!JAdkLr8v111;K9fnF<_NOz(&nex9zq6n4>Wg^?C*Lta7HTno7u* z;tQmLt&*;BTD=YA4x($wnpQ8RIYH=fWt2KIN~QF&iT#qUd|F*`S#1X_kusY2Z0b{~ zqmg5+l5WMcIu`_+m;{$8$7#wLSG!hJJ6BXoH4UzsCTC64l&M)#N75QIq{XYHj3UsO z>58Y-Yu`^?Jf?PK7CSSGCpJwbmR)1~G)=5i8$0B8x_%}peMp$r#zWQ7nM1;ZelrOW zO>6D3kdlz%ieKrBUpZd#^7uRwTs@@g3K7>)W(d&ov~feX3wgi>Kp!yCdj3ZbgCmyw_S+q zQB14%fszU*l=1QQY4s60u*DM_Tx+*G*KU`Jo1~^@N!M~gz2npO0}R&~&b>eiC(wAW zJnmQ2T9-P(sZJQ_a;cX()k{C0RYJC#y#`o)cdiRv7s*UUs>%bn$;9Y#U+(9=0$eWu z58$yvjC(rfdJVh;L``%zd$$j<^5H)gvhkoD!6UD;p=xekopJ)B1hCd=4L*2Jlo06) z<>cQ9{B9+iLLNlJW~uNt_=(DUe7tt!xf&L&Wrk1_cJIU-Xl>@PhL4RCRRd5pROV~r ziOPv=kbYPy6vA}s$Gy!(nn6KsJr*FyL4bA&D`CF$X9H&v55ojWQ;W}R;zNeZ*U!nG zix%V!@XDKGQ(&|SR86b%g^)D2@VN74|L9c1cBGqWA(Gpj++L7Y&UA__^0qL}f(+2^NAK02Gl)CTkBsk}fwa zSy*2m(Wg-SL_vqCqqWy$`5Sbq&%`ixx$-Z`)%*L*eP%i9P9k!WF`)3|OY%G2j7-#; zMd8joa4VgcVEc$B4mPLv9=p@s5x`K^o;(wX;6w#Q9(`E~U(gRSEP18@?U!V40s-9R zzf%1Eidy>8pbVjkEG zwr4M344R*a?=Wdpeoq5S7EFW1Y_;?g)nyi-O|Ybi85tRtC9rrGpf6N0gXhrRR&-LA_4&O zR{NH(bsOV)t6O)OGrZ6pK2pU8_%8%?!>2X{CHD|GK^Q+MhR1kU<_2fx2Cy}3Yn9se zPi0z;x>dug@SBx<3M_JBQd}?*ptPw<(aP9sA?&i;qUe}cgHYoh#a?TmWy^acSctAt zRBm7e>s7{8Dp;SnZF^ce#X}TBS&|46I}77X)x4H$xa}pfp$9*$mH|{M0Z=*ET*W8L zOLe{TI)zO=eY(lt-3TVRtN+W2JgsM?jh(wV$+ zDt?s|mp{Hm(v?iBOX&`r{e11X-j%z-nY+Q2yUm%qZED$eDH}H9Hc2N=tIby;qmEY* zqhdk^fmK9zG8Mn(IuovGK}2n$I=#$|9#rE+&uK>O<82cOucw|%ors)lm+Bi`^{vkO zR;g~Mw6jeL5vR50E8)>Y${9dH2`iilD_jX>&ICYE%D||h%6T=%c%^IAM(3)HQf-5) zw%P8iZJt`yEI&SU!LVYy$(6s!nZIeSfvNn~8MiiL#*jD~1Gdi7{#37#J=Ww}w$8b1 zos?ZJMO922*3YRg0-(`rI*DBLohj>q#NgP| zn#;zxk;<{03&xc*Mw82!=`?1#j73gk(L}l%H5oTcjm@%-%GGFhHrfG>6|tp66H~-) zAetBwT_<{@N)km@vNJ1-PFGGFSIig}jkY?Ci%(ZwHpWQtE5;+`nXyYNDy7OMDYkjq z*fNv2=ycgdW6W#-5OiI~7~^O^H%is@uIg>h>TQ#QQdHBg49&C4$RyoZLDBK*i707x zwN$-nx~5**ywkP0)492Gs%E#e32^oyN!LHE9sq!y?>H8{sRSACX4@=rPxS18)hzcUEw8TBhfT`AgP@ zzkLTNGvFm06hv-Nfp7Z`8~VV(pm+cyrI4ufa>Y@Kyk`d{fXb$%21BBICx%0hN`KLU z5`tHW94Jxr3DWDK^jc9dsBohr1)!r2Ps0Ss-S*ELrk>W|f2~K90wcch5a_R3_CWxI z7&F{}Z9C}Sl`X(LaJdZU7jEC)NWSPk`v4H^fuf2-@+r z2I03wJ~0ul{k#EAzXo6l*<$IB>grXX%YQMEjkIe9RYz3)8j;3c_``o-RSn&y<~I)+ zdB~a#y4``Irq!dGrb-)XDg!5#y=J--Qd1tSh2RpI%imI+-D2L`+SyH>Q>4&KwnA7H zj2j&gc3wx(Lmx3Vkc}MnWpB#dNTDwn9?v%jqW#`|U1lq|$H*JC-Xs2Z_Z*zt$@`-1 zP>Mi{5{m_36>Q0L-}KtL$v)&K??XiB_u75teMxTFbB0MiBFv}w-m=|TmP26M0y5w)|v9@;2CE~yyKHR<(su)PPWlN@1e`&Y3lAWj@UL&#* zMW}M=o>DQb-Y^qkJig&dSb{4o%^8+b13hY1q^ajeZ7g#G| z>!ywMmy9vjG(gB~C=9`DA`_K1+U1PQJ6=VHDrGc7O357$d}--8=s}2?V``}j5 zLx-g6yrAAKOT)-Lv`fc|Kr^7raj920)hj4#&Ar*X7FNRTMSO`Lb50pX!WcCPGibO{ z3D-a65=fX*gqXiYB6547lmV)bXJll)!y8{0Y3z!UkdOTHe=J)R8&{H8x*-YB5Vx%{mW5 z1@A2BFq47CMNLOA^ETE19r(5py&9X~kV zDhuatuGaC<^HrwS^OZ`2EfDGm!}fZ96AH)9dZ;J@2XBTB7;(;KzLJZyY4OHtK0&T( z;)vj@rmFVf!4Oe57>b{(=0k_S2oAzuZ03cCC|fAh7i|OY%6SfINwI}O^U+)QWw~FS z0i8^-1w+9FPr-ZA?MDe}TNA!-3;!P|1}|;kvrsHHH}I(_4xefO=b0G%n+Cqu-WLJG zN(CtD1vk$#+k3#N-;y_=1NP@}qwu)?t%Z$sAcj7moSCG{?tC&V@9b^|IV#DbBy5A~ zs6DJhwy4hOsQ1_jC?=X}>d|L8LvCl_mik_RfOwl*Audy6YLh+nh{lvCW4+YcUY?14 zLG%%nt%dG%nPn#I=E=0bg!$I?^jX@>ju*Cq=MW6W2aSA%n!@@!2n|OOF4zW6L@OQr z+xSxCKTNpV9nfvU)wbiew)4N<_Fh2P>D{B@Q&HK}L2D_vGf?2WXmt6rE1z09nm)E) z3dx<;=F!yL@kJBcoq07%b)?PmI53H8ZyE-jUo5anb@`LwnIKi|Y(jLnvo zl}g!ji8Ob{=n*NSU>y9wR$tH-InFfmHEdcf7g$eu*QiX=gv|o_l)^ zkcA7|@7|tn6M(?>&O_#2P*`|uC6Gr1&z;upwtl+NR}E;Ii^$U5-n%Fr{wzy?{-@9- zp}nhhSMNuLHA2K_rH;)N4EE)%x`@H z0g(qqxpZ+(UEGu|;kc6A2jj$3iBed~=#tTc<2zs8`@-I##3|hdc<94~8=nY!IBaC) zRM_INMb5BQ$Ngt?dXoQiR{iN_$(SaErH@+1awcM5Pd}GV%2j(+dOCchW;Aq4m*vvs zICVKwy4>T+cf(_jAC!ESj2wo5dRuv{0`#@USw8?jmG^<(f3SSA9ts{_{h-Q6dppvItC{^gx*D7HGpFH zp-JB0F9v&66+*>IqZsOG6676)2-;bj0HPhdA%i~nwoZW_l^yPq!U zhY&tfrH2zaUn)i1tzz(kBF^Vo%WPGb7n z`N6qf<({>$@X*P3;Dknm`}$oQaXRoDRG$2Akoy$9X;H)TW6489QuZH=) zdKHVdDTo6baUd{}%MAT;xQy{sc8eXu%PRm37qOlpx0Hh^;#3-|*IM$u>W*`#QUgNa z?W}+`ufu_hE8)Bz$@vKqTso+>sR5+=dX;ySm4)^e(M|4{fZa;8D3P<31sil{VS4IxJhb2jFlJ+=TrU1kwg1(^5+6lOY*jQu_!vQuaZ$MABk#%4gaqBRwR&uI^SoqzToI>vdtzCWe zI1a_+n)>cNplj%sQF9-0mm#W)I(jmO7+G5FwAB1bnt=%L1ObE$CtxV{_cTYhCl3n0 z$F!DGNz@(-4%yUIfpWiqY<~pmQw)De)4Q+7+S%SOdoTB`1{!F0!HXJtvTXhw4|EtX zSsIulS}oMU(o`##q$43WL?j8&&S32>KGGgTx&zQ1YVzcyxjcT^)EYx=H`M)Nt+~Aw zPCSurfhmf(=y+rSQ?J$1*Jkarm`i2hgKSuqr$}Q#LbBc3Ym);ci9!@Ky1 zXjAe|bFYsH86rSBIbw`vUTaOO2Y0GM#X87XaRx-W6Cr zAPugDfR0p|*(&?ln61=;;~sP}7P6G(slKSX+-t1L*MhqawIbPJ&db1W6xNn^1!AkU z^-C2{2NTcPB5VIXv*lrea>>_3+)EX_oIDN6OVKUf4XB_Sqy#a6!FedEH=+|_2TRI; zultA;aUvo!N9RO7Cg!Pb;bQ75hg|PHGV<~G{a(JWyUbtNk2F&sb-LQw+S}PSN1wcu zOg!l+9zV`?E1OAYlnOld8XVGHipM*^n=4~gS5I4OS8qYas$J%8^Pzo~f?)!|2%Gx! z17bcpA5k}+eR}Okg)2VW8J|5BzkJ%b+!;~#nWY2jOJOf5dyGKB##eUni7VW`K~z-z0n{e@+Y+{LDYykr z$HDvQJ~-e$n`S8@x&9kRcJPKZWT9OOgfW%h&K7xv^n$z#dDg<5%R0m$S&E@1sZ3IY zn5@8J1*hHc#twdE(ItP++HxOK5Xt*bR?a1TulM`!A%ZdqiBLi~MK3+KrZTw=TWjzS zI`{;8ESZD{pbnUUS-z50`BRNp#^|7H@fzpiHBv_L#PZ3+w^M(fIvFW#Zjf|ar`3%# zPx9H&vB(MKRLVLjxm?nLzH$BKxl>MVsXX76THs7AkQNn=gP2`3tzAP574s+K?DEmL z$$Z!PX6O25Y3Kg)>-W>L%f|*?ITg;F3TgRzX}#Oy2Rw&;o}ekOLYD|VSPcG*mPIw(1>ssw{>mJtGVH?-6QQ#Y;N3<6we)amvo_B@Pd zJNOk#a>oA3635~ za_UpS9Xr^DuINo8Sx&t@{+d8;LF5h&bLo?v`ec_r*Qp1!&y>DoQtv8na+Wu_%DbKA z-BM4#tLKQb=g3q!91gT!Q_+Izf2Uxdt7pL3GcZ+t*r`7}8^{EP%^H}om5;q9Z@%BsFU<{ z*94O8=`VETpLKX4-5Nr-o{5a{yg(DXr;MA1RPP3a(ry$^_>S8q;cRB*1#K0bt&P*# zO*8X{6laW)Ln>HqkqI+V$up*unHYO2yj^;Kc)K+IpTe3Z21p+_1IZrSG*&$4-WLg{ zqf+J5Q8T6(ScJ6TC!`>Fk3pH6y@kN1?kLvPCNMt>DOwECtBPV1M3YGZ3DcKC`16U#K%2>Ud0Y@eG`<>f)O*tq_ z7D7@R2cj*oQ2Dn&#@;O|L}iyS$deOHyI3N`f*jfe(g2)t!p=RsjApUa01_0O=2zh! z@Qzn0ZAy?4GvPxQd9U)(UKVOy&v^MS5pGu`x|nDGoq)Zdwy>r8Ud{U(sq~EpXDvJ!%Y?9|B|GSmnS2$j{#I3qpa>^N1QUz2(S2oA1II z01-er=zGMs-&c;kL;&4DN{PHfFTl|h}1wZzkG0hZrg@4@upS~Av$;VQTrst4+QpB4FokOZx;_|r7amu z*|t4nd++x2rqqF8Pntai^q?d?y@@DFsaH86&C`ziOh5fRfUJ4j2kn?G-KM0QToOnu z&%?0xc~jPGWc^UQZyR z^qZ}HS)NK{IO#dT>Ha!^NAeICNC;VU$mb2SGMKW<0)*GN=b2IhWaBIyL~4>HaM_Yh zKor#x--M+vD~dlSS0KT=KL|jL3n1RZgpq(6Z2i2zRvY0HyGcOmx#Y92HJT1)uVojh zh}KJLyQBi(YbM_Uzz@F#E_;>^C^Haui!S-A;NW=zvVIO#5R8?p3a0Q0j)}Wgtaq+h zFXe2QERu9p)9Q_|flzSdeenCT5l$VsOnFXI-js2r8}k&5_uI$!NFf!|+VwM`CirlG zrzrX2z&qM7VAR2>Gy1eyfivocd|(eUC0_#=lrmH{V~l!Y-NWlfwv6ue9K$MeW|U23 zlusEehDt7l8ZXBujSA2DJ>@r6^tAs}e9mbVb#5u1D4WQgES9RbP9Bz`?AxXd+h?Ma z&l{3w{h(sNSCsbM(*apP0Q`Ri8Y+9Z%wLmQ8;C^ul{GWmQEa;=$!18YPU-@O;S|zw4ud|RyZ!D zjdbtUTc)*J!IK*92qpuUtg@LPy=?Dg=cWpcf%o&uY4xhhLHf^U1$c0?uy+M4_}hzu zOT(CRh9Uu?pGIXs_%qEK1ktMjnHPq@SIEPq3QrEIqs6 z^hIw&xZ{%_@*l8}>o?>4oe+sH@Qc+CK#wj3PKPCg!|6%mFQvovvYg~dpz86{TzSB2R-ii`Wt*1 ziyp_nev|(mdIsP77H?;t3U{b~$?sIb=kR)5{BsEX1jk(D4TcIrgx}uQL-K)-zI~S0 z$xuCmH(li8(2sH7MLw7PeYj)nBG0MNOZfTs_+@NlgyWCz@$d7{mh^jGjnD-C^#}ZM zwk87a`j9`2_T%4v$ln7LbpL_hoH_wbSSCoV^c2Y3u!KD4Gk-}Qog_{#-V@=dxDFUe&K8cl zKjHO$UU~6-pTL*6Mj{+MaQzigU9={t8{&fT-JK(FQ2idKQ#9;VXSJ0s5#3C@H zgb?!zb-eST_o1G9iw0~zYB7xZqlBLzM>iwjV_BLZw)^`wzY~k#OK@@yBh3+cVi7jw z3Fpuv{9c}rg%&yVD}`?%xE)_5bcV^rl~5dYo2=>3CjA{>V!CdW$R6JWGB;)f%LL?-@^+7*kCZs>Hlpajs%0Pq}%Rs>qytvL|BeC3PozGVe z(ni(;@KqD{$57-ue@l~Bo(ftQesPVkU9)~(xBvo<{tiCJl3OeUCw5nP6{wug)V;so=$W5?flu&4VVn9RcFq)x+<87KHsu1OswczUAMk+z9TR%9HhC zgS+yr?#dhgMdjQ6oyrZg@}G#?-IX`d$~mzapDhuRhFcB#P?OgHMR*3t3SXHi5y~~2 zJpLnyfl=A9P6)xfONGVCWLvT&6P5}w`WbuUZOJyiMeP}9uNiK^QmGITnGBONH?u&J z&&hqZzF5Lu+3mOfVJxK!PQL-skBpV#=MFMRMVqC~d!^X!X=Bgj=){phX?f{%blGK7f|Oh}Iq2HB z$GLHjRMjOV?wvMu&%|ZA;tJ2l6<&@{kRbY+|V%Hno;0U=!-tS=Kk93H>&C=}dCkv%XLHj%A(I z0LaNJaOE~Qb3xAxr?Lm8au1LCUrf!NDcUHd6?}Tbmq}P8rER_t-|#-6cGI+}mR_u% zZf=!!_DnVJ`yYm>L{%(&GebIL17iB&iyl|OHHgGOML8(D;rwhroX~iq?wXtzk~g4@ zs8Niytz38)RA!xA~efD0~ zj!$n?uuR%AI4c2Nx}2OYWp0rgwn|$XrHpN^%MeC!x<8 z29n~V*dAm>n*OH*>$nuc_coGJc7eLY_U24a2_ELT-T)&eX(ix$Cr;x9O=rUIp z2Wh`e4j^G}Q4mDG^DidR2eEn*E?0FLgbxb+JA;G|HKh6vg9J$V(BMO^O{(3&+=nT# zyS3aOw8HLS$J?z!8A31M&^F-+do|L5+k|Aq{w)%p6NP(}sbux0D{+lk*uwtah@UnK ziOMy+D)GiTAIFSYc-PM_lVp)#WGp`TmHk3FtBG<1ScGx`W#g>}g{5dYzVDzA$+kt| zvj>H9Y_<|VNB-S_+YbrRY)6#iTZe?l{n(x;$C_ipvud;hUmFr^>~EtS`%Vc)R#6Sr zxAFK&BYd#<>0zNk;YS_8GD(Bg*#8k|uw03sJ;#ONhEswD+aD1GwlLap*CWCSgbrfu zV?ucF)8wT-O#(~;DvnI!!pDRdzfqF#T@sApJ&y@D?P_xUCSecv5eb=`O0?)mnu!GD zJiUdS36m91#7CcgNz6iQz%r95B57$f3km*>9CJ7!U0Tmg4Os-xc!6PL2776Yrd})XTGvxLX34TL@$FSlXLRv&NnVRJ! zSV4kP5^N#?jM%$dkRjk0DNBN@{=krqI;`J-?{L{|NXWfr;{t@jYq5Sp$hB~gkFG6G z6tZWlkxp1V-hQ2dXf`=U*oY=KUuQ@>TZ+1=X<`~)KM1S0YTqS@Gutl&Scm}N*jv0`%Vxq|ETdUhut zDXbh#By_DD7ik1Xru2lql~)T^3c-_c*BOXr2M|6sBK$_&-T;c#4D!swbiyIA!CKhF$uDHRF V_{I^wWDP?4p|VdHdO_Vg{|_0Xk?#Ni delta 10181 zcmb7q33yaRw*RfVRlRrCPP(%}2SOGS2mz8nSV9&O60))rKnS@BTS(xh5s9~11X%{Ehvkx55M7wpvXBeA^be<{GP41w0sl4hP_`icDd=6u!>K7%Ik5SPEmkigDuf zI@@}o4oQ|Z)+(K3T_aTKr2s&K6bNXPf&fiYxI}7+L~E&}hyR9JQfH8Y*U&1n6aw`Y zDHPBu*#HC93-_U_!0|$o{Zc4PYs8`KR57l{HCE5{*KEAzq8%|&?WASqK@|QSfdljNAm0)TJkViv9xqzKNjWgJm5=?Q4!2Wg`57#pKa$Z{@ zu;4S;#tfynzi|PS+*~Pi8CZ5Hp256TC{ArF#n-}+pdPKk&3d#^9lQW%WAv=*T8OV8 zbU>Zhh(9r+W9r~#I8BELt6PD6$igPC#P6XW)xN8+h*6~4e>Fa9Lb2)(oAE6XnV9bp z+*g!s#51ZPf(_Yw~l3^Vq3p&cmJ4(wtip#F+gQ#OijZXlwZ;(cgh#KjL z>fsZiv?Fz(pN<);(JRqCeH6;C49f7+!eWj3bi&}w?>W00aYdLW-k3z}wC|09MmqdP zxS6tK4=zs+g+cJIvjJe8z=T?%3Q0m0mVz{Oqcz4VQNo}wVif%Uq+oWygX7}rLcka( zm;pBigJujy%@|CYYR#b95cZn~-$X0bo7?ak7PMA9wg<1m_8PM$(+^f4BK+@M#O`?( z?=tPbUFkNn#cv|J=U}motvHN~?C^FR;b}<>-QI+adfW`w>$b4AWNc?Gf5J9uQOx_X z$GbMspm5P*a~#`p8uw&3|AecNmA!Ks4+)_l=#ph#LsPBnnmMmQs=be09f|Dh>~naq z?sFJP(`yXv#UloIXU_G`U*cW5!Y2s1xDo>yk0;|FIhl>G`$?xD1l8d6q{CoQtM}r3 zjDNPOd!NS%dPLRp2XTQ84N=2Yj4_H=BaY%T2pPB?#4+8gc#3WXm!~l4RqQNF>UUjl zqqe7-d;*Yzc^Wwxs*#S~@jeksJ2JEUv|_wQuf!$zD3o6rHquYa$93}jjTH9ft2ohg zN44ucSC@xkDU_ui!x6~FijLv9EYO}6wD$+SX`9##8y2=|t(9-t{kIi$*LDqK2ae(2 zP>FirICkq$1?%@FZpAfbb`W+IYG7@JD3y&qjcum=+5rP<0!^Mn;al^}$jmmJ#(7L8 zIF zL=LX1|O_<4($4mvI>`6Fq-K7*bmx4XrJ#Er@`5))6Ud4XGL<4bw^sAU_=PMN)cgp4O`PcB>Ik zI#w$kSz9b+*A~?2q)|{-BKCR1P>zssNlWRRYeC#sS_VjR%}5&66g8 zpjpyH$W=>|0B1{+0c)fwfRcpZ-_$3tRJCRzuBw%$L1CRV9dM2`18}Z%58ym)_s?8o zsG2X$g8Txh8n9lP4Y*LMffY)J|B^QMT9{>nw&xpRO%zt4l_S!3cfN*5!yt(GM&q zS3HV;3}V0JiqGMj8m(YmdEz8|D~OfkL*Y+BYFEBkfzVJkx&T;Yv0phE#ts((8O|1t z5%;1IEUXA}BiTDe;$D4rFn9uR8z@g4%gz*wlh7y@GZyM|)DOmrdqgx#U0N<)G$To^ zoF;lrs7dWrCvHUOMfJrw;_C<{;j6Op2(treGv=xKHT1~Cw!=h&+ci9Yma_QFPByIpPEByL9N zW%bw1Vh)#*y+wQyq1V+F+W6PR-jZ=7gYe>VrqcCkay3xD(B~zag%~=(w8ly(lB}H+A<9;$S}V_iu^`CKSki!DK(Osry9I z6QfIND<$8XP`Y{|hFt4I5I^Tn*)Nd}_7sHRx59ic7io?gU6 zQM>v=0{I!CZ`i&hatn2_r~8sYX6{5ZuQFH1uJk3-0~F$>lBm#o1-Z8*vbISy+;b>B zj8!bh#s~>ZBvROq{HGl>L=vvoxpfLVluW`xB&yK;_;#gU(aY(qB81vK=Yx&dZP3!} z6G)rba{4k?Q(n**Pn_W%Dk-Uyt8ln{=OWT5MT2qUH*dr;} z7UwoA7MUs*$+933Sn>gYzl0L=?UL@68E*4kQ?M!+1|OhU00R}XHW7XI@Q|P_lhtj# zEhQZ4gA~Hi72{tm2-mD^PaBH%_#QLp9v5~|cYxAkP>Vd9=?JuAnK?+g=_jAR<=MGYWSfx!2V=YgLp$z{WyvX65 zc+l2P6M~AZ=yt^qmOoTDKkx35x)t5sBPjiL5A4cj4_BjTmSV->Ll#FICvJy{%7eiwn*;AjoGv9NP47Rwsc&Nct`=n=yb`|H4Czwy_<=%pEE(uC(vO57%|hO zlQHI1kdi+J{z*o*C!O@0)f`z+J+B^myBeKMu4>uklp2>d)Hha3S9_7%A*pnILItpPenIw)K%_K2Y zeua?uHj-+AjNjYsvIVWQ;B;|X9 z;x7kk=mlWt`lq#J4Qb>jy^WF!;#2VWsxk_ zdl;z?^o0sBxu{bx#RRM`?TS=i8%Cl~cnK-d3+MF4k~HyLki8^DJeNXC(p2AYvJ9i= z+5Bu$f{Ii%n-q%>mbC@YP!^U49jnx|Jn}CQ&fo!sBnzQA>Vh%Ej>KP(;Q6gJb!(o1 zoh%{_Hnv{0vqd9_nf+8m0$A)yF`SKP7WHi48WhT`Bcbf#2?)-iNdQ}2OhQS%Fe8+G za<3T04vru};c%Dpe-izDqbO`uF&Mz8c5DU{(3k?Nz*xS!Y~3ATcMWuluHPBxU3P}N z#Kx8##um?$E#aPnk6GBY(IiSVG-t9CB_xxXOUXi=Q3u9oVtI2&Dsz^Tv@sSr2e`^M zUar~fCg3WY_{JN+E6lv&A3SxATf1h_@A7OG2Mg3T!NwAt?4xorG~j`7$o~`a+*-p} z?+P-9{VSVT!UusWgKX_V$!$T&`$m5d1UEQj9mJfYNCfMePlCh`EX&!LN|Mo=ADjKxY`b z(5Yz3iuN2V3XOwhUk-=mUF)TY66*G6O=we)A~LiZE(W?B5);$+_jQGK_^x)Dis*^$ zZ)0W9j8-Zbx{Y#*HY|yrtFMQ{=`Il{TGb48VR{)``y*kQp1^-lT@VaP`#^OLH*vw$ z$Nxz>?l5*?aAKd-)824F`gjqEV&kevPZOL9u*O^s?3XGsM6aD;OVZiTO(co^a~cVT zOW^>8gbmO%)#Hu|U*_Gol9H%g#?#zm`PKOXPkB982ZiclpnY>XyX+!~?BH}_O+3Jr z_g~PSE6->wM^|F|w8su^iyhn^o7WbbcSE4o$QJ8mwrK{LYrbfUxNe4mn_U)0W|BUc zgQ4dGeR3m(eGvesu!UowmQLyq>DL{IW27;6nD~0{fZPo6^$eOjjQw>v8Gzq1sNXIp z6R=hO61=^MUo_-T70=bfc6M$hiDoC82|+v`E}A5G0C|9H@brtbc}8u6D8R~_gBLb= zVk>NRDL}GzE6p9C1W1986L8DCFB`WGYkSMYDpr%Rk-?fv4^aX^0}zb?7x*APx$qw) z`+Kj1oyp(^)Z8uKct`&K6hWE&K~i81Rf54dLX=Q0hb>x5Vp;ZDqK%&IdyrVc^#1EX zk_X=Rrw5^KSvWPb__a`AXY<#R1WnQtKN#7IYl%^`y6x=X3S!q-^a%sT4#f@_p+Nlc zdzd9BDR#-)42E`hd-GlG*{F5I9`%RL?jYBlrwJ*N$?M3UP!w~lCutB26t5@AD2Cm; z9uCeP?2YxLX{zQ>FPSulJF}sBVXfaUbH^s{;m`pKx+Da^x7)MInRB;emN&spUBbgf zt#16hhB@`M-CkSm^ALe}zXz+?NQy11Ijfc2biq#^-3X_0tlG7a6rg}(+-Bq81mZS3 ziH+GzJ~mwqjMy=MU*vl|2D6n9lZ&>#-sIulz9WuQ9$5~4&l_I;K~RNy{}wV152!@K zzLIdjbJ@8zAm?p4DL~qgv9g!gW(uf`5!+y^gM;S&zXr3MNz|qWZzaPKN@Qgo(gy-4 zmxoO2Rl|>+?(fbq)C#2xo{c1=V9(-bY|ME-CM;(sagbfaEwYM4c;Kn1v4x3}_yW0O zwL~FJfi5H4Kbl0^mgyuNMC5vi#<>Ui3>2zo)rcmu0c*fw1{|R_?C0(oP-XU*cZJ?A z)3cl>2%JuOw(1EI1}DoOJF(KqB>dmIXoI}6l7vW#K{7OhFHnq`n{H&sk--KH;ypwK3Z>vr5K2$K2tjkQd7SGh%@TpB+%t&n`=dz^6H=E$YjbA4VpRVORL=IcZ%yK@P*f1(`4&i^4X2&ytw@UNBYP?roc$WsT19iyB??>X!NKvdLN3 zxTHY>l(U>=GFYV`KhNP3hl>D9k^p#LR{bZ^r+7(}mVNlJvq0;pg@|D2-Da-sA8pSh z5jl<@;C(po{d39M$DjSo670359yFgdt(#IB(95CrpM4Z6erg&BtMNdNu}~0BS@N7f-t0#?4hjW4tyljIg9=}%%pmXpo;kesw$GHaTi>6+)N zuVsDOiHzU1t2^7txj;PBq0YHRo=0f58vGT>K=6(?=4+CKW;6L~qTpM0)%P`-u7l^t z((5Dv*ErOBuakuav_Spr770LT0qgt;&hpu8=g(v|YGl9sOcL>8hZ_G2>7q~@g=r;_ zg_!0;qn9v^M~iqPr)iPgI7hB+YC7dmMUj4qq1CsPJ_tnC(NxQ9SddGBiAk zm`0$*%xa`ggTKh@Q2(i;F&N3bG#-EMP}7Zci-_vf(-wN1&tr7}Ek*Nq0Nx*8cc>_k z?lGW+>N9p)h|xm!O$7Z5TF!Px(iJ!)LXC`~vyJehggcHNLg-m+01y_Telf%n+LPSJ0L!OBAz;NMTB}Ho{C1@CSEhZU-MBajmB#u z)LW_aGXnBI8B8q*wXko}>3aNX1Y43p??-v;dIo(6Mx|uZNy#nHT|UVrX%R8shDmz= zMthQ1o#Itb@YDwOYbNc9=Cha~Gz-5Np-zPtT>_JzHk^(IvS&CQ)~hFPd4_LUZ9}hz zY!mk?PN!2I!Hb*NzlPIPd@({z9YOz$Q4PD44JxST{kR_F1v(b|5&V#pI11LXGeVs* ziW+Y>i)2bJwVCf~%O20Aqp&ej{WzEA(6G6j!E0R1LwwlZ!4V|SVS~odTHG^IeQXT9 z#W`&oOS7Y%yVLY8cD(Gozz+G~@`FlfCeDdevr1?J#*-t}nlkz$MG~7ff%ez&PR+6G z&`mKcz$MpKFPvG|STEJe(<9ZFCeZVu<&vqWu&jLC=)9cqquJUip!j8xs(vcnf^bWu zx}%C35Z)1~K0S?wi$VXsYOM7hnAYw{)ijfi)Zw=x)#6&3fbfTrtf`KsqMq!TI;c3# z$9s%js{`$xh*THPp&uf&i;bB_$IQ}{w}&@a%h%(Ma%HX438+Xi`_+7kH!>3d3x|_D ztMz^zQkQ}n7uCwuu6d0OGhK6GqLS?8{EjoZ>x<>Cj)<>-SM5`;K(K&28fnxx$hR@^UU%GdI5ko_&qOOI(-Q9iWxDm(fMo z5vBff89j&K)%n={bYba#n(G}wz*+07HF}#*$-+07{Kx6sk<-fVRcIdm2aH>xAL8zb zu@$sGI?m3lpxHP#O4YBV14TnTTxK6d>ylW`YPt*c<@c{JPrucn%m=^Vu!D7?$q1>NOcQB(bm7(x~1^5K~0K zQ=7E~H@u{nHzdKMr&V%5r)VwWkAa2>>*y(Pd0(xgX(&mJT2G%rkbP|fofqNnu7~cZ z!RhJ;?6q%wlA7}n4du-yZlrEAZ`O}XX((YiTWL7!+(;Kd<;+cRmL{=7o9H}Il>f?d zHdDJgcr%Sd_G~FjiM&^6qS7!s7yr zHnyjQhGXb>eYY4!ozieu5nKES4YL>T2h-vo67FI)R$~@evP=8}C$6|h*TSP_u*!Hirbcb0j{lFaivP8+52VW5!p7YeHva!A zY{LISSPz()e$z;4;%#A*G-0AN+3joyQX<(SYiW$wJxS3COL^S`wxX?QD06J18P>a& zl`D5LTtydcqXYB_N`eg6cN!$L_~Y#qhT&5ZnlR9=+r1o0 z0uP6w%&>{xrLw6S3pU|V8r_F;(fzJDB|#xGEq*l%0`$vJ2#ktrlU=Aop`Mi0HXB$f zXIXU@%PNf}n#O*66vjB+zj8DFgH32$*vSC+O9O5hCRjhirk9D(EhM!T9L32Gv6;Q_ z12G0j_x%3s(%t0T6nJLlX99l>v(EgV4Y~));8Jd9D;X_-1wYGZ3j3AOn5bDwJWLv% zR{Yb1_j;Rz>Qmf_N}}ib_qMHhCN_QtjY8F|aR+?|Lb4G%=@ewRq-)adqUvLh!G6Yv z;K+J{zJg$~$9B&UcbW^hb;n@2OwX-juq18c?;Of!zHr(cK@vHGtkxhM;wxH?i*U!?6 zx)siZr`+C*g7=iyS;pNTls8nS&g@5o_GFIh`<-1LLPH- zqUB2bxf1?I0rOEQC#CQ!GmwOG+$9LH71)POu~X5faj6|~iF=Fp6z^O7Y$=568CmV= z6WY=zc*7>n_Dc6&NMHI?*~NtPjuB(MiCI32+W7)Kh7HSf)5YLEzI>)0pquhXQ(<5Q zzI8(9^w!E>U7b!GsM1>mW?c)&OHg=s+E9uivD%W%#T!m+1@X+|hN zmu0L=FuX$uM?hR{bibn@Qi4-_7(b&{%39szv`I%FrADmqS&ItG+w_~n7U?3m@C1gs;AD)sO06vWYfAC%7`5PQ zx>3#QP1647;Cm)1uWmJf#Jr&$8dXp|R%sctJCVl`Q#N`qK*S^;&zl=6^XQ^UJv$ z!s}x=XiwNFyiD7jiM;H;`NmA*sbmggco;m3r&e(KSIg1ET>uin|0(yOxuNVaV1}_`SfXJRDg4 EKO$gFcmMzZ diff --git a/ui/pages/downloads.py b/ui/pages/downloads.py index 6403367c..16646e10 100644 --- a/ui/pages/downloads.py +++ b/ui/pages/downloads.py @@ -3054,7 +3054,9 @@ class CompactDownloadItem(QFrame): def __init__(self, title: str, artist: str, status: str = "queued", progress: int = 0, file_size: int = 0, download_speed: int = 0, file_path: str = "", download_id: str = "", username: str = "", - soulseek_client=None, queue_type: str = "active", parent=None): + soulseek_client=None, queue_type: str = "active", + album: str = None, track_number: int = None, + parent=None): super().__init__(parent) self.title = title self.artist = artist @@ -3067,6 +3069,11 @@ class CompactDownloadItem(QFrame): self.username = username self.soulseek_client = soulseek_client self.queue_type = queue_type # "active" or "finished" + + # Album metadata for matched downloads + self.album = album + self.track_number = track_number + self.setup_ui() def setup_ui(self): @@ -3557,14 +3564,16 @@ class DownloadQueue(QFrame): def add_download_item(self, title: str, artist: str, status: str = "queued", progress: int = 0, file_size: int = 0, download_speed: int = 0, file_path: str = "", download_id: str = "", username: str = "", - soulseek_client=None): + soulseek_client=None, album: str = None, track_number: int = None): """Add a new download item to the queue""" # Hide empty message if this is the first item if len(self.download_items) == 0: self.empty_message.hide() # Create new compact download item with queue type - item = CompactDownloadItem(title, artist, status, progress, file_size, download_speed, file_path, download_id, username, soulseek_client, self.queue_type) + item = CompactDownloadItem(title, artist, status, progress, file_size, download_speed, + file_path, download_id, username, soulseek_client, self.queue_type, + album, track_number) self.download_items.append(item) # Insert before the stretch (which is always last) @@ -3714,11 +3723,11 @@ class TabbedDownloadManager(QTabWidget): def add_download_item(self, title: str, artist: str, status: str = "queued", progress: int = 0, file_size: int = 0, download_speed: int = 0, file_path: str = "", download_id: str = "", username: str = "", - soulseek_client=None): + soulseek_client=None, album: str = None, track_number: int = None): """Add a new download item to the active queue""" item = self.active_queue.add_download_item( title, artist, status, progress, file_size, download_speed, - file_path, download_id, username, soulseek_client + file_path, download_id, username, soulseek_client, album, track_number ) self.update_tab_counts() return item @@ -5630,45 +5639,85 @@ class DownloadsPage(QWidget): import os filename = os.path.basename(full_filename) - # Parse the filename to extract artist and title - # First, remove file extension - name_without_ext = filename - if '.' in name_without_ext: - name_without_ext = '.'.join(name_without_ext.split('.')[:-1]) - - # Check for track number prefix (e.g., "01. ", "28. ", etc.) - import re - track_number_match = re.match(r'^(\d+)\.\s*(.+)', name_without_ext) - if track_number_match: - track_number = track_number_match.group(1) - name_without_track_num = track_number_match.group(2) - print(f"[DEBUG] Detected album track: #{track_number} - '{name_without_track_num}'") + # Use TrackResult's parsed metadata if available, otherwise parse filename + if hasattr(search_result, 'title') and search_result.title: + title = search_result.title + print(f"[DEBUG] Using TrackResult title: '{title}'") else: - name_without_track_num = name_without_ext + # Fallback: Parse title from filename + name_without_ext = filename + if '.' in name_without_ext: + name_without_ext = '.'.join(name_without_ext.split('.')[:-1]) + + # Check for track number prefix and remove it + import re + track_number_match = re.match(r'^(\d+)\.\s*(.+)', name_without_ext) + if track_number_match: + name_without_track_num = track_number_match.group(2) + else: + name_without_track_num = name_without_ext + + # Extract just the title (remove artist if present) + parts = name_without_track_num.split(' - ') + if len(parts) >= 2: + title = ' - '.join(parts[1:]).strip() # Everything after first " - " + else: + title = name_without_track_num.strip() + + print(f"[DEBUG] Parsed title from filename: '{title}'") - # Now parse artist and title from the cleaned filename - parts = name_without_track_num.split(' - ') - if len(parts) >= 2: - artist = parts[0].strip() - title = ' - '.join(parts[1:]).strip() + # Use TrackResult's artist if available, otherwise parse or use username + if hasattr(search_result, 'artist') and search_result.artist: + artist = search_result.artist + print(f"[DEBUG] Using TrackResult artist: '{artist}'") else: - # If no ' - ' separator, use the cleaned filename as title - title = name_without_track_num.strip() - artist = search_result.username + # Fallback: Parse artist from filename or use uploader + name_without_ext = filename + if '.' in name_without_ext: + name_without_ext = '.'.join(name_without_ext.split('.')[:-1]) + + # Remove track number prefix + import re + track_number_match = re.match(r'^(\d+)\.\s*(.+)', name_without_ext) + if track_number_match: + name_without_track_num = track_number_match.group(2) + else: + name_without_track_num = name_without_ext + + # Extract artist (first part before " - ") + parts = name_without_track_num.split(' - ') + if len(parts) >= 2: + artist = parts[0].strip() + else: + artist = search_result.username + + print(f"[DEBUG] Parsed artist from filename: '{artist}'") # Final cleanup - ensure we have meaningful values if not title or title == '': - title = name_without_ext # Fallback to full filename without extension + title = filename # Ultimate fallback if not artist or artist == '': - artist = search_result.username # Fallback to uploader + artist = search_result.username # Ultimate fallback print(f"[DEBUG] Extracted title info from '{full_filename}' -> title: '{title}', artist: '{artist}'") + # Extract album context from search_result if available (for matched album downloads) + album_name = None + track_number = None + + if hasattr(search_result, 'album') and search_result.album: + album_name = search_result.album + print(f"[DEBUG] Found album context: '{album_name}'") + + if hasattr(search_result, 'track_number') and search_result.track_number: + track_number = search_result.track_number + print(f"[DEBUG] Found track number: {track_number}") + # Generate a unique download ID for tracking and cancellation import time download_id = f"{search_result.username}_{filename}_{int(time.time())}" - # Add to download queue immediately as "downloading" + # Add to download queue immediately as "downloading" with album context download_item = self.download_queue.add_download_item( title=title, artist=artist, @@ -5678,9 +5727,13 @@ class DownloadsPage(QWidget): download_id=download_id, username=search_result.username, file_path=full_filename, # Store the full path for matching - soulseek_client=self.soulseek_client + soulseek_client=self.soulseek_client, + album=album_name, + track_number=track_number ) + print(f"[DEBUG] Created download item with album context: album='{album_name}', track_number={track_number}") + # Create and start download thread download_thread = DownloadThread(self.soulseek_client, search_result, download_item) download_thread.download_completed.connect(self.on_download_completed, Qt.ConnectionType.QueuedConnection) @@ -5760,7 +5813,7 @@ class DownloadsPage(QWidget): self.start_download(search_result) def start_matched_album_download(self, album_result): - """Start a matched album download with Spotify integration""" + """Start a matched album download with Spotify integration - ask for artist ONCE""" try: # Check if Spotify client is authenticated if not self.spotify_client.is_authenticated(): @@ -5773,11 +5826,26 @@ class DownloadsPage(QWidget): # Disable album track buttons first self.disable_album_track_buttons(album_result) - # Process each track individually with Spotify matching - for track in album_result.tracks: - self.start_matched_download(track) - - print(f"✓ Queued {len(album_result.tracks)} tracks for matched download from album: {album_result.album_title}") + # Show modal ONCE for the album using the first track as reference + if album_result.tracks: + first_track = album_result.tracks[0] + modal = SpotifyMatchingModal(first_track, self.spotify_client, self.matching_engine, self) + modal.setWindowTitle(f"Select Artist for Album: {album_result.album_title}") + + # Connect to album-specific handler + modal.artist_selected.connect(lambda artist: self._handle_matched_album_download(album_result, artist)) + + # Show modal and handle result + if modal.exec() == QDialog.DialogCode.Accepted: + # Artist was selected, download will be handled by signal + print(f"✓ Artist selected for album download") + else: + # User cancelled or skipped matching, proceed with normal album download + print("🔄 Album matching cancelled, proceeding with normal album download") + self.start_album_download(album_result) + else: + print("❌ No tracks found in album") + self.start_album_download(album_result) except Exception as e: print(f"❌ Failed to start matched album download: {str(e)}") @@ -5807,16 +5875,163 @@ class DownloadsPage(QWidget): def _assign_matched_artist_to_download_item(self, search_result, artist: Artist): """Assign matched artist to the corresponding download item""" try: + print(f"🔍 Looking for download item matching: '{search_result.title}' by '{search_result.artist}'") + print(f"📋 Current download items: {len(self.download_queue.download_items)}") + + matched = False # Find the download item for this search result - for download_item in self.download_queue.download_items: + for i, download_item in enumerate(self.download_queue.download_items): + print(f" Item {i}: '{getattr(download_item, 'title', 'NO_TITLE')}' by '{getattr(download_item, 'artist', 'NO_ARTIST')}'") + if (hasattr(download_item, 'title') and download_item.title == search_result.title and hasattr(download_item, 'artist') and download_item.artist == search_result.artist): download_item.matched_artist = artist print(f"✅ Assigned matched artist '{artist.name}' to download item '{download_item.title}'") + matched = True break + + if not matched: + print(f"❌ Could not find matching download item for '{search_result.title}' by '{search_result.artist}'") + # Try a more lenient search + for i, download_item in enumerate(self.download_queue.download_items): + if (hasattr(download_item, 'title') and + self.matching_engine.normalize_string(download_item.title) == self.matching_engine.normalize_string(search_result.title)): + download_item.matched_artist = artist + print(f"✅ Assigned matched artist '{artist.name}' to download item '{download_item.title}' (lenient match)") + matched = True + break + + if not matched: + print(f"❌ Still could not find matching download item - assignment failed") + except Exception as e: print(f"❌ Error assigning matched artist to download item: {e}") + def _handle_matched_album_download(self, album_result, artist: Artist): + """Handle the album download after artist selection from modal""" + try: + print(f"🎯 Starting matched album download for '{album_result.album_title}' by '{artist.name}'") + print(f"📀 Processing {len(album_result.tracks)} tracks with matched artist") + + # Store the selected artist metadata and album context with each track + print(f"🔍 Album context being set:") + print(f" Album result title: '{album_result.album_title}'") + print(f" Matched artist: '{artist.name}'") + + # Clean up the album title - remove "Album - Artist -" prefix if present + clean_album_title = self._clean_album_title(album_result.album_title, artist.name) + print(f" Cleaned album title: '{clean_album_title}'") + + for track_index, track in enumerate(album_result.tracks, 1): + track.matched_artist = artist + + # Preserve album context - this is CRITICAL for proper album detection + track.album = clean_album_title # Use cleaned album title + track.track_number = track_index # Use existing dataclass field instead of custom attribute + + # Clean up track title - remove artist prefix if present + clean_track_title = self._clean_track_title(track.title, artist.name) + track.title = clean_track_title + + print(f" 🎵 Track {track_index}: '{clean_track_title}' -> Artist: '{artist.name}', Album: '{clean_album_title}', Track#: {track_index}") + + # Start downloading all tracks with normal process but enhanced with Spotify metadata + for track_index, track in enumerate(album_result.tracks, 1): + print(f"🎬 Starting download {track_index}/{len(album_result.tracks)}: {track.title}") + self.start_download(track) + # Add a small delay between downloads to avoid overwhelming the system + QTimer.singleShot(200, lambda: None) # 200ms delay + + # Assign matched artist to download items after they're created + QTimer.singleShot(500, lambda: self._assign_matched_artist_to_album_downloads(album_result, artist)) + + print(f"✓ Queued {len(album_result.tracks)} tracks for matched download from album: {album_result.album_title}") + print(f"🎯 All tracks have album context preserved: '{album_result.album_title}'") + + except Exception as e: + print(f"❌ Error handling matched album download: {e}") + # Fallback to normal album download + self.start_album_download(album_result) + + def _assign_matched_artist_to_album_downloads(self, album_result, artist: Artist): + """Assign matched artist to all download items for an album""" + try: + print(f"📋 Assigning matched artist '{artist.name}' to all album download items") + print(f"📀 Album has {len(album_result.tracks)} tracks") + print(f"📋 Current download queue has {len(self.download_queue.download_items)} items") + + assigned_count = 0 + + # Find download items for all tracks in this album + for track_idx, track in enumerate(album_result.tracks): + print(f"🔍 Looking for track {track_idx + 1}: '{track.title}' by '{track.artist}'") + + matched = False + for download_item in self.download_queue.download_items: + if (hasattr(download_item, 'title') and download_item.title == track.title and + hasattr(download_item, 'artist') and download_item.artist == track.artist): + download_item.matched_artist = artist + assigned_count += 1 + print(f" ✅ Assigned to: {download_item.title}") + matched = True + break + + if not matched: + print(f" ❌ Could not find download item for: {track.title}") + # Try a more lenient search + for download_item in self.download_queue.download_items: + if (hasattr(download_item, 'title') and + self.matching_engine.normalize_string(download_item.title) == self.matching_engine.normalize_string(track.title)): + download_item.matched_artist = artist + assigned_count += 1 + print(f" ✅ Assigned to: {download_item.title} (lenient match)") + matched = True + break + + if not matched: + print(f" ❌ Still could not find download item for: {track.title}") + + print(f"✅ Successfully assigned matched artist to {assigned_count}/{len(album_result.tracks)} album tracks") + + # If we didn't assign to all tracks, let's try again with a longer delay + if assigned_count < len(album_result.tracks): + print(f"⏰ Some assignments failed, will retry in 1 second...") + QTimer.singleShot(1000, lambda: self._retry_album_assignment(album_result, artist, assigned_count)) + + except Exception as e: + print(f"❌ Error assigning matched artist to album download items: {e}") + + def _retry_album_assignment(self, album_result, artist: Artist, previous_count: int): + """Retry assignment for album tracks that failed the first time""" + try: + print(f"🔄 Retrying album assignment for remaining tracks...") + new_assigned = 0 + + for track in album_result.tracks: + # Only try to assign if not already assigned + found_assigned = False + for download_item in self.download_queue.download_items: + if (hasattr(download_item, 'title') and download_item.title == track.title and + hasattr(download_item, 'matched_artist') and download_item.matched_artist): + found_assigned = True + break + + if not found_assigned: + # Try to find and assign + for download_item in self.download_queue.download_items: + if (hasattr(download_item, 'title') and + self.matching_engine.normalize_string(download_item.title) == self.matching_engine.normalize_string(track.title)): + download_item.matched_artist = artist + new_assigned += 1 + print(f" ✅ Retry assigned to: {download_item.title}") + break + + total_assigned = previous_count + new_assigned + print(f"🔄 Retry complete: {total_assigned}/{len(album_result.tracks)} tracks now assigned") + + except Exception as e: + print(f"❌ Error in retry assignment: {e}") + def _organize_matched_download(self, download_item, original_file_path: str) -> Optional[str]: """Organize a matched download into the Transfer folder structure""" try: @@ -5845,17 +6060,23 @@ class DownloadsPage(QWidget): if album_info and album_info['is_album']: # Album track structure: Transfer/ARTIST/ARTIST - ALBUM/TRACK# TRACK.ext + print(f"🔍 Creating album folder:") + print(f" Artist name: '{artist.name}'") + print(f" Album name from album_info: '{album_info['album_name']}'") + print(f" Download item title: '{download_item.title}'") + album_folder_name = f"{self._sanitize_filename(artist.name)} - {self._sanitize_filename(album_info['album_name'])}" album_dir = os.path.join(artist_dir, album_folder_name) os.makedirs(album_dir, exist_ok=True) - # Create track filename with number + # Create track filename with number (just track number + title, NO artist) file_ext = os.path.splitext(original_file_path)[1] track_number = album_info.get('track_number', 1) track_filename = f"{track_number:02d} {self._sanitize_filename(download_item.title)}{file_ext}" new_file_path = os.path.join(album_dir, track_filename) - print(f"📁 Album track: {album_folder_name}/{track_filename}") + print(f"📁 Album folder created: '{album_folder_name}'") + print(f"🎵 Track filename: '{track_filename}'") else: # Single track structure: Transfer/ARTIST/ARTIST - SINGLE/SINGLE.ext @@ -5917,16 +6138,81 @@ class DownloadsPage(QWidget): # Limit length to avoid filesystem issues return sanitized[:200] if len(sanitized) > 200 else sanitized + def _clean_album_title(self, album_title: str, artist_name: str) -> str: + """Clean up album title by removing common prefixes and artist redundancy""" + import re + + # Start with the original title + cleaned = album_title.strip() + + # Remove "Album - " prefix + cleaned = re.sub(r'^Album\s*-\s*', '', cleaned, flags=re.IGNORECASE) + + # Remove artist name prefix if it appears at the beginning + # This handles cases like "Kendrick Lamar - good kid, m.A.A.d city" + artist_pattern = re.escape(artist_name) + r'\s*-\s*' + cleaned = re.sub(f'^{artist_pattern}', '', cleaned, flags=re.IGNORECASE) + + # Clean up any remaining extra spaces or dashes at the start + cleaned = re.sub(r'^[-\s]+', '', cleaned).strip() + + return cleaned if cleaned else album_title # Fallback to original if cleaning removes everything + + def _clean_track_title(self, track_title: str, artist_name: str) -> str: + """Clean up track title by removing artist prefix""" + import re + + # Start with the original title + cleaned = track_title.strip() + + # Remove artist name prefix if it appears at the beginning + # This handles cases like "Kendrick Lamar - Track Name" + artist_pattern = re.escape(artist_name) + r'\s*-\s*' + cleaned = re.sub(f'^{artist_pattern}', '', cleaned, flags=re.IGNORECASE) + + # Clean up any remaining extra spaces or dashes at the start + cleaned = re.sub(r'^[-\s]+', '', cleaned).strip() + + return cleaned if cleaned else track_title # Fallback to original if cleaning removes everything + def _detect_album_info(self, download_item, artist: Artist) -> Optional[dict]: """Detect if track is part of an album using Spotify API""" try: + print(f"🔍 Album detection for '{download_item.title}' by '{artist.name}':") + print(f" Has album attr: {hasattr(download_item, 'album')}") + if hasattr(download_item, 'album'): + print(f" Album value: '{download_item.album}'") + + # PRIORITY 1: Check if this download item came from an album result (has album context) + # This should ALWAYS take precedence over Spotify detection + if hasattr(download_item, 'album') and download_item.album and download_item.album != "Unknown Album": + print(f"✅ Track has album context: '{download_item.album}' - treating as album track") + # Get proper track number from metadata or filename + track_num = self._extract_track_number(download_item) + print(f"📊 Detected track number: {track_num}") + return { + 'is_album': True, + 'album_name': download_item.album, + 'track_number': track_num, + 'spotify_track': None + } + + # PRIORITY 2: If no album context, use Spotify API for detection + print(f"🔍 No album context found, searching Spotify for track info...") + # Search for the track by artist and title query = f"artist:{artist.name} track:{download_item.title}" tracks = self.spotify_client.search_tracks(query, limit=5) if not tracks: - print(f"🔍 No Spotify tracks found for: {query}") - return None + print(f"❌ No Spotify tracks found for: {query}") + print(f"🎯 Defaulting to single track structure") + return { + 'is_album': False, + 'album_name': download_item.title, # Use track name as single name + 'track_number': 1, + 'spotify_track': None + } # Find the best matching track best_match = None @@ -5950,29 +6236,89 @@ class DownloadsPage(QWidget): best_confidence = combined_confidence if not best_match: - print(f"🔍 No high-confidence track match found") - return None + print(f"❌ No high-confidence track match found (best confidence: {best_confidence:.2f})") + print(f"🎯 Defaulting to single track structure") + return { + 'is_album': False, + 'album_name': download_item.title, # Use track name as single name + 'track_number': 1, + 'spotify_track': None + } - print(f"🎵 Found matching track: {best_match.name} - {best_match.album}") + print(f"✅ Found matching Spotify track: '{best_match.name}' - Album: '{best_match.album}' (confidence: {best_confidence:.2f})") - # Determine if this is a single or album - # Albums typically have multiple tracks, singles typically don't - # We can also check track count in the album via additional API call if needed - album_name = best_match.album + # Get detailed track information using Spotify's track API + detailed_track = None + if hasattr(best_match, 'id') and best_match.id: + print(f"🔍 Getting detailed track info from Spotify API for track ID: {best_match.id}") + detailed_track = self.spotify_client.get_track_details(best_match.id) - # For now, assume it's an album if the album name is different from track name - is_album = self.matching_engine.normalize_string(album_name) != self.matching_engine.normalize_string(best_match.name) + # Use detailed track data if available, otherwise fall back to basic search data + if detailed_track: + print(f"✅ Got detailed track data from Spotify API") + album_name = detailed_track['album']['name'] + album_type = detailed_track['album'].get('album_type', 'album') + total_tracks = detailed_track['album'].get('total_tracks', 1) + spotify_track_number = detailed_track.get('track_number', 1) + + print(f"📀 Spotify album info: '{album_name}' (type: {album_type}, total_tracks: {total_tracks}, track#: {spotify_track_number})") + + # Enhanced album detection using detailed API data + is_album = ( + # Album type is 'album' (not 'single') + album_type == 'album' and + # Album has multiple tracks + total_tracks > 1 and + # Album name different from track name + self.matching_engine.normalize_string(album_name) != self.matching_engine.normalize_string(best_match.name) and + # Album name is not just the artist name + self.matching_engine.normalize_string(album_name) != self.matching_engine.normalize_string(artist.name) + ) + + # Use Spotify's track number as the preferred source + track_num = spotify_track_number + print(f"🎯 Using Spotify track number: {track_num}") + + else: + print(f"⚠️ Could not get detailed track data, using basic Spotify search data") + album_name = best_match.album + + # Fallback album detection logic + is_album = ( + # Album name different from track name (indicates multi-track album) + self.matching_engine.normalize_string(album_name) != self.matching_engine.normalize_string(best_match.name) and + # Album name doesn't contain "single" or similar terms + not any(term in album_name.lower() for term in ['single', 'ep']) and + # Album name is not just the artist name + self.matching_engine.normalize_string(album_name) != self.matching_engine.normalize_string(artist.name) + ) + + # Get track number from metadata or filename + track_num = self._extract_track_number(download_item, best_match) + + if is_album: + print(f"🎯 Spotify detection: Album track - '{album_name}'") + else: + print(f"🎯 Spotify detection: Single track - using track name") + album_name = download_item.title # Use track name for single structure + track_num = 1 # Singles are always track 1 return { 'is_album': is_album, 'album_name': album_name, - 'track_number': 1, # Could be enhanced with additional API calls + 'track_number': track_num, 'spotify_track': best_match } except Exception as e: print(f"❌ Error detecting album info: {e}") - return None + # Fallback to single structure + return { + 'is_album': False, + 'album_name': download_item.title, + 'track_number': 1, + 'spotify_track': None + } def _download_cover_art(self, artist: Artist, album_info: dict, target_dir: str): """Download cover art for the album""" @@ -6005,6 +6351,67 @@ class DownloadsPage(QWidget): except Exception as e: print(f"❌ Error downloading cover art: {e}") + def _extract_track_number(self, download_item, spotify_track=None) -> int: + """Extract track number from various sources""" + try: + print(f"🔢 Extracting track number for: '{download_item.title}'") + + # Method 1: Check if download_item has track_number attribute (explicit metadata) + if hasattr(download_item, 'track_number') and download_item.track_number: + track_num = int(download_item.track_number) + print(f" ✅ Found track_number attribute: {track_num}") + return track_num + + # Method 2: Parse from filename (e.g., "01. Track Name.mp3", "01 - Track Name.flac") + if hasattr(download_item, 'title'): + import re + # Look for patterns like "01. ", "01 ", "01-", "1. ", etc. + patterns = [ + r'^(\d{1,2})[\.\s\-]+', # "01. " or "01 " or "01-" + r'(\d{1,2})\s*[\.\-]\s*', # "01." or "01-" with optional spaces + ] + + for pattern in patterns: + match = re.match(pattern, download_item.title.strip()) + if match: + track_num = int(match.group(1)) + print(f" ✅ Parsed from title pattern '{pattern}': {track_num}") + return track_num + + # Method 3: Parse from filename if available + if hasattr(download_item, 'filename'): + import re + import os + # Get just the filename without extension and path + base_name = os.path.splitext(os.path.basename(download_item.filename))[0] + + patterns = [ + r'^(\d{1,2})[\.\s\-]+', # "01. " or "01 " or "01-" + r'(\d{1,2})\s*[\.\-]\s*', # "01." or "01-" with optional spaces + ] + + for pattern in patterns: + match = re.match(pattern, base_name.strip()) + if match: + track_num = int(match.group(1)) + print(f" ✅ Parsed from filename pattern '{pattern}': {track_num}") + return track_num + + # Method 4: Get from Spotify track data (would need album API call) + if spotify_track: + # This would require additional Spotify API call to get full album + # For now, we'll skip this but could be enhanced later + print(f" ⏭️ Spotify track data available but not implemented yet") + pass + + # Default to 1 if no track number found + print(f" ⚠️ No track number found, defaulting to 1") + return 1 + + except Exception as e: + print(f"❌ Error extracting track number: {e}") + return 1 + def _find_downloaded_file(self, original_file_path: str, download_item) -> Optional[str]: """Try to find the downloaded file using various methods""" try: @@ -7148,20 +7555,29 @@ class DownloadsPage(QWidget): absolute_file_path = download_item.file_path # Check if this is a matched download and process accordingly - if hasattr(download_item, 'matched_artist') and download_item.matched_artist: - print(f"🎯 Processing matched download for '{download_item.title}' by '{download_item.matched_artist.name}'") - try: - # Add a small delay to ensure file is fully written - import time - time.sleep(1) - - # Organize the file into Transfer folder structure - organized_path = self._organize_matched_download(download_item, absolute_file_path) - if organized_path: - absolute_file_path = organized_path - except Exception as e: - print(f"❌ Error organizing matched download: {e}") - # Continue with normal process if organization fails + print(f"🔍 Checking download item '{download_item.title}' for matched artist...") + if hasattr(download_item, 'matched_artist'): + print(f" ✅ Has matched_artist attribute: {download_item.matched_artist}") + if download_item.matched_artist: + print(f"🎯 Processing matched download for '{download_item.title}' by '{download_item.matched_artist.name}'") + try: + # Add a small delay to ensure file is fully written + import time + time.sleep(1) + + # Organize the file into Transfer folder structure + organized_path = self._organize_matched_download(download_item, absolute_file_path) + if organized_path: + absolute_file_path = organized_path + except Exception as e: + print(f"❌ Error organizing matched download: {e}") + # Continue with normal process if organization fails + else: + print(f" ⚠️ matched_artist is None or empty") + else: + print(f" ❌ No matched_artist attribute found") + # Let's also check all attributes of the download item for debugging + print(f" 📋 Download item attributes: {[attr for attr in dir(download_item) if not attr.startswith('_')]}") # Update the download item status and progress BEFORE moving download_item.update_status(