├── README.md //the file you reading now
├── lyrics
│ ├── __init__.py
│ ├── lyric.py //save all lyric
│ └── lyrics_get.py //get lyric method
├── plot
│ ├── __init__.py
│ ├── plot.py //plot bar(single)
│ └── total_plot.py //plot bar(all data)
└── text
├── __init__.py
├── text.py //count word frequency(single)
├── all_count.py //count word frequency(all song)
└── text_seg.py //text segmentation method- run lyric.py to fetch all lyric data.
- run text.py(or all_count.py) to count word frequency which will be used to plot graph.
- run plot.py(or total_plot.py) to plot graph.
read this article of my blog link