This module was contributed by Chris Moyer. It provides a subclass of the SQS Message class that supports YAML as the body of the message.
This module requires the yaml module.
The YAMLMessage class provides a YAML compatible message. Encoding and decoding are handled automaticaly.
Access this message data like such:
m.data = [ 1, 2, 3] m.data[0] # Returns 1
This depends on the PyYAML package