Skip to content

Instantly share code, notes, and snippets.

@tripulse
Last active April 29, 2020 03:03
Show Gist options
  • Save tripulse/7ca1868f881a226610825016ecc096a5 to your computer and use it in GitHub Desktop.
Save tripulse/7ca1868f881a226610825016ecc096a5 to your computer and use it in GitHub Desktop.
Extracts the available Client ID generated for user if visited https://soundcloud.com. The original extraction method is from YouTube-DL's Soundcloud extractor.
import requests
import re
def _extract_client_id():
for scrsrc in reversed(re.findall(r'<script[^>]+src="([^"]+)"',
requests.get('https://soundcloud.com').text)):
if (clid := re.search(r'client_id\s*:\s*"(?P<id>[0-9a-zA-Z]{32})"',
requests.get(scrsrc).text)):
return clid.groupdict()['id']
@tripulse
Copy link
Author

This method is from YouTube-DL's Soundcloud extractor.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment