summaryrefslogtreecommitdiff
path: root/boto/ecs
Commit message (Collapse)AuthorAgeFilesLines
* Checking in files missing from last commit and fixing github issue #222Mitch Garnaat2011-06-141-1/+7
|
* Fix ItemSet for responses that do not contain TotalResults and TotalPages ↵Rytis Sileika2011-02-181-0/+2
| | | | elements
* Fixed an invalid parameter bug (ECS) #102Rytis Sileika2011-02-171-2/+2
|
* Few more tweaks to pluggable auth branch.Mitch Garnaat2011-01-091-23/+0
|
* Lots of small changes to accomodate plug-in authentication mechanism. Still ↵Mitch Garnaat2011-01-071-0/+3
| | | | on branch for now.
* Added some escaping to the XMLized functions for ECSChris Moyer2010-09-101-1/+8
|
* Updated ECS responses to allow you to dump the raw XML.Chris Moyer2010-09-101-3/+11
| | | | | | | | | | | | | | | | | | | | This works for any given level of the Response, so you can do: >>> from boto.ecs import ECSConnection >>> conn = ECSConnection() >>> books = conn.item_search("Books", Author="John Resig") >>> print books.to_xml() To dump the entire book XML, OR: >>> book = books.next() >>> print book.to_xml() to dump just one book OR: >>> book.ItemAttributes.to_xml() to dump just the ItemAttributes section of the book.
* Updated ECS response items to read more info from the Response.Chris Moyer2010-09-092-25/+67
| | | | | | | You can now read information just like it comes out of the response: >>> book.ItemAttributes.Author instead of >>> book.Author
* Added Paging support to ECSChris Moyer2010-09-082-5/+63
|
* Added "ECS" shell. For now this just has "item_search"Chris Moyer2010-09-082-0/+140