├── README.md ├── clean_data.py ├── config.py ├── config.pyc ├── credentials.txt ├── graphs └── num_words.png ├── lyrics.csv ├── lyrics ├── Eminem ├── Eminem-cleaned ├── Metallica ├── Metallica-cleaned ├── Northlane ├── Northlane-cleaned ├── Porcupine tree ├── Porcupine tree-cleaned ├── cigarettes after sex ├── cigarettes after sex-cleaned ├── damien rice ├── damien rice-cleaned ├── dire straits ├── dire straits-cleaned ├── eric clapton ├── eric clapton-cleaned ├── incubus ├── incubus-cleaned ├── radiohead ├── radiohead-cleaned ├── the black keys ├── the black keys-cleaned ├── the butterfly effect └── the butterfly effect-cleaned ├── search.py ├── search.pyc ├── sentiment.py ├── songs.py ├── text_analysis.py ├── tokenizeandshit.py ├── urls ├── wordclouds.py └── wordclouds ├── Eminem.png ├── Metallica.png ├── Northlane.png ├── Porcupine tree.png ├── cigarettes after sex.png ├── damien rice.png ├── dire straits.png ├── eric clapton.png ├── incubus.png ├── radiohead.png ├── the black keys.png └── the butterfly effect.png /README.md: -------------------------------------------------------------------------------- 1 | # lyrics-sentiment-analysis 2 | -------------------------------------------------------------------------------- /clean_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/clean_data.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/config.py -------------------------------------------------------------------------------- /config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/config.pyc -------------------------------------------------------------------------------- /credentials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/credentials.txt -------------------------------------------------------------------------------- /graphs/num_words.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/graphs/num_words.png -------------------------------------------------------------------------------- /lyrics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics.csv -------------------------------------------------------------------------------- /lyrics/Eminem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/Eminem -------------------------------------------------------------------------------- /lyrics/Eminem-cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/Eminem-cleaned -------------------------------------------------------------------------------- /lyrics/Metallica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/Metallica -------------------------------------------------------------------------------- /lyrics/Metallica-cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/Metallica-cleaned -------------------------------------------------------------------------------- /lyrics/Northlane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/Northlane -------------------------------------------------------------------------------- /lyrics/Northlane-cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/Northlane-cleaned -------------------------------------------------------------------------------- /lyrics/Porcupine tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/Porcupine tree -------------------------------------------------------------------------------- /lyrics/Porcupine tree-cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/Porcupine tree-cleaned -------------------------------------------------------------------------------- /lyrics/cigarettes after sex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/cigarettes after sex -------------------------------------------------------------------------------- /lyrics/cigarettes after sex-cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/cigarettes after sex-cleaned -------------------------------------------------------------------------------- /lyrics/damien rice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/damien rice -------------------------------------------------------------------------------- /lyrics/damien rice-cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/damien rice-cleaned -------------------------------------------------------------------------------- /lyrics/dire straits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/dire straits -------------------------------------------------------------------------------- /lyrics/dire straits-cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/dire straits-cleaned -------------------------------------------------------------------------------- /lyrics/eric clapton: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/eric clapton -------------------------------------------------------------------------------- /lyrics/eric clapton-cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/eric clapton-cleaned -------------------------------------------------------------------------------- /lyrics/incubus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/incubus -------------------------------------------------------------------------------- /lyrics/incubus-cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/incubus-cleaned -------------------------------------------------------------------------------- /lyrics/radiohead: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/radiohead -------------------------------------------------------------------------------- /lyrics/radiohead-cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/radiohead-cleaned -------------------------------------------------------------------------------- /lyrics/the black keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/the black keys -------------------------------------------------------------------------------- /lyrics/the black keys-cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/the black keys-cleaned -------------------------------------------------------------------------------- /lyrics/the butterfly effect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/the butterfly effect -------------------------------------------------------------------------------- /lyrics/the butterfly effect-cleaned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/lyrics/the butterfly effect-cleaned -------------------------------------------------------------------------------- /search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/search.py -------------------------------------------------------------------------------- /search.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/search.pyc -------------------------------------------------------------------------------- /sentiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/sentiment.py -------------------------------------------------------------------------------- /songs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/songs.py -------------------------------------------------------------------------------- /text_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/text_analysis.py -------------------------------------------------------------------------------- /tokenizeandshit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/tokenizeandshit.py -------------------------------------------------------------------------------- /urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/urls -------------------------------------------------------------------------------- /wordclouds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/wordclouds.py -------------------------------------------------------------------------------- /wordclouds/Eminem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/wordclouds/Eminem.png -------------------------------------------------------------------------------- /wordclouds/Metallica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/wordclouds/Metallica.png -------------------------------------------------------------------------------- /wordclouds/Northlane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/wordclouds/Northlane.png -------------------------------------------------------------------------------- /wordclouds/Porcupine tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/wordclouds/Porcupine tree.png -------------------------------------------------------------------------------- /wordclouds/cigarettes after sex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/wordclouds/cigarettes after sex.png -------------------------------------------------------------------------------- /wordclouds/damien rice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/wordclouds/damien rice.png -------------------------------------------------------------------------------- /wordclouds/dire straits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/wordclouds/dire straits.png -------------------------------------------------------------------------------- /wordclouds/eric clapton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/wordclouds/eric clapton.png -------------------------------------------------------------------------------- /wordclouds/incubus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/wordclouds/incubus.png -------------------------------------------------------------------------------- /wordclouds/radiohead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/wordclouds/radiohead.png -------------------------------------------------------------------------------- /wordclouds/the black keys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/wordclouds/the black keys.png -------------------------------------------------------------------------------- /wordclouds/the butterfly effect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kvsingh/lyrics-sentiment-analysis/HEAD/wordclouds/the butterfly effect.png --------------------------------------------------------------------------------