emporium 0.0.3 → 0.1.0

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.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Emporium
2
2
 
3
+ [![Build Status](https://travis-ci.org/hugobast/emporium.png?branch=master)](https://travis-ci.org/hugobast/emporium) [![Code Climate](https://codeclimate.com/github/hugobast/emporium.png)](https://codeclimate.com/github/hugobast/emporium)
4
+
3
5
  Automatic identification and data capture library to read UPC/EAN and get as much information as it possibly can.
4
6
 
5
7
 
@@ -16,20 +18,20 @@ Add to your Gemfile and run the `bundle` command to install it.
16
18
 
17
19
  ## Configuration
18
20
 
19
- ### Amazon
21
+ #### Amazon
20
22
 
21
23
  ```ruby
22
- service = Emporium::Services::Amazon.configuration do |config|
24
+ Emporium::Services::Amazon.configuration do |config|
23
25
  config.access_key = "access_key"
24
26
  config.associate_tag = "associate_tag"
25
27
  config.secret = "secret"
26
28
  end
27
29
  ```
28
30
 
29
- ### Google
31
+ #### Google
30
32
 
31
33
  ```ruby
32
- service = Emporium::Services::Google.configuration do |config|
34
+ Emporium::Services::Google.configuration do |config|
33
35
  config.access_key = "access_key"
34
36
  config.cme = "cse" # custom search engine
35
37
  end
@@ -44,7 +46,7 @@ Give it a UPC to fetch a product object. The Code only takes UPC-A digits
44
46
  require 'emporium'
45
47
 
46
48
  product = Emporium::Product.new("066661234567")
47
- product.use service
49
+ product.use :google # or :amazon
48
50
  product.fetch!
49
51
  ```
50
52
 
data/emporium.gemspec CHANGED
@@ -21,6 +21,9 @@ Gem::Specification.new do |s|
21
21
  s.add_dependency 'nokogiri'
22
22
  s.add_dependency 'ruby-hmac'
23
23
  s.add_dependency 'json'
24
+ s.add_dependency 'rake'
24
25
 
25
26
  s.add_development_dependency "rspec"
27
+ s.add_development_dependency "vcr"
28
+ s.add_development_dependency "webmock"
26
29
  end
@@ -13,9 +13,9 @@ module Emporium
13
13
  create @service.response
14
14
  end
15
15
 
16
- def use(service, options={})
17
- options.merge!(code: @code.value)
18
- @service = service.new(options)
16
+ def service=(service, options={})
17
+ klass = Emporium::Services.const_get("#{service.capitalize.to_s}")
18
+ @service = klass.new(options.merge!(code: @code.value))
19
19
  end
20
20
 
21
21
  private
@@ -7,6 +7,7 @@ module Emporium
7
7
  module Services
8
8
  class Amazon
9
9
  include Emporium::Services::Options
10
+ include Emporium::Services::Utilities
10
11
 
11
12
  service_attr_accessor :access_key, :secret, :associate_tag
12
13
 
@@ -19,8 +20,6 @@ module Emporium
19
20
  end
20
21
 
21
22
  private
22
- include Emporium::Services::Utilities
23
-
24
23
  def attributes
25
24
  response = ::Nokogiri::XML(open("http://webservices.amazon.com/onca/xml?#{signed_query}"))
26
25
  message = response.search('Message')
@@ -4,6 +4,8 @@ module Emporium
4
4
  module Services
5
5
  class Google
6
6
  include Emporium::Services::Options
7
+ include Emporium::Services::Utilities
8
+
7
9
  service_attr_accessor :access_key, :cse
8
10
 
9
11
  def initialize(options={})
@@ -15,8 +17,6 @@ module Emporium
15
17
  end
16
18
 
17
19
  private
18
- include Emporium::Services::Utilities
19
-
20
20
  def attributes
21
21
  response = open(request)
22
22
  hash = hash_from_json(response.read)
@@ -9,17 +9,18 @@ module Emporium
9
9
  module ClassMethods
10
10
  def configuration
11
11
  yield self
12
+ self
12
13
  end
13
14
 
14
- def service_attr_accessor(*symbols)
15
- symbols.each do |symbol|
15
+ def service_attr_accessor(*attributes)
16
+ attributes.each do |attribute|
16
17
  class_eval(<<-EOS)
17
- def self.#{symbol}
18
- @@#{symbol}
18
+ def self.#{attribute}
19
+ @@#{attribute}
19
20
  end
20
21
 
21
- def self.#{symbol}=(value)
22
- @@#{symbol} = value
22
+ def self.#{attribute}=(value)
23
+ @@#{attribute} = value
23
24
  end
24
25
  EOS
25
26
  end
@@ -1,3 +1,3 @@
1
1
  module Emporium
2
- VERSION = "0.0.3"
2
+ VERSION = "0.1.0"
3
3
  end
@@ -0,0 +1,8 @@
1
+ amazon:
2
+ secret: "secret"
3
+ access_key: "access_key"
4
+ associate_tag: "associate_tag"
5
+
6
+ google:
7
+ access_key: "access_key"
8
+ cse: "cse"
@@ -23,46 +23,62 @@ describe Emporium::Product do
23
23
  end
24
24
 
25
25
  describe "#fetch!" do
26
- product = Emporium::Product.new("610839331574")
26
+ let(:product) { Emporium::Product.new("610839331574") }
27
27
 
28
28
  describe "using the amazon service" do
29
- product.use Emporium::Services::Amazon
29
+ before do
30
+ product.service = :amazon
31
+ end
30
32
 
31
33
  it "should fetch product information" do
32
- lambda { product.fetch! }.should_not raise_error
34
+ VCR.use_cassette("fetch_amazon") do
35
+ lambda { product.fetch! }.should_not raise_error
36
+ end
33
37
  end
34
38
 
35
39
  it "should create attributes for the product" do
36
- product.fetch!
37
- product.brand.downcase.should match 'asus'
40
+ VCR.use_cassette("fetch_amazon") do
41
+ product.fetch!
42
+ product.brand.downcase.should match 'asus'
43
+ end
38
44
  end
39
45
  end
40
46
 
41
47
  describe "using the google service" do
42
- product.use Emporium::Services::Google
48
+ before do
49
+ product.service = :google
50
+ end
43
51
 
44
52
  it "should fetch product information" do
45
- lambda { product.fetch! }.should_not raise_error
53
+ VCR.use_cassette("fetch_google") do
54
+ lambda { product.fetch! }.should_not raise_error
55
+ end
46
56
  end
47
57
 
48
58
  it "should create attributes for the product" do
49
- product.fetch!
50
- product.brand.downcase.should match 'asus'
59
+ VCR.use_cassette("fetch_google") do
60
+ product.fetch!
61
+ product.brand.downcase.should match 'asus'
62
+ end
51
63
  end
52
64
  end
53
65
 
54
66
  end
55
67
 
56
- describe "#use" do
68
+ describe "#service=" do
57
69
  it "tells a product what service to use" do
58
70
  product = Emporium::Product.new("610839331574")
59
- product.use Emporium::Services::Amazon
71
+ product.service = :amazon
60
72
  product.service.should be_an_instance_of Emporium::Services::Amazon
61
73
  end
62
74
  end
63
75
  end
64
76
 
65
77
  describe Emporium::Services::Amazon do
78
+ it "should not modify every classes" do
79
+ Class.methods.should_not include :access_key
80
+ end
81
+
66
82
  describe "#new" do
67
83
  it "should initialize with options" do
68
84
  options = { some: "option" }
@@ -73,8 +89,10 @@ describe Emporium::Services::Amazon do
73
89
 
74
90
  describe "#response" do
75
91
  it "should return a Hash" do
76
- service = Emporium::Services::Amazon.new(code: "610839331574")
77
- service.response.should be_an_instance_of Hash
92
+ VCR.use_cassette("fetch_amazon") do
93
+ service = Emporium::Services::Amazon.new(code: "610839331574")
94
+ service.response.should be_an_instance_of Hash
95
+ end
78
96
  end
79
97
 
80
98
  it "should raise an error if nothing is found" do
@@ -96,8 +114,10 @@ describe Emporium::Services::Google do
96
114
 
97
115
  describe "#response" do
98
116
  it "should return a Hash" do
99
- service = Emporium::Services::Google.new(code: "610839331574")
100
- service.response.should be_an_instance_of Hash
117
+ VCR.use_cassette("fetch_google") do
118
+ service = Emporium::Services::Google.new(code: "610839331574")
119
+ service.response.should be_an_instance_of Hash
120
+ end
101
121
  end
102
122
 
103
123
  it "should return an error if nothing is found" do
@@ -121,4 +141,4 @@ describe Emporium::Code do
121
141
  end
122
142
  end
123
143
  end
124
-
144
+
@@ -0,0 +1,245 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://webservices.amazon.com/onca/xml?AWSAccessKeyId=<access_key>&AssociateTag=<associate_tag>&IdType=UPC&ItemId=610839331574&Operation=ItemLookup&ResponseGroup=Medium&SearchIndex=All&Service=AWSECommerceService&Signature=rbCrXwMg7kubliOwRMtSVB6Zbh7dGFIlkqxY/fbt0D0=&Timestamp=2013-02-28T13:59:44-05:00&Version=2011-08-01
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept:
11
+ - ! '*/*'
12
+ User-Agent:
13
+ - Ruby
14
+ response:
15
+ status:
16
+ code: 200
17
+ message: OK
18
+ headers:
19
+ Date:
20
+ - Thu, 28 Feb 2013 18:59:44 GMT
21
+ Server:
22
+ - Server
23
+ Content-Type:
24
+ - text/xml;charset=UTF-8
25
+ Vary:
26
+ - Accept-Encoding,User-Agent
27
+ Nncoection:
28
+ - close
29
+ Transfer-Encoding:
30
+ - chunked
31
+ body:
32
+ encoding: US-ASCII
33
+ string: <?xml version="1.0" ?><ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2011-08-01"><OperationRequest><HTTPHeaders><Header
34
+ Name="UserAgent" Value="Ruby"></Header></HTTPHeaders><RequestId>5ac4a450-2f8b-4168-b542-c231c18fc66e</RequestId><Arguments><Argument
35
+ Name="Operation" Value="ItemLookup"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument
36
+ Name="Signature" Value="rbCrXwMg7kubliOwRMtSVB6Zbh7dGFIlkqxY/fbt0D0="></Argument><Argument
37
+ Name="AssociateTag" Value="<associate_tag>"></Argument><Argument Name="Version"
38
+ Value="2011-08-01"></Argument><Argument Name="ItemId" Value="610839331574"></Argument><Argument
39
+ Name="IdType" Value="UPC"></Argument><Argument Name="AWSAccessKeyId" Value="<access_key>"></Argument><Argument
40
+ Name="Timestamp" Value="2013-02-28T13:59:44-05:00"></Argument><Argument Name="ResponseGroup"
41
+ Value="Medium"></Argument><Argument Name="SearchIndex" Value="All"></Argument></Arguments><RequestProcessingTime>0.0412300000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><IdType>UPC</IdType><ItemId>610839331574</ItemId><ResponseGroup>Medium</ResponseGroup><SearchIndex>All</SearchIndex><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>B00AHIHH7E</ASIN><DetailPageURL>http://www.amazon.com/Asus-23-6-LCD-Monitor/dp/B00AHIHH7E%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB00AHIHH7E</DetailPageURL><ItemLinks><ItemLink><Description>Technical
42
+ Details</Description><URL>http://www.amazon.com/Asus-23-6-LCD-Monitor/dp/tech-data/B00AHIHH7E%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink><ItemLink><Description>Add
43
+ To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB00AHIHH7E%26SubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink><ItemLink><Description>Add
44
+ To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB00AHIHH7E%26SubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink><ItemLink><Description>Add
45
+ To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB00AHIHH7E%26SubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink><ItemLink><Description>Tell
46
+ A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B00AHIHH7E%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink><ItemLink><Description>All
47
+ Customer Reviews</Description><URL>http://www.amazon.com/review/product/B00AHIHH7E%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink><ItemLink><Description>All
48
+ Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B00AHIHH7E%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink></ItemLinks><SmallImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL75_.jpg</URL><Height
49
+ Units="pixels">75</Height><Width Units="pixels">75</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL160_.jpg</URL><Height
50
+ Units="pixels">160</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL.jpg</URL><Height
51
+ Units="pixels">400</Height><Width Units="pixels">400</Width></LargeImage><ImageSets><ImageSet
52
+ Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL30_.jpg</URL><Height
53
+ Units="pixels">30</Height><Width Units="pixels">30</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL75_.jpg</URL><Height
54
+ Units="pixels">75</Height><Width Units="pixels">75</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL75_.jpg</URL><Height
55
+ Units="pixels">75</Height><Width Units="pixels">75</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL110_.jpg</URL><Height
56
+ Units="pixels">110</Height><Width Units="pixels">110</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL160_.jpg</URL><Height
57
+ Units="pixels">160</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL.jpg</URL><Height
58
+ Units="pixels">400</Height><Width Units="pixels">400</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Binding>Electronics</Binding><Brand>Asus</Brand><EAN>0610839331574</EAN><EANList><EANListElement>0610839331574</EANListElement></EANList><Label>Asus</Label><ListPrice><Amount>17900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$179.00</FormattedPrice></ListPrice><Manufacturer>Asus</Manufacturer><MPN>610839331574</MPN><PackageQuantity>5</PackageQuantity><PartNumber>610839331574</PartNumber><ProductGroup>CE</ProductGroup><ProductTypeName>CONSUMER_ELECTRONICS</ProductTypeName><Publisher>Asus</Publisher><Studio>Asus</Studio><Title>23.6"
59
+ LCD Monitor</Title><UPC>610839331574</UPC><UPCList><UPCListElement>610839331574</UPCListElement></UPCList></ItemAttributes><OfferSummary><TotalNew>0</TotalNew><TotalUsed>0</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
60
+ Description</Source><Content>&lt;p&gt;23.6" LCD Monitor&lt;/p&gt;&lt;p&gt;&lt;p&gt;LED
61
+ Monitor - VE247H 23.6" - True to life Pictures Powered by LED&lt;br /&gt;&lt;br
62
+ /&gt;&lt;br /&gt;&lt;i&gt;***This item is expected to deliver in 4-10 business
63
+ days. Tracking information is usually sent within 3-5 business days from the
64
+ date of the purchase. This item does not ship to Alaska or Hawaii. The item
65
+ also does not ship to P.O. boxes or APOs.***&lt;/i&gt;&lt;/p&gt;</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews></Item><Item><ASIN>B004EFUOY4</ASIN><DetailPageURL>http://www.amazon.com/Asus-VE247H-24-Inch-Integrated-Speakers/dp/B004EFUOY4%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB004EFUOY4</DetailPageURL><ItemLinks><ItemLink><Description>Technical
66
+ Details</Description><URL>http://www.amazon.com/Asus-VE247H-24-Inch-Integrated-Speakers/dp/tech-data/B004EFUOY4%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink><ItemLink><Description>Add
67
+ To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB004EFUOY4%26SubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink><ItemLink><Description>Add
68
+ To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB004EFUOY4%26SubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink><ItemLink><Description>Add
69
+ To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB004EFUOY4%26SubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink><ItemLink><Description>Tell
70
+ A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B004EFUOY4%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink><ItemLink><Description>All
71
+ Customer Reviews</Description><URL>http://www.amazon.com/review/product/B004EFUOY4%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink><ItemLink><Description>All
72
+ Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B004EFUOY4%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink></ItemLinks><SalesRank>149</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL75_.jpg</URL><Height
73
+ Units="pixels">56</Height><Width Units="pixels">75</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL160_.jpg</URL><Height
74
+ Units="pixels">120</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL.jpg</URL><Height
75
+ Units="pixels">375</Height><Width Units="pixels">500</Width></LargeImage><ImageSets><ImageSet
76
+ Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL30_.jpg</URL><Height
77
+ Units="pixels">22</Height><Width Units="pixels">30</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL75_.jpg</URL><Height
78
+ Units="pixels">56</Height><Width Units="pixels">75</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL75_.jpg</URL><Height
79
+ Units="pixels">56</Height><Width Units="pixels">75</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL110_.jpg</URL><Height
80
+ Units="pixels">82</Height><Width Units="pixels">110</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL160_.jpg</URL><Height
81
+ Units="pixels">120</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL.jpg</URL><Height
82
+ Units="pixels">375</Height><Width Units="pixels">500</Width></LargeImage></ImageSet><ImageSet
83
+ Category="variant"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41-ZYL1LcdL._SL30_.jpg</URL><Height
84
+ Units="pixels">22</Height><Width Units="pixels">30</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41-ZYL1LcdL._SL75_.jpg</URL><Height
85
+ Units="pixels">56</Height><Width Units="pixels">75</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41-ZYL1LcdL._SL75_.jpg</URL><Height
86
+ Units="pixels">56</Height><Width Units="pixels">75</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41-ZYL1LcdL._SL110_.jpg</URL><Height
87
+ Units="pixels">82</Height><Width Units="pixels">110</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41-ZYL1LcdL._SL160_.jpg</URL><Height
88
+ Units="pixels">120</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41-ZYL1LcdL.jpg</URL><Height
89
+ Units="pixels">375</Height><Width Units="pixels">500</Width></LargeImage></ImageSet><ImageSet
90
+ Category="variant"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41ABbKFchBL._SL30_.jpg</URL><Height
91
+ Units="pixels">22</Height><Width Units="pixels">30</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41ABbKFchBL._SL75_.jpg</URL><Height
92
+ Units="pixels">56</Height><Width Units="pixels">75</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41ABbKFchBL._SL75_.jpg</URL><Height
93
+ Units="pixels">56</Height><Width Units="pixels">75</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41ABbKFchBL._SL110_.jpg</URL><Height
94
+ Units="pixels">82</Height><Width Units="pixels">110</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41ABbKFchBL._SL160_.jpg</URL><Height
95
+ Units="pixels">120</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41ABbKFchBL.jpg</URL><Height
96
+ Units="pixels">375</Height><Width Units="pixels">500</Width></LargeImage></ImageSet><ImageSet
97
+ Category="variant"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/31bO7MgJBSL._SL30_.jpg</URL><Height
98
+ Units="pixels">30</Height><Width Units="pixels">22</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/31bO7MgJBSL._SL75_.jpg</URL><Height
99
+ Units="pixels">75</Height><Width Units="pixels">56</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/31bO7MgJBSL._SL75_.jpg</URL><Height
100
+ Units="pixels">75</Height><Width Units="pixels">56</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/31bO7MgJBSL._SL110_.jpg</URL><Height
101
+ Units="pixels">110</Height><Width Units="pixels">82</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/31bO7MgJBSL._SL160_.jpg</URL><Height
102
+ Units="pixels">160</Height><Width Units="pixels">120</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/31bO7MgJBSL.jpg</URL><Height
103
+ Units="pixels">500</Height><Width Units="pixels">375</Width></LargeImage></ImageSet><ImageSet
104
+ Category="variant"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/31aYFwVPOML._SL30_.jpg</URL><Height
105
+ Units="pixels">22</Height><Width Units="pixels">30</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/31aYFwVPOML._SL75_.jpg</URL><Height
106
+ Units="pixels">56</Height><Width Units="pixels">75</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/31aYFwVPOML._SL75_.jpg</URL><Height
107
+ Units="pixels">56</Height><Width Units="pixels">75</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/31aYFwVPOML._SL110_.jpg</URL><Height
108
+ Units="pixels">82</Height><Width Units="pixels">110</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/31aYFwVPOML._SL160_.jpg</URL><Height
109
+ Units="pixels">120</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/31aYFwVPOML.jpg</URL><Height
110
+ Units="pixels">374</Height><Width Units="pixels">500</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Binding>Electronics</Binding><Brand>Asus</Brand><CatalogNumberList><CatalogNumberListElement>VE247H</CatalogNumberListElement><CatalogNumberListElement>MT-AS-VE247H</CatalogNumberListElement><CatalogNumberListElement>DHVE247H</CatalogNumberListElement></CatalogNumberList><EAN>0999994781708</EAN><EANList><EANListElement>0999994781708</EANListElement><EANListElement>0610839331574</EANListElement><EANListElement>0999994572054</EANListElement></EANList><Feature>23.6"
111
+ LED Monitor with 10,000,000:1 ASUS Smart Contrast Ratio</Feature><Feature>Full
112
+ HD with HDMI</Feature><Feature>2ms Response Time</Feature><Feature>ASUS SPLENDID
113
+ is The Secret for Vibrant Image Display</Feature><Feature>Mercury Free LED
114
+ backlit panel</Feature><IsAutographed>0</IsAutographed><IsMemorabilia>0</IsMemorabilia><ItemDimensions><Height
115
+ Units="hundredths-inches">0</Height><Length Units="hundredths-inches">0</Length><Weight
116
+ Units="hundredths-pounds">970</Weight><Width Units="hundredths-inches">0</Width></ItemDimensions><Label>Asus</Label><ListPrice><Amount>17900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$179.00</FormattedPrice></ListPrice><Manufacturer>Asus</Manufacturer><Model>VE247H</Model><MPN>VE247H</MPN><NumberOfItems>1</NumberOfItems><PackageDimensions><Height
117
+ Units="hundredths-inches">610</Height><Length Units="hundredths-inches">2500</Length><Weight
118
+ Units="hundredths-pounds">1435</Weight><Width Units="hundredths-inches">1900</Width></PackageDimensions><PackageQuantity>1</PackageQuantity><PartNumber>VE247H</PartNumber><ProductGroup>Personal
119
+ Computer</ProductGroup><ProductTypeName>MONITOR</ProductTypeName><Publisher>Asus</Publisher><SKU>ITM-DSD-DHVE247H</SKU><Studio>Asus</Studio><Title>Asus
120
+ VE247H 24-Inch Full-HD LED Monitor with Integrated Speakers</Title><UPC>610839331574</UPC><UPCList><UPCListElement>610839331574</UPCListElement><UPCListElement>999994572054</UPCListElement><UPCListElement>999994781708</UPCListElement></UPCList></ItemAttributes><OfferSummary><LowestNewPrice><Amount>17399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$173.99</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>12000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$120.00</FormattedPrice></LowestUsedPrice><TotalNew>33</TotalNew><TotalUsed>6</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
121
+ Description</Source><Content>VE247H LED - 23.6" 1920x1080</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews></Item></Items></ItemLookupResponse>
122
+ http_version:
123
+ recorded_at: Thu, 28 Feb 2013 18:59:44 GMT
124
+ - request:
125
+ method: get
126
+ uri: http://webservices.amazon.com/onca/xml?AWSAccessKeyId=<access_key>&AssociateTag=<associate_tag>&IdType=UPC&ItemId=610839331574&Operation=ItemLookup&ResponseGroup=Medium&SearchIndex=All&Service=AWSECommerceService&Signature=rbCrXwMg7kubliOwRMtSVB6Zbh7dGFIlkqxY/fbt0D0=&Timestamp=2013-02-28T13:59:44-05:00&Version=2011-08-01
127
+ body:
128
+ encoding: US-ASCII
129
+ string: ''
130
+ headers:
131
+ Accept:
132
+ - ! '*/*'
133
+ User-Agent:
134
+ - Ruby
135
+ response:
136
+ status:
137
+ code: 200
138
+ message: OK
139
+ headers:
140
+ Date:
141
+ - Thu, 28 Feb 2013 18:59:44 GMT
142
+ Server:
143
+ - Server
144
+ Content-Type:
145
+ - text/xml;charset=UTF-8
146
+ Vary:
147
+ - Accept-Encoding,User-Agent
148
+ Nncoection:
149
+ - close
150
+ Transfer-Encoding:
151
+ - chunked
152
+ body:
153
+ encoding: US-ASCII
154
+ string: <?xml version="1.0" ?><ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2011-08-01"><OperationRequest><HTTPHeaders><Header
155
+ Name="UserAgent" Value="Ruby"></Header></HTTPHeaders><RequestId>c59495ba-f707-4c92-9dd8-a26ce64d96b2</RequestId><Arguments><Argument
156
+ Name="Operation" Value="ItemLookup"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument
157
+ Name="Signature" Value="rbCrXwMg7kubliOwRMtSVB6Zbh7dGFIlkqxY/fbt0D0="></Argument><Argument
158
+ Name="AssociateTag" Value="<associate_tag>"></Argument><Argument Name="Version"
159
+ Value="2011-08-01"></Argument><Argument Name="ItemId" Value="610839331574"></Argument><Argument
160
+ Name="IdType" Value="UPC"></Argument><Argument Name="AWSAccessKeyId" Value="<access_key>"></Argument><Argument
161
+ Name="Timestamp" Value="2013-02-28T13:59:44-05:00"></Argument><Argument Name="ResponseGroup"
162
+ Value="Medium"></Argument><Argument Name="SearchIndex" Value="All"></Argument></Arguments><RequestProcessingTime>0.0303620000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><IdType>UPC</IdType><ItemId>610839331574</ItemId><ResponseGroup>Medium</ResponseGroup><SearchIndex>All</SearchIndex><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>B00AHIHH7E</ASIN><DetailPageURL>http://www.amazon.com/Asus-23-6-LCD-Monitor/dp/B00AHIHH7E%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB00AHIHH7E</DetailPageURL><ItemLinks><ItemLink><Description>Technical
163
+ Details</Description><URL>http://www.amazon.com/Asus-23-6-LCD-Monitor/dp/tech-data/B00AHIHH7E%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink><ItemLink><Description>Add
164
+ To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB00AHIHH7E%26SubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink><ItemLink><Description>Add
165
+ To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB00AHIHH7E%26SubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink><ItemLink><Description>Add
166
+ To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB00AHIHH7E%26SubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink><ItemLink><Description>Tell
167
+ A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B00AHIHH7E%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink><ItemLink><Description>All
168
+ Customer Reviews</Description><URL>http://www.amazon.com/review/product/B00AHIHH7E%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink><ItemLink><Description>All
169
+ Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B00AHIHH7E%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00AHIHH7E</URL></ItemLink></ItemLinks><SmallImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL75_.jpg</URL><Height
170
+ Units="pixels">75</Height><Width Units="pixels">75</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL160_.jpg</URL><Height
171
+ Units="pixels">160</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL.jpg</URL><Height
172
+ Units="pixels">400</Height><Width Units="pixels">400</Width></LargeImage><ImageSets><ImageSet
173
+ Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL30_.jpg</URL><Height
174
+ Units="pixels">30</Height><Width Units="pixels">30</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL75_.jpg</URL><Height
175
+ Units="pixels">75</Height><Width Units="pixels">75</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL75_.jpg</URL><Height
176
+ Units="pixels">75</Height><Width Units="pixels">75</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL110_.jpg</URL><Height
177
+ Units="pixels">110</Height><Width Units="pixels">110</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL._SL160_.jpg</URL><Height
178
+ Units="pixels">160</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/410NYTguBOL.jpg</URL><Height
179
+ Units="pixels">400</Height><Width Units="pixels">400</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Binding>Electronics</Binding><Brand>Asus</Brand><EAN>0610839331574</EAN><EANList><EANListElement>0610839331574</EANListElement></EANList><Label>Asus</Label><ListPrice><Amount>17900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$179.00</FormattedPrice></ListPrice><Manufacturer>Asus</Manufacturer><MPN>610839331574</MPN><PackageQuantity>5</PackageQuantity><PartNumber>610839331574</PartNumber><ProductGroup>CE</ProductGroup><ProductTypeName>CONSUMER_ELECTRONICS</ProductTypeName><Publisher>Asus</Publisher><Studio>Asus</Studio><Title>23.6"
180
+ LCD Monitor</Title><UPC>610839331574</UPC><UPCList><UPCListElement>610839331574</UPCListElement></UPCList></ItemAttributes><OfferSummary><TotalNew>0</TotalNew><TotalUsed>0</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
181
+ Description</Source><Content>&lt;p&gt;23.6" LCD Monitor&lt;/p&gt;&lt;p&gt;&lt;p&gt;LED
182
+ Monitor - VE247H 23.6" - True to life Pictures Powered by LED&lt;br /&gt;&lt;br
183
+ /&gt;&lt;br /&gt;&lt;i&gt;***This item is expected to deliver in 4-10 business
184
+ days. Tracking information is usually sent within 3-5 business days from the
185
+ date of the purchase. This item does not ship to Alaska or Hawaii. The item
186
+ also does not ship to P.O. boxes or APOs.***&lt;/i&gt;&lt;/p&gt;</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews></Item><Item><ASIN>B004EFUOY4</ASIN><DetailPageURL>http://www.amazon.com/Asus-VE247H-24-Inch-Integrated-Speakers/dp/B004EFUOY4%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB004EFUOY4</DetailPageURL><ItemLinks><ItemLink><Description>Technical
187
+ Details</Description><URL>http://www.amazon.com/Asus-VE247H-24-Inch-Integrated-Speakers/dp/tech-data/B004EFUOY4%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink><ItemLink><Description>Add
188
+ To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB004EFUOY4%26SubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink><ItemLink><Description>Add
189
+ To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB004EFUOY4%26SubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink><ItemLink><Description>Add
190
+ To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB004EFUOY4%26SubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink><ItemLink><Description>Tell
191
+ A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B004EFUOY4%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink><ItemLink><Description>All
192
+ Customer Reviews</Description><URL>http://www.amazon.com/review/product/B004EFUOY4%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink><ItemLink><Description>All
193
+ Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B004EFUOY4%3FSubscriptionId%3D<access_key>%26tag%3D<associate_tag>%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB004EFUOY4</URL></ItemLink></ItemLinks><SalesRank>149</SalesRank><SmallImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL75_.jpg</URL><Height
194
+ Units="pixels">56</Height><Width Units="pixels">75</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL160_.jpg</URL><Height
195
+ Units="pixels">120</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL.jpg</URL><Height
196
+ Units="pixels">375</Height><Width Units="pixels">500</Width></LargeImage><ImageSets><ImageSet
197
+ Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL30_.jpg</URL><Height
198
+ Units="pixels">22</Height><Width Units="pixels">30</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL75_.jpg</URL><Height
199
+ Units="pixels">56</Height><Width Units="pixels">75</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL75_.jpg</URL><Height
200
+ Units="pixels">56</Height><Width Units="pixels">75</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL110_.jpg</URL><Height
201
+ Units="pixels">82</Height><Width Units="pixels">110</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL._SL160_.jpg</URL><Height
202
+ Units="pixels">120</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/412-mDHUMvL.jpg</URL><Height
203
+ Units="pixels">375</Height><Width Units="pixels">500</Width></LargeImage></ImageSet><ImageSet
204
+ Category="variant"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41-ZYL1LcdL._SL30_.jpg</URL><Height
205
+ Units="pixels">22</Height><Width Units="pixels">30</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41-ZYL1LcdL._SL75_.jpg</URL><Height
206
+ Units="pixels">56</Height><Width Units="pixels">75</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41-ZYL1LcdL._SL75_.jpg</URL><Height
207
+ Units="pixels">56</Height><Width Units="pixels">75</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41-ZYL1LcdL._SL110_.jpg</URL><Height
208
+ Units="pixels">82</Height><Width Units="pixels">110</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41-ZYL1LcdL._SL160_.jpg</URL><Height
209
+ Units="pixels">120</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41-ZYL1LcdL.jpg</URL><Height
210
+ Units="pixels">375</Height><Width Units="pixels">500</Width></LargeImage></ImageSet><ImageSet
211
+ Category="variant"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41ABbKFchBL._SL30_.jpg</URL><Height
212
+ Units="pixels">22</Height><Width Units="pixels">30</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41ABbKFchBL._SL75_.jpg</URL><Height
213
+ Units="pixels">56</Height><Width Units="pixels">75</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41ABbKFchBL._SL75_.jpg</URL><Height
214
+ Units="pixels">56</Height><Width Units="pixels">75</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41ABbKFchBL._SL110_.jpg</URL><Height
215
+ Units="pixels">82</Height><Width Units="pixels">110</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41ABbKFchBL._SL160_.jpg</URL><Height
216
+ Units="pixels">120</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41ABbKFchBL.jpg</URL><Height
217
+ Units="pixels">375</Height><Width Units="pixels">500</Width></LargeImage></ImageSet><ImageSet
218
+ Category="variant"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/31bO7MgJBSL._SL30_.jpg</URL><Height
219
+ Units="pixels">30</Height><Width Units="pixels">22</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/31bO7MgJBSL._SL75_.jpg</URL><Height
220
+ Units="pixels">75</Height><Width Units="pixels">56</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/31bO7MgJBSL._SL75_.jpg</URL><Height
221
+ Units="pixels">75</Height><Width Units="pixels">56</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/31bO7MgJBSL._SL110_.jpg</URL><Height
222
+ Units="pixels">110</Height><Width Units="pixels">82</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/31bO7MgJBSL._SL160_.jpg</URL><Height
223
+ Units="pixels">160</Height><Width Units="pixels">120</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/31bO7MgJBSL.jpg</URL><Height
224
+ Units="pixels">500</Height><Width Units="pixels">375</Width></LargeImage></ImageSet><ImageSet
225
+ Category="variant"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/31aYFwVPOML._SL30_.jpg</URL><Height
226
+ Units="pixels">22</Height><Width Units="pixels">30</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/31aYFwVPOML._SL75_.jpg</URL><Height
227
+ Units="pixels">56</Height><Width Units="pixels">75</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/31aYFwVPOML._SL75_.jpg</URL><Height
228
+ Units="pixels">56</Height><Width Units="pixels">75</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/31aYFwVPOML._SL110_.jpg</URL><Height
229
+ Units="pixels">82</Height><Width Units="pixels">110</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/31aYFwVPOML._SL160_.jpg</URL><Height
230
+ Units="pixels">120</Height><Width Units="pixels">160</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/31aYFwVPOML.jpg</URL><Height
231
+ Units="pixels">374</Height><Width Units="pixels">500</Width></LargeImage></ImageSet></ImageSets><ItemAttributes><Binding>Electronics</Binding><Brand>Asus</Brand><CatalogNumberList><CatalogNumberListElement>VE247H</CatalogNumberListElement><CatalogNumberListElement>MT-AS-VE247H</CatalogNumberListElement><CatalogNumberListElement>DHVE247H</CatalogNumberListElement></CatalogNumberList><EAN>0999994781708</EAN><EANList><EANListElement>0999994781708</EANListElement><EANListElement>0610839331574</EANListElement><EANListElement>0999994572054</EANListElement></EANList><Feature>23.6"
232
+ LED Monitor with 10,000,000:1 ASUS Smart Contrast Ratio</Feature><Feature>Full
233
+ HD with HDMI</Feature><Feature>2ms Response Time</Feature><Feature>ASUS SPLENDID
234
+ is The Secret for Vibrant Image Display</Feature><Feature>Mercury Free LED
235
+ backlit panel</Feature><IsAutographed>0</IsAutographed><IsMemorabilia>0</IsMemorabilia><ItemDimensions><Height
236
+ Units="hundredths-inches">0</Height><Length Units="hundredths-inches">0</Length><Weight
237
+ Units="hundredths-pounds">970</Weight><Width Units="hundredths-inches">0</Width></ItemDimensions><Label>Asus</Label><ListPrice><Amount>17900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$179.00</FormattedPrice></ListPrice><Manufacturer>Asus</Manufacturer><Model>VE247H</Model><MPN>VE247H</MPN><NumberOfItems>1</NumberOfItems><PackageDimensions><Height
238
+ Units="hundredths-inches">610</Height><Length Units="hundredths-inches">2500</Length><Weight
239
+ Units="hundredths-pounds">1435</Weight><Width Units="hundredths-inches">1900</Width></PackageDimensions><PackageQuantity>1</PackageQuantity><PartNumber>VE247H</PartNumber><ProductGroup>Personal
240
+ Computer</ProductGroup><ProductTypeName>MONITOR</ProductTypeName><Publisher>Asus</Publisher><SKU>ITM-DSD-DHVE247H</SKU><Studio>Asus</Studio><Title>Asus
241
+ VE247H 24-Inch Full-HD LED Monitor with Integrated Speakers</Title><UPC>610839331574</UPC><UPCList><UPCListElement>610839331574</UPCListElement><UPCListElement>999994572054</UPCListElement><UPCListElement>999994781708</UPCListElement></UPCList></ItemAttributes><OfferSummary><LowestNewPrice><Amount>17399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$173.99</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>12000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$120.00</FormattedPrice></LowestUsedPrice><TotalNew>33</TotalNew><TotalUsed>6</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><EditorialReviews><EditorialReview><Source>Product
242
+ Description</Source><Content>VE247H LED - 23.6" 1920x1080</Content><IsLinkSuppressed>0</IsLinkSuppressed></EditorialReview></EditorialReviews></Item></Items></ItemLookupResponse>
243
+ http_version:
244
+ recorded_at: Thu, 28 Feb 2013 18:59:44 GMT
245
+ recorded_with: VCR 2.4.0