1import can
2
3msg = can.Message(arbitration_id=0xc0ffee,
4                  data=[0, 25, 0, 1, 3, 1, 4, 1],
5                  is_extended_id=True)
6assert(msg is not None)
7