Como converter uma string em um DataFrame no Python

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