Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Checking in files missing from last commit and fixing github issue #222 | Mitch Garnaat | 2011-06-14 | 1 | -1/+7 |
| | |||||
* | Fix ItemSet for responses that do not contain TotalResults and TotalPages ↵ | Rytis Sileika | 2011-02-18 | 1 | -0/+2 |
| | | | | elements | ||||
* | Fixed an invalid parameter bug (ECS) #102 | Rytis Sileika | 2011-02-17 | 1 | -2/+2 |
| | |||||
* | Few more tweaks to pluggable auth branch. | Mitch Garnaat | 2011-01-09 | 1 | -23/+0 |
| | |||||
* | Lots of small changes to accomodate plug-in authentication mechanism. Still ↵ | Mitch Garnaat | 2011-01-07 | 1 | -0/+3 |
| | | | | on branch for now. | ||||
* | Added some escaping to the XMLized functions for ECS | Chris Moyer | 2010-09-10 | 1 | -1/+8 |
| | |||||
* | Updated ECS responses to allow you to dump the raw XML. | Chris Moyer | 2010-09-10 | 1 | -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 Moyer | 2010-09-09 | 2 | -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 ECS | Chris Moyer | 2010-09-08 | 2 | -5/+63 |
| | |||||
* | Added "ECS" shell. For now this just has "item_search" | Chris Moyer | 2010-09-08 | 2 | -0/+140 |