Current File : /var/www/dashbridge.online/scripts/trend_keywords.py
import requests
from bs4 import BeautifulSoup

url = "https://soundcloud.com/tags/link"
headers = {
    "User-Agent": "Mozilla/5.0 (X11; Linux x86_64)"
}

response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, "html.parser")

for tag in soup.select("a.soundTitle__title"):
    print("-", tag.get_text(strip=True))