Try95th

get_song_lyrics so_q_74742369

Dec 9th, 2022 (edited)
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.30 KB | None | 0 0
  1. ### for https://stackoverflow.com/q/74742369/6146136
  2.  
  3. ####################### EDITED CODE: #######################
  4. def get_song_lyrics(url):
  5.     # page_url = requests.get(url) ## OLD CODE
  6.     # html_object = BeautifulSoup(page_url.text, 'html.parser') ## OLD CODE
  7.    
  8.     # html_object = BeautifulSoup(requests.get(url).text, 'html.parser') ## DOESN'T WORK
  9.     # html_object = linkToSoup_selenium(url) ## WORKS # function def at https://pastebin.com/kEC9gPC8
  10.     html_object = linkToSoup_scrapingAnt(url) ## WORKS # function def at https://pastebin.com/5ibz2F6p
  11.    
  12.     song_lyrics = html_object.select_one(
  13.         'div[class^="lyrics"], div[class^="SongPage__Section"]'
  14.     ).get_text(separator="\n")
  15.     # Clean song lyric data by removing identifiers and empty spaces.
  16.     # song_lyrics = re.sub(r'[\(\[].*?[\)\]]', '', lyrics) ## OLD CODE
  17.     song_lyrics = re.sub(r'[\(\[].*?[\)\]]', '', song_lyrics)
  18.     # song_lyrics = os.linesep.join([s for s in lyrics.splitlines() if s]) ## OLD CODE        
  19.     song_lyrics = os.linesep.join([s for s in song_lyrics.splitlines() if s])        
  20.     return song_lyrics
  21.  
  22. print(get_song_lyrics('https://genius.com/Wu-tang-clan-cream-lyrics')[:1000])
  23.  
  24. ###################### PRINTED OUTPUT ######################
  25. '''
  26. Translations
  27. Türkçe
  28. Español
  29. English
  30. C.R.E.A.M. Lyrics
  31. [Intro: Raekwon &
  32. Method Man
  33. ]
  34. What that n** want, God?
  35. Word up, look out for the cops though (
  36. Wu-Tang five finger sh**, fam
  37. )
  38. Cash rules-
  39. Word up, two for fives over here, baby
  40. Word up, two for fives, n** got garbage down the way
  41. Word up, know what I'm sayin'?
  42. Cash rules everything around me, C.R.E.A.M. get-
  43. Yeah, check this old fly shit out, word up
  44. (
  45. Cash rules everything around me
  46. ) Take you on a natural joint
  47. (
  48. C.R.E.A.M. get the money
  49. )
  50. (
  51. Dollar dollar bill, y'all
  52. ) Here we, here we go, check this shit, yo
  53. Powered By
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62. 10
  63. 10
  64.  
  65.  
  66.  
  67. Madison Beer “Showed Me ”  | Open Mic
  68. Share
  69. Next
  70. Stay
  71.  
  72.  
  73.  
  74.  
  75. Madison Beer “Showed Me ”  | Open Mic
  76. NOW
  77. PLAYING
  78. Sabrina Carpenter 'Nonsense' Official Lyrics & Meaning | Verified
  79. NOW
  80. PLAYING
  81. GloRilla 'Tomorrow' Official Lyrics & Meaning | Verified
  82. NOW
  83. PLAYING
  84. Meghan Trainor 'Made You Look' Official Lyrics & Meaning | Verified
  85. NOW
  86. PLAYING
  87. Ab-Soul 'Do Better' Official Lyrics
  88. '''
Advertisement
Add Comment
Please, Sign In to add comment