Как преобразовать строку в DataFrame в Python

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