The csv file is downloadable. I can download the file and use read_csv, But I want to read the file via direct URL in jupyter, I used the following code, but I get the HTTP 403 Forbidden
error
from io import StringIO
import pandas as pd
import requests
url="https://fineli.fi/fineli/en/elintarvikkeet/resultset.csv"
s=requests.get(url).text
c=pd.read_csv(StringIO(s))
c
how do I read the csv file via URL directly in python with a delimeter ";"