http://docs.amazonwebservices.com/AWSEC2/latest/DeveloperGuide/instance-types.html
The "platform" is exposed in boto via an Image object's architecture attribute:
import boto
conn = boto.connect_ec2()
my_64bit_AMIs = conn.get_all_images(owner='self', filter={ 'architecture' : 'x86_64' })
--
Victor Trac | victortrac.com | twitter.com/victortrac
> --
> You received this message because you are subscribed to the Google Groups "boto-users" group.
> To post to this group, send email to boto-...@googlegroups.com.
> To unsubscribe from this group, send email to boto-users+...@googlegroups.com.
> For more options, visit this group at http://groups.google.com/group/boto-users?hl=en.
>
--