Created
July 2, 2015 15:44
-
-
Save jrnewell/3ab6495896b4f0538543 to your computer and use it in GitHub Desktop.
Get Track and Artist names from a list of Spotify URIs
This file contains 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 python | |
# coding=utf-8 | |
import os | |
import sys | |
import requests | |
import time | |
def get_track_json(track_id): | |
url = 'https://api.spotify.com/v1/tracks/' + track_id | |
req = requests.get(url) | |
time.sleep(0.5) | |
if req.status_code == 200: | |
return req.json() | |
else: | |
print("URL returned non-200 HTTP code: " + | |
str(req.status_code)) | |
return None | |
def main(): | |
if len(sys.argv) != 2: | |
print("USAGE: " + sys.argv[0] + " file_name") | |
sys.exit(1) | |
file_name = sys.argv[1] | |
if not os.path.exists(file_name): | |
print(file_name + " does not exist") | |
sys.exit(1) | |
with open(file_name, 'r') as f: | |
failures = [uri.strip() for uri in f.readlines()] | |
for uri in failures: | |
uri_tokens = uri.split(':') | |
if len(uri_tokens) != 3: | |
print("Invalid URI: " + uri) | |
continue | |
track_json = get_track_json(uri_tokens[2]) | |
if track_json is None: | |
print("Did not receive json back, skipping...") | |
continue | |
print(track_json["artists"][0]["name"] + " - " + | |
track_json["name"]) | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment