Comment convertir une chaîne en une dataframe dans Python

from pandas.compat import StringIO
df = pd.read_csv(StringIO(response))
Horrible Hoopoe