【前提・実現したいこと】
pythonでのyoutubeからAPIをつかって抽出してます。
publishedAtを抽出しましたところ、
2019-06-28T18:57:00Z
とでてきました。
このデータを
・日本時間で
・yyyy-mm-dd hh:mm
の形式に変換して、csvに保存したいんですが、方法がわかりません。
ソースコード上での【A】の時点で変換するのか、【B】のcsv保存時に変換するのか。
もしくは保存後に変換するのか。
初心者が一番操作しやすい方法があれば後学のために教えていただきたいです。
【A】 for channel_result in channel_response.get("items", []): if channel_result["kind"] == "youtube#channel": channels.append([channel_result["snippet"]["title"],channel_result["statistics"]["subscriberCount"],channel_result["statistics"]["videoCount"],channel_result["statistics"]["viewCount"],channel_result["snippet"]["publishedAt"]]) 【B】 channel_report = pd.DataFrame(channels, columns=['title', 'subscriberCount', 'videoCount','viewCount', 'publishedAt']) channel_report.to_csv("チャンネル情報.csv", index=None,columns=['title', 'subscriberCount', 'videoCount','viewCount', 'publishedAt'])
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。