sucker 0.9.2 → 1.0.0.beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +4 -20
- data/lib/sucker/request.rb +16 -9
- data/lib/sucker/response.rb +5 -4
- data/lib/sucker/version.rb +1 -1
- data/lib/sucker.rb +2 -4
- data/spec/fixtures/cassette_library/integration/errors.yml +27 -0
- data/spec/fixtures/cassette_library/integration/france.yml +27 -0
- data/spec/fixtures/cassette_library/integration/images.yml +27 -0
- data/spec/fixtures/cassette_library/integration/item_lookup/multiple.yml +27 -0
- data/spec/fixtures/cassette_library/integration/item_lookup/single.yml +27 -0
- data/spec/fixtures/cassette_library/integration/item_search.yml +27 -0
- data/spec/fixtures/cassette_library/integration/japan.yml +27 -0
- data/spec/fixtures/cassette_library/integration/related_items/child.yml +27 -0
- data/spec/fixtures/cassette_library/integration/related_items/parent.yml +27 -0
- data/spec/fixtures/cassette_library/integration/seller_listings_search.yml +27 -0
- data/spec/fixtures/cassette_library/integration/twenty_items.yml +27 -0
- data/spec/fixtures/cassette_library/unit/sucker/request.yml +32 -0
- data/spec/fixtures/cassette_library/unit/sucker/response.yml +27 -0
- data/spec/integration/errors_spec.rb +7 -8
- data/spec/integration/france_spec.rb +15 -33
- data/spec/integration/images_spec.rb +12 -12
- data/spec/integration/item_lookup_spec.rb +25 -22
- data/spec/integration/item_search_spec.rb +12 -8
- data/spec/integration/japan_spec.rb +12 -15
- data/spec/integration/related_items_spec.rb +21 -16
- data/spec/integration/seller_listing_search_spec.rb +10 -11
- data/spec/integration/twenty_items_in_one_request_spec.rb +20 -19
- data/spec/spec_helper.rb +1 -0
- data/spec/support/amazon.yml +2 -0
- data/spec/support/amazon_credentials.rb +1 -0
- data/spec/support/asins.rb +1 -0
- data/spec/support/vcr.rb +14 -0
- data/spec/unit/sucker/request_spec.rb +45 -33
- data/spec/unit/sucker/response_spec.rb +27 -24
- data/spec/unit/sucker_spec.rb +1 -0
- metadata +114 -38
- data/lib/sucker/stub.rb +0 -45
- data/spec/support/sucker.rb +0 -3
- data/spec/unit/sucker/stub_spec.rb +0 -68
data/README.markdown
CHANGED
@@ -45,11 +45,11 @@ Confirm response is valid.
|
|
45
45
|
|
46
46
|
response.valid?
|
47
47
|
|
48
|
-
|
48
|
+
Cast response as a hash:
|
49
49
|
|
50
50
|
pp response.to_hash
|
51
51
|
|
52
|
-
|
52
|
+
Grab a node:
|
53
53
|
|
54
54
|
response.node("Item"),
|
55
55
|
response.node("Error")
|
@@ -61,30 +61,14 @@ Fetch another ASIN in a more DSL-y way.
|
|
61
61
|
|
62
62
|
Repeat ad infinitum.
|
63
63
|
|
64
|
-
Check the integration specs for more examples and then dive into API
|
64
|
+
Check the [integration specs](http://github.com/papercavalier/sucker/tree/master/spec/integration/) for more examples and then dive into the [API docs](https://affiliate-program.amazon.co.uk/gp/advertising/api/detail/main.html).
|
65
65
|
|
66
66
|
Stubbing
|
67
67
|
--------
|
68
68
|
|
69
|
-
|
70
|
-
|
71
|
-
require "sucker/stub"
|
72
|
-
|
73
|
-
Sucker.fixtures_path = File.dirname(__FILE__) + "/../fixtures"
|
74
|
-
|
75
|
-
In your spec, you can now stub the worker:
|
76
|
-
|
77
|
-
@worker = Sucker.new(some_hash)
|
78
|
-
Sucker.stub(@worker)
|
79
|
-
|
80
|
-
The first time you run the spec, Sucker will perform the actual request. Following requests will use a cached response.
|
69
|
+
Use [VCR](http://github.com/myronmarston/vcr). [This](http://github.com/papercavalier/sucker/blob/master/spec/support/sucker.rb) is my RSpec helper.
|
81
70
|
|
82
71
|
Compatibility
|
83
72
|
-------------
|
84
73
|
|
85
74
|
Specs pass against Ruby 1.8.7 and 1.9.2.
|
86
|
-
|
87
|
-
Todo
|
88
|
-
----
|
89
|
-
|
90
|
-
* Rip out the Stub class and use VCR instead once someone writes up a Curb adaptor for Webmock.
|
data/lib/sucker/request.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
module Sucker
|
2
|
+
module Sucker #:nodoc
|
3
3
|
|
4
4
|
# A wrapper around the API request
|
5
5
|
class Request
|
@@ -24,17 +24,27 @@ module Sucker
|
|
24
24
|
def initialize(args)
|
25
25
|
self.parameters = {
|
26
26
|
"Service" => "AWSECommerceService",
|
27
|
-
"Version" =>
|
27
|
+
"Version" => api_version
|
28
28
|
}
|
29
29
|
|
30
30
|
args.each { |k, v| send("#{k}=", v) }
|
31
31
|
end
|
32
32
|
|
33
|
-
# A helper method that merges a hash into
|
33
|
+
# A helper method that merges a hash into existing parameters
|
34
34
|
def <<(hash)
|
35
35
|
self.parameters.merge!(hash)
|
36
36
|
end
|
37
37
|
|
38
|
+
# Gets Amazon API version.
|
39
|
+
def api_version
|
40
|
+
@api_version ||= CURRENT_AMAZON_API_VERSION
|
41
|
+
end
|
42
|
+
|
43
|
+
# Set Amazon API version.
|
44
|
+
def api_version=(version)
|
45
|
+
@api_version = version
|
46
|
+
end
|
47
|
+
|
38
48
|
# A helper method that sets the associate tag
|
39
49
|
def associate_tag=(token)
|
40
50
|
parameters["AssociateTag"] = token
|
@@ -42,8 +52,9 @@ module Sucker
|
|
42
52
|
|
43
53
|
# A reusable, configurable cURL object
|
44
54
|
def curl
|
45
|
-
|
46
|
-
|
55
|
+
@curl ||= Curl::Easy.new
|
56
|
+
yield @curl if block_given?
|
57
|
+
@curl
|
47
58
|
end
|
48
59
|
|
49
60
|
# Performs the request and returns a response object
|
@@ -72,10 +83,6 @@ module Sucker
|
|
72
83
|
join("&")
|
73
84
|
end
|
74
85
|
|
75
|
-
def curl_object
|
76
|
-
@curl ||= Curl::Easy.new
|
77
|
-
end
|
78
|
-
|
79
86
|
def escape(string)
|
80
87
|
|
81
88
|
# Shamelessly plagiarized from ruby_aaws, which in turn plagiarizes
|
data/lib/sucker/response.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
module Sucker
|
2
|
+
module Sucker #:nodoc
|
3
3
|
|
4
4
|
# A Nokogiri-driven wrapper around the cURL response
|
5
5
|
class Response
|
@@ -21,6 +21,7 @@ module Sucker
|
|
21
21
|
strip_content(xml.to_hash)
|
22
22
|
end
|
23
23
|
|
24
|
+
# Checks if the HTTP response is OK
|
24
25
|
def valid?
|
25
26
|
code == 200
|
26
27
|
end
|
@@ -35,13 +36,13 @@ module Sucker
|
|
35
36
|
def strip_content(node)
|
36
37
|
case node
|
37
38
|
when Array
|
38
|
-
node.map { |
|
39
|
+
node.map { |child| strip_content(child) }
|
39
40
|
when Hash
|
40
41
|
if node.keys.size == 1 && node["__content__"]
|
41
42
|
node["__content__"]
|
42
43
|
else
|
43
|
-
node.inject({}) do |
|
44
|
-
|
44
|
+
node.inject({}) do |attributes, key_value|
|
45
|
+
attributes.merge({ key_value.first => strip_content(key_value.last) })
|
45
46
|
end
|
46
47
|
end
|
47
48
|
else
|
data/lib/sucker/version.rb
CHANGED
data/lib/sucker.rb
CHANGED
@@ -2,16 +2,14 @@
|
|
2
2
|
require "active_support/xml_mini/nokogiri"
|
3
3
|
require "curb"
|
4
4
|
require "digest/md5"
|
5
|
-
require "nokogiri"
|
6
5
|
require "sucker/request"
|
7
6
|
require "sucker/response"
|
8
|
-
require "sucker/version"
|
9
7
|
require "uri"
|
10
8
|
|
11
9
|
# = Sucker
|
12
|
-
# Sucker is a
|
10
|
+
# Sucker is a Ruby wrapper to the Amazon Product Advertising API.
|
13
11
|
module Sucker
|
14
|
-
|
12
|
+
CURRENT_AMAZON_API_VERSION = "2010-09-01"
|
15
13
|
|
16
14
|
def self.new(args={})
|
17
15
|
Sucker::Request.new(args)
|
@@ -0,0 +1,27 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&Condition=All&IdType=ASIN&ItemId=0816614024,0007218095,0007218176&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=b5uZ7NJ/Hk7iR6Jpoboc1bO4Nn2ohpCzqeuF5A6s6eE=&Timestamp=2010-10-14T15:44:41Z&Version=2010-09-01
|
6
|
+
body:
|
7
|
+
headers: {}
|
8
|
+
|
9
|
+
response: !ruby/struct:VCR::Response
|
10
|
+
status: !ruby/struct:VCR::ResponseStatus
|
11
|
+
code: 200
|
12
|
+
message: OK
|
13
|
+
headers:
|
14
|
+
date:
|
15
|
+
- Thu, 14 Oct 2010 15:44:42 GMT
|
16
|
+
server:
|
17
|
+
- Server
|
18
|
+
content-type:
|
19
|
+
- text/xml;charset=UTF-8
|
20
|
+
vary:
|
21
|
+
- Accept-Encoding,User-Agent
|
22
|
+
nncoection:
|
23
|
+
- close
|
24
|
+
transfer-encoding:
|
25
|
+
- chunked
|
26
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>2e1520d8-e6c0-496b-bb9c-3c7d64765fee</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"b5uZ7NJ/Hk7iR6Jpoboc1bO4Nn2ohpCzqeuF5A6s6eE=\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024,0007218095,0007218176\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"AKIAI66X5P3HPKX56PNQ\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-10-14T15:44:41Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.1107020000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ItemId>0007218095</ItemId><ItemId>0007218176</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest><Errors><Error><Code>AWS.InvalidParameterValue</Code><Message>0007218095 is not a valid value for ItemId. Please change this value and retry your request.</Message></Error><Error><Code>AWS.InvalidParameterValue</Code><Message>0007218176 is not a valid value for ItemId. Please change this value and retry your request.</Message></Error></Errors></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/tech-data/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title><TradeInValue><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></TradeInValue></ItemAttributes></Item></Items></ItemLookupResponse>"
|
27
|
+
http_version: "1.1"
|
@@ -0,0 +1,27 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://ecs.amazonaws.fr:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&Condition=All&IdType=ASIN&ItemId=2070119874&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=BFLAXOCE7+yG286Q0N7+frZcUuxtV1cJe2CnXKj1oSI=&Timestamp=2010-10-14T15:44:42Z&Version=2010-09-01
|
6
|
+
body:
|
7
|
+
headers: {}
|
8
|
+
|
9
|
+
response: !ruby/struct:VCR::Response
|
10
|
+
status: !ruby/struct:VCR::ResponseStatus
|
11
|
+
code: 200
|
12
|
+
message: OK
|
13
|
+
headers:
|
14
|
+
date:
|
15
|
+
- Thu, 14 Oct 2010 15:44:42 GMT
|
16
|
+
server:
|
17
|
+
- Server
|
18
|
+
content-type:
|
19
|
+
- text/xml;charset=UTF-8
|
20
|
+
vary:
|
21
|
+
- Accept-Encoding,User-Agent
|
22
|
+
nncoection:
|
23
|
+
- close
|
24
|
+
transfer-encoding:
|
25
|
+
- chunked
|
26
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>ba6e594f-8d01-4481-8dc4-d2c416a7b033</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"ItemId\" Value=\"2070119874\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"AKIAI66X5P3HPKX56PNQ\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-10-14T15:44:42Z\"></Argument><Argument Name=\"Signature\" Value=\"BFLAXOCE7+yG286Q0N7+frZcUuxtV1cJe2CnXKj1oSI=\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument></Arguments><RequestProcessingTime>0.0969270000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>2070119874</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>2070119874</ASIN><DetailPageURL>http://www.amazon.fr/Larch%C3%A9ologie-du-savoir-Michel-Foucault/dp/2070119874%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D2070119874</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.fr/gp/registry/wishlist/add-item.html%3Fasin.0%3D2070119874%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.fr/gp/pdp/taf/2070119874%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.fr/review/product/2070119874%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.fr/gp/offer-listing/2070119874%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink></ItemLinks><ItemAttributes><Author>Michel Foucault</Author><Binding>Broch\xC3\xA9</Binding><EAN>9782070119875</EAN><ISBN>2070119874</ISBN><Label>Editions Gallimard</Label><Languages><Language><Name>Fran\xC3\xA7ais</Name><Type>Unknown</Type></Language><Language><Name>Fran\xC3\xA7ais</Name><Type>Original Language</Type></Language></Languages><ListPrice><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></ListPrice><Manufacturer>Editions Gallimard</Manufacturer><NumberOfPages>288</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">79</Height><Length Units=\"hundredths-inches\">748</Length><Weight Units=\"hundredths-pounds\">62</Weight><Width Units=\"hundredths-inches\">488</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2008-02-07</PublicationDate><Publisher>Editions Gallimard</Publisher><Studio>Editions Gallimard</Studio><Title>L'arch\xC3\xA9ologie du savoir</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>800</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 8,00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>900</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 9,00</FormattedPrice></LowestUsedPrice><TotalNew>8</TotalNew><TotalUsed>2</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>10</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>A3V4L7IZ0Y01C9</MerchantId><Name>Folsca</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A3V4L7IZ0Y01C9</GlancePage><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>11</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>En stock. Envoi depuis la France.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>6DA5HX8M5u8roMmQ9CVA5KjIQMawoXReWoNOJ3cEiYClbTJ7PjqF8L2XINnCHEHfeNeCJhHvjIBJwspD4igkYJcDIL6zwGDka0syqKCFOJxMRve3dofVuBFyRQkIeEEmewjxl8u%2B7m8%3D</OfferListingId><ExchangeId>Y17M0951601M2031236</ExchangeId><Price><Amount>800</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 8,00</FormattedPrice></Price><AmountSaved><Amount>300</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 3,00</FormattedPrice></AmountSaved><PercentageSaved>27</PercentageSaved><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2VWFG8UYGJ3UX</MerchantId><Name>francoisep20</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A2VWFG8UYGJ3UX</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>121</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition></OfferAttributes><OfferListing><OfferListingId>ieX8nF2j0b5gcOBWlN%2BQd2ph%2BaMaXBaYDpZ3V5IYbup9F35G9mn5%2F1UW41odHNJYYbEj0qlZ7j5S7pW3r7cn0DbjJmihsI39F0jJpMIvbYepWGs7ZcfQgD7mEDsZCCWZner%2F7QEYdQs%3D</OfferListingId><ExchangeId>Y13M5239965M1914631</ExchangeId><Price><Amount>900</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 9,00</FormattedPrice></Price><AmountSaved><Amount>200</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 2,00</FormattedPrice></AmountSaved><PercentageSaved>18</PercentageSaved><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3G3PNXBCDB0DW</MerchantId><Name>chapitre_libraire</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A3G3PNXBCDB0DW</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.4</AverageFeedbackRating><TotalFeedback>19000</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>EXPEDITION COLIS SUIVI, SUIVI EN LIGNE ET PAR MAIL, PLUS DE 100 000 CLIENTS SATISFAITS</ConditionNote></OfferAttributes><OfferListing><OfferListingId>KdEPTqvYkgG7DHoh%2FOsBV%2BjoWPkSglx%2F%2FMNwCA78FKCzKlHmGwH83jE7rY%2BDGY3yXkJpPc4%2FR46JE7EkuxAkWAxrfa1r5G2Y7%2FRqEeZK8mk9XS5489ZpNpApd4VIgVd8lSTpu6KzAjM%3D</OfferListingId><ExchangeId>Y13M3877299M3863973</ExchangeId><Price><Amount>1045</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,45</FormattedPrice></Price><AmountSaved><Amount>55</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 0,55</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1EOXQT1GBGF1E</MerchantId><Name>chapitre_librairie</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A1EOXQT1GBGF1E</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.4</AverageFeedbackRating><TotalFeedback>142275</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>EXPEDITION COLIS SUIVI, SUIVI EN LIGNE ET PAR MAIL, PLUS DE 100 000 CLIENTS SATISFAITS</ConditionNote></OfferAttributes><OfferListing><OfferListingId>4V5pv43tDnucGBjSNOAYfVgdwhSZ9bg6mYy2QN7dR3z5saBYgOQ8fBZOvcVPvcPaahHBHSg0O8QVYDjrUAFOoAiwft%2BFEvxuyIzznuG%2FnafgyHXbsHwwHCsVDZQa6AI8OA%2Be5ny2H9w%3D</OfferListingId><ExchangeId>Y14M5010332M5161003</ExchangeId><Price><Amount>1045</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,45</FormattedPrice></Price><AmountSaved><Amount>55</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 0,55</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1X6FK5RDHNB96</MerchantId><Name>Amazon.fr</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A1X6FK5RDHNB96</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>Ll9qzytU%2FyAx%2BHdgUnbwL8zliXN8WYmUc%2BlPvC8VwrVH%2FXoBLxiKYbYsb0DWSD1CVNwrYqpYDlIxdrT6c9WtuQ%3D%3D</OfferListingId><Price><Amount>1046</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,46</FormattedPrice></Price><AmountSaved><Amount>54</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 0,54</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Habituellement exp\xC3\xA9di\xC3\xA9 sous 24 h</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2WDE0ZTZ0JHOQ</MerchantId><Name>librairiecontact</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A2WDE0ZTZ0JHOQ</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>5675</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>fgjI%2B0YinoYifRc16Co7TyjL10wdcxB9vB7LrA9RN8h3FrcZxE6XvJR8Oum1V%2BAVg4u8rsCFGjfyTXNjCaLAho1xYWUZAeSCwpSxuWFJVdxxv%2BzwZZf0OCgzIr0sa4pEK%2Bqg2W3mAVs%3D</OfferListingId><ExchangeId>Y20M2343623M2916371</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3ERDFR0BEJ3HJ</MerchantId><Name>librairie_coiffard</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A3ERDFR0BEJ3HJ</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>14111</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>ZFaucTYP1iM8Fx2T21iw7iAbUmtV48esK%2BuVnjEY4D3WBj4TB%2BMuRYBxDLT8%2B8PrW6vZ3klHq9W9vtvS%2F4BQafW0amoRzu8Xl0IrGUXp7hrCrlj4MR8p8GfWTJVwWgLVtJb03uviRZ0%3D</OfferListingId><ExchangeId>Y15M4375369M8794716</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1X6O0DTKBQ892</MerchantId><Name>livres_en_stocks</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A1X6O0DTKBQ892</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>5426</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>W2F846e%2FTmgsK02fLO1I0zB7ufrWeEGfFvU7XFI%2FPVI6h3nsa%2BRGWNqGOrvcRRhWLDfJMUtaAExzuNsCBKFnvY21JzA9V%2FId7vew1NITYzDSKfwOg6mlslSO%2Bhi3CIHFZ4HHXrx1TL4%3D</OfferListingId><ExchangeId>Y16M6500383M0666961</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>8</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ACXHY5958BU5U</MerchantId><Name>quartierlatinlibraire</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=ACXHY5958BU5U</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>2512</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Quartier Latin. Libraire \xC3\xA0 Saint Etienne.... 40 000 r\xC3\xA9f\xC3\xA9rences en stock... Exp\xC3\xA9dition sous 24 \xC3\xA0 48 heures... Lettres anciennes et modernes. Histoire. D\xC3\xA9couvertes. Sciences humaines. Philosophie. Litt\xC3\xA9ratures polici\xC3\xA8res.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>udEIS7L6Z8hQX3%2BLKhlCBNuxmpw8chSOfbjMwgJsUb%2FKoN2kxINzfxjeoykNATsPi%2F9G3gquyny4xw4nyc5ppB67vir9du8mKjMt0P%2BJRbt5Fnlx1V6dsFLWdaK5jy8fSVPx0SQ7FXQ%3D</OfferListingId><ExchangeId>Y19M2629467M6802798</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2NQCJQALMD64M</MerchantId><Name>librairie_ventdouest</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A2NQCJQALMD64M</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>8211</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>VQz%2FVu2JA2x7s609zZaR%2B81%2F7ufrwSSOifHFrKzFTRRzndh4GJzzbCmMJ2DlzfWMPuGBBjv%2FD9U1zYv%2FzbllFi%2B7AKMrofXmxzbdxRtOOl8c1mA%2BoB0WdUmhG1OTWu5sY%2F74jQnM8bE%3D</OfferListingId><ExchangeId>Y20M0526421M6342630</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items></ItemLookupResponse>"
|
27
|
+
http_version: "1.1"
|
@@ -0,0 +1,27 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=Images&Service=AWSECommerceService&Signature=bKQKoyydv6QrcqDWpPP4YGkqElKkz1eu3MHnHX9yW5I=&Timestamp=2010-10-14T15:44:42Z&Version=2010-09-01
|
6
|
+
body:
|
7
|
+
headers: {}
|
8
|
+
|
9
|
+
response: !ruby/struct:VCR::Response
|
10
|
+
status: !ruby/struct:VCR::ResponseStatus
|
11
|
+
code: 200
|
12
|
+
message: OK
|
13
|
+
headers:
|
14
|
+
date:
|
15
|
+
- Thu, 14 Oct 2010 15:44:42 GMT
|
16
|
+
server:
|
17
|
+
- Server
|
18
|
+
content-type:
|
19
|
+
- text/xml;charset=UTF-8
|
20
|
+
vary:
|
21
|
+
- Accept-Encoding,User-Agent
|
22
|
+
nncoection:
|
23
|
+
- close
|
24
|
+
transfer-encoding:
|
25
|
+
- chunked
|
26
|
+
body: <?xml version="1.0" ?><ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2010-09-01"><OperationRequest><RequestId>7d24fb62-85d1-4a47-8b96-ee5d26002074</RequestId><Arguments><Argument Name="Operation" Value="ItemLookup"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="Signature" Value="bKQKoyydv6QrcqDWpPP4YGkqElKkz1eu3MHnHX9yW5I="></Argument><Argument Name="Version" Value="2010-09-01"></Argument><Argument Name="ItemId" Value="0816614024"></Argument><Argument Name="IdType" Value="ASIN"></Argument><Argument Name="AWSAccessKeyId" Value="AKIAI66X5P3HPKX56PNQ"></Argument><Argument Name="Timestamp" Value="2010-10-14T15:44:42Z"></Argument><Argument Name="ResponseGroup" Value="Images"></Argument></Arguments><RequestProcessingTime>0.0246020000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>Images</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><SmallImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">107</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L.jpg</URL><Height Units="pixels">475</Height><Width Units="pixels">318</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">20</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">74</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">107</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L.jpg</URL><Height Units="pixels">475</Height><Width Units="pixels">318</Width></LargeImage></ImageSet></ImageSets></Item></Items></ItemLookupResponse>
|
27
|
+
http_version: "1.1"
|
@@ -0,0 +1,27 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&Condition=All&IdType=ASIN&ItemId=0816614024,0143105825&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=bdOO2pkrxXcOf/LUCCn4zfKKN39578HyqS9ZkDux4gY=&Timestamp=2010-10-14T15:44:43Z&Version=2010-09-01
|
6
|
+
body:
|
7
|
+
headers: {}
|
8
|
+
|
9
|
+
response: !ruby/struct:VCR::Response
|
10
|
+
status: !ruby/struct:VCR::ResponseStatus
|
11
|
+
code: 200
|
12
|
+
message: OK
|
13
|
+
headers:
|
14
|
+
date:
|
15
|
+
- Thu, 14 Oct 2010 15:44:43 GMT
|
16
|
+
server:
|
17
|
+
- Server
|
18
|
+
content-type:
|
19
|
+
- text/xml;charset=UTF-8
|
20
|
+
vary:
|
21
|
+
- Accept-Encoding,User-Agent
|
22
|
+
nncoection:
|
23
|
+
- close
|
24
|
+
transfer-encoding:
|
25
|
+
- chunked
|
26
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>358083e3-d4e3-4c6f-bd86-470cf8816ee3</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024,0143105825\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"AKIAI66X5P3HPKX56PNQ\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-10-14T15:44:43Z\"></Argument><Argument Name=\"Signature\" Value=\"bdOO2pkrxXcOf/LUCCn4zfKKN39578HyqS9ZkDux4gY=\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument></Arguments><RequestProcessingTime>0.1216900000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ItemId>0143105825</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/tech-data/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title><TradeInValue><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1625</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.25</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>5000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$50.00</FormattedPrice></LowestCollectiblePrice><TotalNew>27</TotalNew><TotalUsed>21</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>48</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A2N40VVFF4HONE</MerchantId><Name>bookcircus_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2N40VVFF4HONE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>AR</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>6734</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>All orders receive tracking information upon shipment (except expedited PO boxes). May not contain certain online supplements such as infotrac and web access codes. Used items likely contain highlighting and/or writing. Expedited shipping available.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>xbibzFvnPX8WEOAfgRhacVycW8HOcshyhJIQtIT6hsfJuQ4r6zn4zDJ63Tb4PSBlys3dnUMPuYMnlE4GiBpp38SFdiwvrtqeSG5Sekyb9hgxjlG6NybB7jfrn39KbUj6KrIv0vGUfuE%3D</OfferListingId><ExchangeId>Y11M4392395M5450056</ExchangeId><Price><Amount>1625</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.25</FormattedPrice></Price><AmountSaved><Amount>875</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.75</FormattedPrice></AmountSaved><PercentageSaved>35</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A33YWJZK210TPI</MerchantId><Name>jimsesales</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A33YWJZK210TPI</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NM</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>303</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Great Book! good to very good condition. cover wear/bend. Fast Shipping! Thank You For Your Business!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>92nnRqFTS0Z9WJtGgR5w%2F6TS0gvA93yE8FdianuKoukr%2BrSSbj1shjvnTDeMnkJxnVM4ScSltc%2FAax9eHJmZd34dR5cFBS9jqy6PdlJBslPy97t3SIjbwqw7IKbOVt0tp17T5Xxwz0I%3D</OfferListingId><ExchangeId>Y14M5617829M1312826</ExchangeId><Price><Amount>1748</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.48</FormattedPrice></Price><AmountSaved><Amount>752</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.52</FormattedPrice></AmountSaved><PercentageSaved>30</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>5gn16RHKkOiZh2WDAINIOZMNVmY7pHWAiR43%2B85dGw9dZLDFsiC3XyypG7fWnlCAcpZQuk4Mu0ZnC3Cq0P0Hfw%3D%3D</OfferListingId><Price><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></Price><AmountSaved><Amount>700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.00</FormattedPrice></AmountSaved><PercentageSaved>28</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1QJ4UH6FW3UH1</MerchantId><Name>motor_city_books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1QJ4UH6FW3UH1</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MI</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>66311</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Minimal damage to cover and binding. Pages show light use. With pride from Motor City. All books guaranteed. Best Service, Best Prices.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>uQd81LghDo0jVHKUKP8UV%2FwpYQzjoRG2XqYuCu%2F8Pv3eGFEdFPxAhk1fPOY6KDalT7KdVU%2BAP6VoGz6szv3JpBJQp8gUp3%2FhhxH1LVw1TSZhIdLZN7ehbSABmw6xU1jI</OfferListingId><ExchangeId>Y14M6034743M1466979</ExchangeId><Price><Amount>1939</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.39</FormattedPrice></Price><AmountSaved><Amount>561</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.61</FormattedPrice></AmountSaved><PercentageSaved>22</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3IS4K0BDHACV8</MerchantId><Name>Apollo-Books90</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3IS4K0BDHACV8</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>140</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Trade PB. 8vo. University of Minnesota Press. 1987. 610 pgs. Wrappers in excellent shape, with no wear present. Binding tight and solid. Book is free of ownership marks. Text is clean and free of marks. Photos sent upon request. 772</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Idl5DU1VvdW%2Bdo0VVZTk1BuCWezOIO7H%2FJaCt%2BJkzgWrb4RVU278a8VxbCaJNGQtOKq4f%2FfLINjAWlMhqo8UiNIf8lqD%2BJp5%2F7hd1CR6D%2FQgOciZd8NsMI0j10MXLwMcuKLNVLaq9DM%3D</OfferListingId><ExchangeId>Y12M1273632M5652898</ExchangeId><Price><Amount>1995</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.95</FormattedPrice></Price><AmountSaved><Amount>505</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.05</FormattedPrice></AmountSaved><PercentageSaved>20</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2SUF7Y73WB371</MerchantId><Name>Quick_N_Easy Marketplace</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2SUF7Y73WB371</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>7284</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New Item. Multiple copies available. Expedited and Two Days Delivery options!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>pwUbBxJ6dMw6QOZOgksfOjeWyan9KVmFnMeeHDWIECoDxPtBEbuUXM7eVWODYMmJIHIrif0%2B2xY3%2BjLqlwmD2h0UvY%2Bl2bjd1nwimdu8aDDzfrqG77eh1P08towM5iOQhLUDqtdlyr%2BwvERRn7CypQ%3D%3D</OfferListingId><ExchangeId>Y13M2255528M9001393</ExchangeId><Price><Amount>2170</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.70</FormattedPrice></Price><AmountSaved><Amount>330</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.30</FormattedPrice></AmountSaved><PercentageSaved>13</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2SUF7Y73WB371</MerchantId><Name>Quick_N_Easy Marketplace</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2SUF7Y73WB371</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>7284</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Brand New Item. Multiple copies available. Expedited and Two Days Delivery options!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Xrheem9DyCS4oXttTce8dAlxqvbWcpYB4mH6ga08FkJwf8FNnCaB56PAsFxsQ%2FMwPfNSa1sgRJoQAh%2FllyG9S9jqwpTlxTKrXxztMu2UH6RV4b0%2BWLUrJVQA8%2BSC2%2FIqlrK5IfBiPBiw9vNjc8bIHw%3D%3D</OfferListingId><ExchangeId>Y13M2258623M4336772</ExchangeId><Price><Amount>2170</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.70</FormattedPrice></Price><AmountSaved><Amount>330</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.30</FormattedPrice></AmountSaved><PercentageSaved>13</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2MU9ZILHNPP6L</MerchantId><Name>quality7</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2MU9ZILHNPP6L</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>46347</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Excellent customer service. Order inquiries handled promptly.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>tHQETFTjpJP1KEpaZ4bhdCHAAhVPyRjV4MwLDmZ%2B%2BBXisdgU4PjibFmRTEUAQH2IQuf4yGkD0nsyiybDK%2BugqBe4TVdsjk2B5QNZrfEe3BEdm18NHTSGLKfCHay0KVf4</OfferListingId><ExchangeId>Y17M0287288M5089461</ExchangeId><Price><Amount>2365</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.65</FormattedPrice></Price><AmountSaved><Amount>135</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.35</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2Z2CSK1PH6GOI</MerchantId><Name>bordeebook</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2Z2CSK1PH6GOI</GlancePage><Location><CountryCode>US</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>21053</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Used but in nice shape with normal surface & edge wear. Accessories may not be included. Fast shipping!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2FBhIZMexM9UOnwYIdD9dyr7keyw3gWddfUYn1gMkQm%2Fdy%2B0%2Fj3BW%2FuzvO82j3UkUK9knhjD%2BJLZCOfpDhnkBxpguqWf3%2FtGfPAL8LNJkIpSmQcasZjKCJJf3ae360OQ5%2BKUcB%2FqxVVQ%3D</OfferListingId><ExchangeId>Y12M0105825M2752161</ExchangeId><Price><Amount>2374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.74</FormattedPrice></Price><AmountSaved><Amount>126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.26</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3YUX3T6VE9ZS</MerchantId><Name>qualitystar</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3YUX3T6VE9ZS</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>3</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>author's name on inside cover; otherwise pristine (slight crease in spine).</ConditionNote></OfferAttributes><OfferListing><OfferListingId>iklAw4yCSd6mdGqtcbx%2FkeUD%2FAr6C0WT5nTucuGewUzcsOnsLOCQPbB73BXv8YTDsUxeLpAk64e4eZe%2FG0o2ZwYtO0LjAqWKsLvZewXfIs89Pii40cLvQGAlIzzrs1P7uBy8eBcvMLY%3D</OfferListingId><ExchangeId>Y15M0358503M0767087</ExchangeId><Price><Amount>2399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.99</FormattedPrice></Price><AmountSaved><Amount>101</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.01</FormattedPrice></AmountSaved><PercentageSaved>4</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0143105825</ASIN><DetailPageURL>http://www.amazon.com/Anti-Oedipus-Capitalism-Schizophrenia-Penguin-Classics/dp/0143105825%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0143105825</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Anti-Oedipus-Capitalism-Schizophrenia-Penguin-Classics/dp/tech-data/0143105825%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0143105825%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0143105825%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0143105825%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0143105825%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0143105825%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0143105825%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Binding>Paperback</Binding><Creator Role=\"Translator\">Robert Hurley</Creator><Creator Role=\"Translator\">Mark Seem</Creator><Creator Role=\"Introduction\">Mark Seem</Creator><Creator Role=\"Translator\">Helen Lane</Creator><Creator Role=\"Preface\">Michel Foucault</Creator><DeweyDecimalNumber>616</DeweyDecimalNumber><EAN>9780143105824</EAN><Feature>ISBN13: 9780143105824</Feature><Feature>Condition: New</Feature><Feature>Notes: BUY WITH CONFIDENCE, Over one million books sold! 98% Positive feedback. Compare our books, prices and service to the competition. 100% Satisfaction Guaranteed</Feature><ISBN>0143105825</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>Penguin Classics</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2200</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$22.00</FormattedPrice></ListPrice><Manufacturer>Penguin Classics</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>432</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">118</Height><Length Units=\"hundredths-inches\">819</Length><Weight Units=\"hundredths-pounds\">79</Weight><Width Units=\"hundredths-inches\">543</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2009-05-26</PublicationDate><Publisher>Penguin Classics</Publisher><Studio>Penguin Classics</Studio><Title>Anti-Oedipus: Capitalism and Schizophrenia (Penguin Classics)</Title><TradeInValue><Amount>425</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.25</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1191</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.91</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>15000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$150.00</FormattedPrice></LowestCollectiblePrice><TotalNew>30</TotalNew><TotalUsed>12</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>43</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A3TJVJMBQL014A</MerchantId><Name>the_book_depository_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3TJVJMBQL014A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>DE</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>110753</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International is by Royal Mail Airmail.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>AcJT42F9RQu6h62mMc%2F6xaYe5ZweuYqvijVXs3YFNr%2FW%2FQ%2Br%2FOU67%2BX%2BkzrYQsgFZ3wZi7PeygBmVCC4mSzoM%2Bz27nYSGsQDFc4c32N2WNmlaYQINgSD89%2FjvV85N3Fq908P2dyQtRM%3D</OfferListingId><ExchangeId>Y19M2442033M8899457</ExchangeId><Price><Amount>1191</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.91</FormattedPrice></Price><AmountSaved><Amount>1009</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.09</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A20EWB51R9YBPO</MerchantId><Name>---greatbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A20EWB51R9YBPO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>36286</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Absolutely Brand New & In Stock. 100% 30-Day Money Back. Direct from our warehouse. Ships by USPS. 1+ million customers served-In business since 1986. Happy Customers is Our #1 Goal. Toll Free Support</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2FNtiLWD%2FA7BgED%2FpfQp9Cs%2F3dlulFZojUaFJezHRgCyaGw0PyLdihOQiwVnEMMdcmxNqIAtbpsXs5mwxW%2BAtpP85kX4TwOC2b%2Bh8Ki572xTfRp1IbHNwie8jvpNQdCDefxVHskTH0Yw%3D</OfferListingId><ExchangeId>Y11M3848980M3444090</ExchangeId><Price><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></Price><AmountSaved><Amount>1008</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.08</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>487</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A20EWB51R9YBPO</MerchantId><Name>---greatbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A20EWB51R9YBPO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>36286</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Absolutely Brand New & In Stock. 100% 30-Day Money Back. Direct from our warehouse. Ships by USPS. 1+ million customers served-In business since 1986. Happy Customers is Our #1 Goal. Toll Free Support</ConditionNote></OfferAttributes><OfferListing><OfferListingId>WZnF3PzX%2FSwoiShZ5irplTA5oXZkvhAOMMa1R3LxmrowpHMz8ftoybxG2QSUmee8AZjKYXyA%2B0%2BAjyzozHZWvzxkcDqCkhtxKTYQoTmuw34AiEvrPVdJikBuDRggIaq2gZ7LJrYsvjA%3D</OfferListingId><ExchangeId>Y11M1567708M8523810</ExchangeId><Price><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></Price><AmountSaved><Amount>1008</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.08</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>495</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2E9OWRCF7T08Y</MerchantId><Name>pbshopus</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2E9OWRCF7T08Y</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>24719</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New American book. Shipped within the US in 4-7 days (expedited) or about 10-14 days (standard). Standard can occasionally be slower so we advise using expedited if quicker delivery is important!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>1B3IPTx94ixKSQ7V75dcy14GIhkytU81M453p5iX43V63XTMi5WgFkGl3OfMdapG3u7XttkCLswIkNrg9Lmrm4Aq%2FcfEek9LSQFrlKYu2%2BNfyEVgSNjiVjJsPS94zNvLR1AUrV0x22dlkTnfQFd0Fw%3D%3D</OfferListingId><ExchangeId>Y11M3981673M7711499</ExchangeId><Price><Amount>1252</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.52</FormattedPrice></Price><AmountSaved><Amount>948</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.48</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>12</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>30385</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand new book! Delivered direct from our US warehouse by Expedited (4-7 days) or Standard (usually 10-14 days but can be longer). Expedited shipping recommended for speedier delivery. Over 1 million satisfied customers</ConditionNote></OfferAttributes><OfferListing><OfferListingId>DxzF1%2FuD8OjmACsZU%2BkXKbKFdrVgWNcgAZX12KZPokKnGYK4QHzMM7Kom1GQprDLxHjggw604MNOnTTcTKkDiL5BAV7o0KyqNm5DLL5ScVRL%2FWvb00YWA8Dea8YH9N092ZJPxctFnJM%3D</OfferListingId><ExchangeId>Y12M1181029M9303018</ExchangeId><Price><Amount>1252</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.52</FormattedPrice></Price><AmountSaved><Amount>948</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.48</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>12</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1KIF2Y9A1PQYE</MerchantId><Name>allnewbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1KIF2Y9A1PQYE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17591</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>0tsTYSKSn3lvZ7dmhiMjrZPyUiOSQOckMSffGKdQYLnDPFyK8mNUIwCD1I6iCvbDDwwd9EpHLZ8CfWearWLXNVxqJrZShQVpo2SAW8SGrlwuPn89yPEjcte%2F8w9rnL0eWPLJgtMocig%3D</OfferListingId><ExchangeId>Y11M1470360M3110989</ExchangeId><Price><Amount>1280</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.80</FormattedPrice></Price><AmountSaved><Amount>920</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.20</FormattedPrice></AmountSaved><PercentageSaved>42</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3HY4G4FBZK8H4</MerchantId><Name>BuriedintheSand</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3HY4G4FBZK8H4</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CO</StateCode></Location><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>Jk%2F8TxVCgSSa1kQfV0JysMlh6mUSiwGbF9kR8ZCdUSUPGTAKXvq4dRQZCnqvku%2FK2NyEl8iBhbSgITnOSeQYaTCRBbS4htEBF8IOIx3CrvWUv6NZp2R58hUmO8MXdgA87gla5BLwWNvBrH%2FoJY%2BORA%3D%3D</OfferListingId><ExchangeId>Y19M6577051M0679616</ExchangeId><Price><Amount>1300</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.00</FormattedPrice></Price><AmountSaved><Amount>900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.00</FormattedPrice></AmountSaved><PercentageSaved>41</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1KIF2Y9A1PQYE</MerchantId><Name>allnewbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1KIF2Y9A1PQYE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17591</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>VKeqSZZ5JE6t2aY3e6HWvRjxwC%2BpiGa79PvdCm9cs%2Bj3T54LPmc7%2FokvgqxmaW2PRQZ1HPGOmK%2BQv4LmBO17%2FyTDMjZ6WdQdfvvqyvZ9FtvAiFwWiClCO5GEdRXgScQFOD2PVJe6O%2Fc%3D</OfferListingId><ExchangeId>Y11M0209708M5718954</ExchangeId><Price><Amount>1329</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.29</FormattedPrice></Price><AmountSaved><Amount>871</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.71</FormattedPrice></AmountSaved><PercentageSaved>40</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>55547</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>OeaP2ZLl4N681gkiFekj01fWTM4aV8WSz7AkuTQJUVBHnpU1r9jKa9QWkx60Nwv9jeg%2B22S9XpnangDeH5n%2FKefa4L1CFjfT5NtYg1%2FfR7JO%2BeBJ9oa3O0gstTvKvGPxjeW8ThMHMKWKdPzSxJiyuA%3D%3D</OfferListingId><ExchangeId>Y11M4816761M6624986</ExchangeId><Price><Amount>1385</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.85</FormattedPrice></Price><AmountSaved><Amount>815</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.15</FormattedPrice></AmountSaved><PercentageSaved>37</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>13</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AHNEEZ9CVAP3Q</MerchantId><Name>---superbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AHNEEZ9CVAP3Q</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>47021</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>HpxCD5WjRIs%2FrgGwjagwzkM6gQS5JSldk1Lquy9y4daYqUqT83X1yamjDhAJ8L1NC%2BHD9%2BoQSLeHNlZszWSU5IbVdfcL5qRF1aAIfthKJX%2F7MJKpXbasGTZohk54G7AWRTVUbIAgORw6uTMfINurAg%3D%3D</OfferListingId><ExchangeId>Y11M0530231M5949393</ExchangeId><Price><Amount>1386</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.86</FormattedPrice></Price><AmountSaved><Amount>814</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.14</FormattedPrice></AmountSaved><PercentageSaved>37</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items></ItemLookupResponse>"
|
27
|
+
http_version: "1.1"
|
@@ -0,0 +1,27 @@
|
|
1
|
+
---
|
2
|
+
- !ruby/struct:VCR::HTTPInteraction
|
3
|
+
request: !ruby/struct:VCR::Request
|
4
|
+
method: :get
|
5
|
+
uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&Condition=All&IdType=ASIN&ItemId=0816614024&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=h/9IMSyRmahIv+xO9OMhHJ+0kPtfbZ4HSzj9JiYLKWw=&Timestamp=2010-10-14T15:44:42Z&Version=2010-09-01
|
6
|
+
body:
|
7
|
+
headers: {}
|
8
|
+
|
9
|
+
response: !ruby/struct:VCR::Response
|
10
|
+
status: !ruby/struct:VCR::ResponseStatus
|
11
|
+
code: 200
|
12
|
+
message: OK
|
13
|
+
headers:
|
14
|
+
date:
|
15
|
+
- Thu, 14 Oct 2010 15:44:43 GMT
|
16
|
+
server:
|
17
|
+
- Server
|
18
|
+
content-type:
|
19
|
+
- text/xml;charset=UTF-8
|
20
|
+
vary:
|
21
|
+
- Accept-Encoding,User-Agent
|
22
|
+
nncoection:
|
23
|
+
- close
|
24
|
+
transfer-encoding:
|
25
|
+
- chunked
|
26
|
+
body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>f41d30fb-0510-4a26-a107-840c5835d651</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"h/9IMSyRmahIv+xO9OMhHJ+0kPtfbZ4HSzj9JiYLKWw=\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"AKIAI66X5P3HPKX56PNQ\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-10-14T15:44:42Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument></Arguments><RequestProcessingTime>0.0839920000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/tech-data/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title><TradeInValue><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1625</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.25</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>5000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$50.00</FormattedPrice></LowestCollectiblePrice><TotalNew>27</TotalNew><TotalUsed>21</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>48</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A2N40VVFF4HONE</MerchantId><Name>bookcircus_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2N40VVFF4HONE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>AR</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>6734</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>All orders receive tracking information upon shipment (except expedited PO boxes). May not contain certain online supplements such as infotrac and web access codes. Used items likely contain highlighting and/or writing. Expedited shipping available.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>xbibzFvnPX8WEOAfgRhacVycW8HOcshyhJIQtIT6hsfJuQ4r6zn4zDJ63Tb4PSBlys3dnUMPuYMnlE4GiBpp38SFdiwvrtqeSG5Sekyb9hgxjlG6NybB7jfrn39KbUj6KrIv0vGUfuE%3D</OfferListingId><ExchangeId>Y11M4392395M5450056</ExchangeId><Price><Amount>1625</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.25</FormattedPrice></Price><AmountSaved><Amount>875</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.75</FormattedPrice></AmountSaved><PercentageSaved>35</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A33YWJZK210TPI</MerchantId><Name>jimsesales</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A33YWJZK210TPI</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NM</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>303</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Great Book! good to very good condition. cover wear/bend. Fast Shipping! Thank You For Your Business!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>92nnRqFTS0Z9WJtGgR5w%2F6TS0gvA93yE8FdianuKoukr%2BrSSbj1shjvnTDeMnkJxnVM4ScSltc%2FAax9eHJmZd34dR5cFBS9jqy6PdlJBslPy97t3SIjbwqw7IKbOVt0tp17T5Xxwz0I%3D</OfferListingId><ExchangeId>Y14M5617829M1312826</ExchangeId><Price><Amount>1748</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.48</FormattedPrice></Price><AmountSaved><Amount>752</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.52</FormattedPrice></AmountSaved><PercentageSaved>30</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>5gn16RHKkOiZh2WDAINIOZMNVmY7pHWAiR43%2B85dGw9dZLDFsiC3XyypG7fWnlCAcpZQuk4Mu0ZnC3Cq0P0Hfw%3D%3D</OfferListingId><Price><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></Price><AmountSaved><Amount>700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.00</FormattedPrice></AmountSaved><PercentageSaved>28</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1QJ4UH6FW3UH1</MerchantId><Name>motor_city_books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1QJ4UH6FW3UH1</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MI</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>66314</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Minimal damage to cover and binding. Pages show light use. With pride from Motor City. All books guaranteed. Best Service, Best Prices.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>uQd81LghDo0jVHKUKP8UV%2FwpYQzjoRG2XqYuCu%2F8Pv3eGFEdFPxAhk1fPOY6KDalT7KdVU%2BAP6VoGz6szv3JpBJQp8gUp3%2FhhxH1LVw1TSZhIdLZN7ehbSABmw6xU1jI</OfferListingId><ExchangeId>Y14M6034743M1466979</ExchangeId><Price><Amount>1939</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.39</FormattedPrice></Price><AmountSaved><Amount>561</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.61</FormattedPrice></AmountSaved><PercentageSaved>22</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3IS4K0BDHACV8</MerchantId><Name>Apollo-Books90</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3IS4K0BDHACV8</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>140</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Trade PB. 8vo. University of Minnesota Press. 1987. 610 pgs. Wrappers in excellent shape, with no wear present. Binding tight and solid. Book is free of ownership marks. Text is clean and free of marks. Photos sent upon request. 772</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Idl5DU1VvdW%2Bdo0VVZTk1BuCWezOIO7H%2FJaCt%2BJkzgWrb4RVU278a8VxbCaJNGQtOKq4f%2FfLINjAWlMhqo8UiNIf8lqD%2BJp5%2F7hd1CR6D%2FQgOciZd8NsMI0j10MXLwMcuKLNVLaq9DM%3D</OfferListingId><ExchangeId>Y12M1273632M5652898</ExchangeId><Price><Amount>1995</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.95</FormattedPrice></Price><AmountSaved><Amount>505</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.05</FormattedPrice></AmountSaved><PercentageSaved>20</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2SUF7Y73WB371</MerchantId><Name>Quick_N_Easy Marketplace</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2SUF7Y73WB371</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>7284</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New Item. Multiple copies available. Expedited and Two Days Delivery options!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>pwUbBxJ6dMw6QOZOgksfOjeWyan9KVmFnMeeHDWIECoDxPtBEbuUXM7eVWODYMmJIHIrif0%2B2xY3%2BjLqlwmD2h0UvY%2Bl2bjd1nwimdu8aDDzfrqG77eh1P08towM5iOQhLUDqtdlyr%2BwvERRn7CypQ%3D%3D</OfferListingId><ExchangeId>Y13M2255528M9001393</ExchangeId><Price><Amount>2170</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.70</FormattedPrice></Price><AmountSaved><Amount>330</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.30</FormattedPrice></AmountSaved><PercentageSaved>13</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2SUF7Y73WB371</MerchantId><Name>Quick_N_Easy Marketplace</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2SUF7Y73WB371</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>7284</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Brand New Item. Multiple copies available. Expedited and Two Days Delivery options!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Xrheem9DyCS4oXttTce8dAlxqvbWcpYB4mH6ga08FkJwf8FNnCaB56PAsFxsQ%2FMwPfNSa1sgRJoQAh%2FllyG9S9jqwpTlxTKrXxztMu2UH6RV4b0%2BWLUrJVQA8%2BSC2%2FIqlrK5IfBiPBiw9vNjc8bIHw%3D%3D</OfferListingId><ExchangeId>Y13M2258623M4336772</ExchangeId><Price><Amount>2170</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.70</FormattedPrice></Price><AmountSaved><Amount>330</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.30</FormattedPrice></AmountSaved><PercentageSaved>13</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2MU9ZILHNPP6L</MerchantId><Name>quality7</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2MU9ZILHNPP6L</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>46350</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Excellent customer service. Order inquiries handled promptly.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>tHQETFTjpJP1KEpaZ4bhdCHAAhVPyRjV4MwLDmZ%2B%2BBXisdgU4PjibFmRTEUAQH2IQuf4yGkD0nsyiybDK%2BugqBe4TVdsjk2B5QNZrfEe3BEdm18NHTSGLKfCHay0KVf4</OfferListingId><ExchangeId>Y17M0287288M5089461</ExchangeId><Price><Amount>2365</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.65</FormattedPrice></Price><AmountSaved><Amount>135</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.35</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2Z2CSK1PH6GOI</MerchantId><Name>bordeebook</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2Z2CSK1PH6GOI</GlancePage><Location><CountryCode>US</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>21056</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Used but in nice shape with normal surface & edge wear. Accessories may not be included. Fast shipping!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2FBhIZMexM9UOnwYIdD9dyr7keyw3gWddfUYn1gMkQm%2Fdy%2B0%2Fj3BW%2FuzvO82j3UkUK9knhjD%2BJLZCOfpDhnkBxpguqWf3%2FtGfPAL8LNJkIpSmQcasZjKCJJf3ae360OQ5%2BKUcB%2FqxVVQ%3D</OfferListingId><ExchangeId>Y12M0105825M2752161</ExchangeId><Price><Amount>2374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.74</FormattedPrice></Price><AmountSaved><Amount>126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.26</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3YUX3T6VE9ZS</MerchantId><Name>qualitystar</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3YUX3T6VE9ZS</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>3</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>author's name on inside cover; otherwise pristine (slight crease in spine).</ConditionNote></OfferAttributes><OfferListing><OfferListingId>iklAw4yCSd6mdGqtcbx%2FkeUD%2FAr6C0WT5nTucuGewUzcsOnsLOCQPbB73BXv8YTDsUxeLpAk64e4eZe%2FG0o2ZwYtO0LjAqWKsLvZewXfIs89Pii40cLvQGAlIzzrs1P7uBy8eBcvMLY%3D</OfferListingId><ExchangeId>Y15M0358503M0767087</ExchangeId><Price><Amount>2399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.99</FormattedPrice></Price><AmountSaved><Amount>101</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.01</FormattedPrice></AmountSaved><PercentageSaved>4</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items></ItemLookupResponse>"
|
27
|
+
http_version: "1.1"
|