Go To Eat Campaign Fukuoka is CSV data in here. conversion
import pandas as pd
df = pd.read_csv("https://gotoeat-fukuoka.jp/csv/fk_gotoeat_UTF-8.csv")
df["13.Store information genre"] = df["13.Store information genre"].replace(
{
1: "Japanese food / sushi",
2: "Western food",
3: "Chinese cuisine",
4: "French Italian",
5: "Ramen and dumplings",
6: "Yakiniku, hormones, Korean food",
7: "Sukiyaki / Shabu-shabu",
8: "Asian / Ethnic / International Cuisine",
9: "Cafe sweets",
10: "Family restaurant / dining room",
11: "Izakaya",
12: "Bar / dining bar",
13: "Fast food",
14: "Udon, soba, rice bowl",
15: "Other",
}
)
df.to_csv("fukuoka.csv", encoding="utf_8_sig")
Recommended Posts