I am getting very weird behavior in my EC2 instance (it is running
ubuntu)
I am just pasting a screen copy here.
I installed boto again (the latest version 2.0b2) on my EC2 instance,
In the Boto folder I get all the regions, out side of it
boto.sqs.regions() gives only 3 regions
My Screen clipping
Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import boto.sqs
>>>
>>> print boto.sqs.regions()
[RegionInfo:us-east-1, RegionInfo:eu-west-1, RegionInfo:us-west-1,
RegionInfo:ap-southeast-1]
>>> quit()
ubuntu@vivek:~/boto-2.0b2$ cd ..
ubuntu@vivek:~$ python
Python 2.6.5 (r265:79063, Apr 16 2010, 13:09:56)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import boto.sqss
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named sqss
>>> import boto.sqs
>>> print boto.sqs.regions()
[RegionInfo:us-east-1, RegionInfo:eu-west-1, RegionInfo:us-west-1]
>>>
Abhishek Kona