Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ### for https://stackoverflow.com/q/74742369/6146136
- ####################### EDITED CODE: #######################
- def get_song_lyrics(url):
- # page_url = requests.get(url) ## OLD CODE
- # html_object = BeautifulSoup(page_url.text, 'html.parser') ## OLD CODE
- # html_object = BeautifulSoup(requests.get(url).text, 'html.parser') ## DOESN'T WORK
- # html_object = linkToSoup_selenium(url) ## WORKS # function def at https://pastebin.com/kEC9gPC8
- html_object = linkToSoup_scrapingAnt(url) ## WORKS # function def at https://pastebin.com/5ibz2F6p
- song_lyrics = html_object.select_one(
- 'div[class^="lyrics"], div[class^="SongPage__Section"]'
- ).get_text(separator="\n")
- # Clean song lyric data by removing identifiers and empty spaces.
- # song_lyrics = re.sub(r'[\(\[].*?[\)\]]', '', lyrics) ## OLD CODE
- song_lyrics = re.sub(r'[\(\[].*?[\)\]]', '', song_lyrics)
- # song_lyrics = os.linesep.join([s for s in lyrics.splitlines() if s]) ## OLD CODE
- song_lyrics = os.linesep.join([s for s in song_lyrics.splitlines() if s])
- return song_lyrics
- print(get_song_lyrics('https://genius.com/Wu-tang-clan-cream-lyrics')[:1000])
- ###################### PRINTED OUTPUT ######################
- '''
- Translations
- Türkçe
- Español
- English
- C.R.E.A.M. Lyrics
- [Intro: Raekwon &
- Method Man
- ]
- What that n** want, God?
- Word up, look out for the cops though (
- Wu-Tang five finger sh**, fam
- )
- Cash rules-
- Word up, two for fives over here, baby
- Word up, two for fives, n** got garbage down the way
- Word up, know what I'm sayin'?
- Cash rules everything around me, C.R.E.A.M. get-
- Yeah, check this old fly shit out, word up
- (
- Cash rules everything around me
- ) Take you on a natural joint
- (
- C.R.E.A.M. get the money
- )
- (
- Dollar dollar bill, y'all
- ) Here we, here we go, check this shit, yo
- Powered By
- 10
- 10
- Madison Beer “Showed Me ” | Open Mic
- Share
- Next
- Stay
- Madison Beer “Showed Me ” | Open Mic
- NOW
- PLAYING
- Sabrina Carpenter 'Nonsense' Official Lyrics & Meaning | Verified
- NOW
- PLAYING
- GloRilla 'Tomorrow' Official Lyrics & Meaning | Verified
- NOW
- PLAYING
- Meghan Trainor 'Made You Look' Official Lyrics & Meaning | Verified
- NOW
- PLAYING
- Ab-Soul 'Do Better' Official Lyrics
- '''
Advertisement
Add Comment
Please, Sign In to add comment