'Python accessing data.europa.eu online datasets for road traffic accidents
I was wondering how I could access the datasets of the different years from data.europa online (https://data.europa.eu/data/datasets/road-traffic-accidents/), and load them in a pandas dataframe. I tried with the help of the API documentation but didn't get far. Help is appreciated!
Edit: I would like to know how to access it online, I know it can be downloaded manually, but accessing the data with a web request is something I was interested in learning.
Solution 1:[1]
You can download these files manually, which presumably results in a .csv file. Then, you can use pandas.read_csv:
import pandas as pd
df = pd.read_csv("path/to/downloaded/csv/file.csv")
This should the .csv file into a pandas DataFrame for you.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Tom Aarsen |
