Skip to content

Instantly share code, notes, and snippets.

View arsenikov's full-sized avatar
As usual learning stuff !

SanJu arsenikov

As usual learning stuff !
View GitHub Profile
@arsenikov
arsenikov / azlyrics.py
Last active August 9, 2021 06:10 — forked from managedkaos/azlyrics.py
Scrape lyrics from azlyrics.com
import requests
from bs4 import BeautifulSoup
url = "http://www.azlyrics.com/lyrics/onyx/bacdafucup.html"
print("Default request (it will fail)...")
# make the default request
try:
r = requests.get(url)