This is an awesome module! Fills a real need. Thank you so much!
I assume this is odd...
For example here it's scanning for an instance with a fully specified ARN
In [44]: for i in scan('arn:aws:ec2:us-west-2:%s:instance/%s' % (my_acnt, mystery_instance)): print i.data['InstanceType'], i.data['LaunchTime']
c3.large 2017-01-10 21:39:11+00:00
But if I wild card the region i get nothing.
In [45]: for i in scan('arn:aws:*:%s:instance/%s' % (my_acnt, mystery_instance)): print i.data['InstanceType'], i.data['LaunchTime']
Dis is the version pip gave me.
In [46]: skew.__version__
Out[47]: '0.16.1'