Pandas: create named columns in DataFrame from dict

I have a dictionary object of the form: my_dict = {id1: val1, id2: val2, id3: val3, ...} I want to create this into a DataFrame where I want to name the 2 columns 'business_id' and 'business_code...