115 url =
"https://soundcloud.com"
116 resp = http_get(url, timeout=10)
119 logger.error(
"init: GET %s failed", url)
122 tree = html.fromstring(resp.content)
123 script_tags = tree.xpath(
"//script[contains(@src, '/assets/')]")
124 app_js_urls = [tag.get(
"src")
for tag
in script_tags
if tag
is not None]
128 for url
in app_js_urls[::-1]:
134 logger.error(
"init: app_js GET %s failed", url)
137 cids = cid_re.search(resp.content.decode())
138 if cids
and len(cids.groups()):
139 client_id = cids.groups()[0]
143 logger.info(
"using client_id '%s' for soundclud queries", client_id)
145 logger.warning(
"missing valid client_id for soundclud queries")