Last active
April 29, 2020 03:03
-
-
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.
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 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'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This method is from YouTube-DL's Soundcloud extractor.