CC-2110 : Soundcloud file metadata

uploading show description, show name in filename, tags ready to be uploaded for creator need to figure out what to upload.
This commit is contained in:
naomiaro 2011-03-28 12:10:51 -04:00
parent bb0f610fca
commit df8b9af8f6
4 changed files with 26 additions and 22 deletions

View file

@ -291,9 +291,9 @@ class AirTimeApiClient(ApiClientInterface):
response = ''
try:
url = self.config["base_url"] + self.config["api_base"] + self.config["show_schedule_url"]
#logger.debug(url)
url = url.replace("%%api_key%%", self.config["api_key"])
logger.debug(url)
url = url.replace("%%api_key%%", self.config["api_key"])
response = urllib.urlopen(url)
response = json.loads(response.read())
logger.info("shows %s", response)
@ -308,9 +308,8 @@ class AirTimeApiClient(ApiClientInterface):
response = ''
try:
url = self.config["base_url"] + self.config["api_base"] + self.config["upload_file_url"]
#logger.debug(url)
url = url.replace("%%api_key%%", self.config["api_key"])
logger.debug(url)
url = url.replace("%%api_key%%", self.config["api_key"])
request = urllib2.Request(url, data, headers)
response = urllib2.urlopen(request).read().strip()