== RECS4 is

An interface library to use
the Amazon E-Commerce Service 4.0 (ECS4.0) API on Ruby.


== Example to use

o = RECS4::Operation.new("Your AWSAccessKeyId", :locale => "jp")

# ItemLookup Operation
r = o.item_lookup("some asin", :response_group => "Large")
# Get element value
r[:items][:item][:asin].text #=> "some asin"
# Get attribute value
r[:items][:item][:item_attributes][:creator].a("Role") #=> "Artist"

# ItemSearch Operation
r = o.item_search("keywords")
# Get total pages
r[:items][:total_pages].text.to_i
# Get All items
r[:items][:item].each do |item|
item[:item_attributes][:artist].text
end


== License

See LICENSE


== Report bugs

https://rubyforge.org/projects/recs4/


== SVN repository

http://www.looselife.org/svn/ruby/lib/recs4/trunk/


== Developper

* kinumi
* [email protected]
* http://www.looselife.org/