Go To Eat Campaign Fukuoka contient des données CSV ici conversion
import pandas as pd
df = pd.read_csv("https://gotoeat-fukuoka.jp/csv/fk_gotoeat_UTF-8.csv")
df["13.Genre d'informations de magasin"] = df["13.Genre d'informations de magasin"].replace(
{
1: "Japonais et sushi",
2: "nourriture occidentale",
3: "cuisine chinoise",
4: "Français italien",
5: "Ramen et boulettes",
6: "Viande grillée, hormones, cuisine coréenne",
7: "Sukiyaki / Shabushabu",
8: "Cuisine asiatique / ethnique / internationale",
9: "Bonbons de café",
10: "Restaurant familial / salle à manger",
11: "Taverne",
12: "Bar / bar à manger",
13: "Fast food",
14: "Udon, soba, bol",
15: "Autre",
}
)
df.to_csv("fukuoka.csv", encoding="utf_8_sig")