I would like to load a csv into a pandas dataframe and the data is available on a remote server.
The goal is to read it directly to a dataframe without writing the data to disk.
url = https://dev.azure.com/tankerkoenig/tankerkoenig-data/_git/tankerkoenig-data?path=/prices/2022/07/2022-07-01-prices.csv
I am thinking about an approach like this:
import requests
import pandas as pd
r = requests.get(url)
df = pd.read_csv(r.content)
Does anyone know if something like this is possible?