There are json-formated datas of 25696 k-pop songs, which was from Melon's Monthly Chart Ranking 100 (2000 ~ 2023 Oct.).
Also providing python functions for data handling.
I DO NOT claim any ownership of this dataset, All copyrights belong to the authors, of each song.
You can freely use this dataset on RESEARCH PURPOSE, but if you want to use COMMERCIALLY this dataset, You should Talk with Lyricists, Artists, Composers, etc.
Clone this repository into your workspace.
git clone https://github.com/EX3exp/Kpop-lyric-datasets.git
from utils import data_parser
your_dict = data_parser.get_dict(2023)
from utils import data_parser
your_dataframe = data_parser.get_df(2010, 2022)
π½ Introducing data's structure with melon-monthly_2023-07_16.json
- π (Attention - New Jeans).
melon\monthly-chart\melon-<year>\melon-<year>-<month>\melon-monthly_<year>-<month>_<chart rank>.json
Metadata of this song.
{
"info": [
{
"year": 2023,
"month": 7,
"rank": 16,
"type": "μλ³μ°¨νΈ",
"website": "Melon"
},
""
],
Id of this song, which is in Melon Database.
"song_id": "35454425",
Name of this song.
"song_name": "Attention",
Album's name.
"album": "NewJeans 1st EP 'New Jeans'",
Song's released date.
"release_date": "2022.08.01",
Artist of this song.
"artist": "NewJeans",
Genre of this song, which was specified in Melon.
"genre": "λμ€",
Lyricist of this song.
"lyric_writer": "Gigi",
Composer of this song.
"composer": "Duckbay (Cosmos Studios Stockholm)",
Arranger of this song.
"arranger": "λ€λμ(DANIELLE)",
Lyrics are separated per line.
Number of lyrics' rows.
"lyrics": {
"row_num": 79,
Whole lyrics of this song.
"lines": [
"You and me",
"λ΄ λ§μ΄ 보μ΄μ§",
"νμ°Έμ μ³λ€λ΄",
"κ°κΉμ΄ λ€κ°κ°",
"You see",
"You see, ey ey ey ey",
"",
"One, two, three",
"μ©κΈ°κ° μκ²Όμ§",
"μ΄λ―Έ μλ λ€ λμΉ",
"κ³ κ°λ₯Ό λλ € μ²μ²ν",
"μ¬κΈ°",
"You see",
"μ¬κΈ° 보μ΄λ",
"",
"Looking for attention λμΌκ² μ΄",
"νμ€νκ² λλ‘ λ§λ€κ² μ΄",
"Stop, eyyy",
"Drop the question",
"Drop the, drop the question",
"Want attention",
"Wanna want attention",
"",
"You give me butterflies you know",
"λ΄ λ§μ μ¨ν΅ paradise",
"κΏμμ κΉ¨μμ£Όμ§ λ§",
"",
"You got me looking for attention",
"You got me looking for attention",
"κ°λμ μ λ§",
"ν·κ°λ¦¬μ§λ§",
"λΆλͺ
ν 건",
"Got me looking for attention",
"",
"λ μ°μ°ν λ§μ£ΌμΉ μ²ν λ",
"λͺ» λ³Έ μ² μ§λκ°λ",
"Youβre so fine",
"Gotta gotta get to know ya",
"λμ λμ κ±Έμ΄κ° μ€",
"",
"μ§κΈ λμμλ©΄",
"I need ya, need ya, need ya",
"To look at me back",
"Hey λ€ λ€μΌ°μλ",
"λ 보면 ννΈκ° νμ΄λμ",
"",
"λ μ¬νμ μ°Ύλ baby (baby)",
"λ΄ λ§μ μ€λ μ΄μ§",
"Eyyy, drop the question",
"Drop the, drop the question",
"Want attention",
"Wanna want attention",
"",
"You give me butterflies you know",
"λ΄ λ§μ μ¨ν΅ paradise",
"κΏμμ κΉ¨μμ£Όμ§ λ§",
"",
"You got me looking for attention",
"You got me looking for attention",
"κ°λμ μ λ§",
"ν·κ°λ¦¬μ§λ§",
"λΆλͺ
ν 건",
"Got me looking for attention",
"",
"You got me looking for attention",
"You got me looking for attention",
"κ°λμ μ λ§",
"ν·κ°λ¦¬μ§λ§",
"λΆλͺ
ν 건",
"Got me looking for attention",
"",
"A T T E N T I on",
"Attention is what I want",
"A T T E N T I on",
"Attention is what I want",
"A T T E N T I on",
"Attention is what I want",
"A T T E N T I on",
"You got me looking for attention"
]
{
"info": [
{
"year": 2023,
"month": 7,
"rank": 16,
"type": "μλ³μ°¨νΈ",
"website": "Melon"
},
""
],
"song_id": "35454425",
"song_name": "Attention",
"album": "NewJeans 1st EP 'New Jeans'",
"release_date": "2022.08.01",
"artist": "NewJeans",
"genre": "λμ€",
"lyric_writer": "Gigi",
"composer": "Duckbay (Cosmos Studios Stockholm)",
"arranger": "λ€λμ(DANIELLE)",
"lyrics": {
"row_num": 79,
"lines": [
"You and me",
"λ΄ λ§μ΄ 보μ΄μ§",
"νμ°Έμ μ³λ€λ΄",
"κ°κΉμ΄ λ€κ°κ°",
"You see",
"You see, ey ey ey ey",
"",
"One, two, three",
"(... etc.)"
]
}
}