import pandas as pd
# 初期化
df = pd.DataFrame(columns=['chanel_name', 'chanel_url', 'video_title','description_text'])
# 行の追加
df.append([{
'chanel_name' : name,
'chanel_url': url,
'video_title': title,
'description_text': description_text
}])