navmad
navmad

Reputation: 3

Amazon SQS without BOTO

I have a requirement to access Amazon SQS service. I am not allowed to use BOTO as it is a restricted environment.I am new to Python.

Any suggestions??

Upvotes: 0

Views: 382

Answers (1)

kai
kai

Reputation: 378

Simply do what Boto does internally: construct the API request to AWS. It is a bit of work, but using the standard library (something like urllib2) you can get the same information that Boto returns (with some additional parsing).

Upvotes: 3

Related Questions