import pandas as pd
# create a sample DataFrame
df = pd.DataFrame({'A': ['foo', 'bar', 'foo', 'bar',
'foo', 'bar', 'foo', 'foo'],
'B': ['one', 'one', 'two', 'three',
'two', 'two', 'one', 'three'],
'C': [1, 2, 3, 4, 5, 6, 7, 8],
'D': [10, 20, 30, 40, 50, 60, 70, 80]})
# group the DataFrame by column A
grouped = df.groupby('A')
# get the group with key 'foo'
foo_group = grouped.get_group('foo')
print(foo_group)