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
import requests | |
import json | |
import pprint | |
import time | |
import artistsData | |
import musicBrainz | |
import lastFM | |
date = time.strftime("%Y-%m-%d") | |
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
var p = GetPlayer(); | |
var BMI = 0; | |
var bodyDesc = "dummy"; | |
// Convert input_feet, input_inches, and pounds from Storyline variables to JavaScript variables | |
var input_feet=(p.GetVar("input_feet")); | |
var input_inches=parseInt(p.GetVar("input_inches")); | |
var pounds=(p.GetVar("pounds")); |