import pandas as pd
# URL of the CSV file (using parentheses to span multiple lines)
url = ('https://archive.ics.uci.edu/ml/machine-learning-databases'+
'/wine-quality/winequality-red.csv')
# Use read_csv to load the data directly from the URL
# Note: The dataset uses ';' as a separator
df = pd.read_csv(url, sep=';')