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
# this code is inspired by Jon Evans' project. | |
# http://www.jw.pe/blog/post/quantifying-sufjan-stevens-with-the-genius-api-and-nltk/ | |
import requests, json | |
from time import sleep | |
# constant values. | |
BASE_URL = "https://api.genius.com" | |
CLIENT_ACCESS_TOKEN = "<YOUR TOKEN HERE>" | |
ARTIST_NAME = "<ANY ARTIST NAME>" |
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
# this code is inspired by Jon Evans' project. | |
# http://www.jw.pe/blog/post/quantifying-sufjan-stevens-with-the-genius-api-and-nltk/ | |
# link za github sa kog je originalni kod: https://gist.github.com/imdkm/a60247b59ff1881fa4bb8846a9b44c96 | |
import requests, json | |
#from time import sleep | |
# constant values. | |
BASE_URL = "https://api.genius.com" | |
CLIENT_ACCESS_TOKEN = "<YOUR TOKEN HERE>" |