```julia using CondaPkg CondaPkg.add("pandas") pd = pyimport("pandas") datafile = download("https://nyc3.digitaloceanspaces.com/owid-public/data/co2/owid-co2-data.csv") df = pd.read_csv(datafile) df[df["country] == "World"] ``` fails because `df["country"] == "World"` returns plainly `false` It would be very awesome if we could just use normal pandas indexing syntax