This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Last.fm to Swingmusic Sync Script | |
| Transfers loved tracks from Last.fm and marks them as liked in Swingmusic | |
| Tested with python 3.14 | |
| """ | |
| import requests # the only external dependency | |
| import json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // DependencyInjector.swift | |
| // | |
| // | |
| // Created by Tikhon Petrishchev on 21.02.2023. | |
| // | |
| import Foundation | |
| /// The main object where stores all references to object dependencies |