1>>> data = {'subject': 'hello',
2... 'message': 'Hi there',
3... 'sender': 'foo@example.com',
4... 'cc_myself': True}
5>>> f = ContactForm(data)
6>>> f.is_valid()
7True
8>>> f.cleaned_data
9{'cc_myself': True, 'message': 'Hi there', 'sender': 'foo@example.com', 'subject': 'hello'}
10