dustbag 0.0.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.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +92 -0
- data/lib/dustbag.rb +47 -0
- data/lib/dustbag/accessories.rb +7 -0
- data/lib/dustbag/accessory.rb +6 -0
- data/lib/dustbag/arguments.rb +8 -0
- data/lib/dustbag/availability_attributes.rb +9 -0
- data/lib/dustbag/browse_node.rb +15 -0
- data/lib/dustbag/browse_nodes.rb +7 -0
- data/lib/dustbag/common.rb +7 -0
- data/lib/dustbag/customer_reviews.rb +11 -0
- data/lib/dustbag/dimension.rb +13 -0
- data/lib/dustbag/dimensions.rb +10 -0
- data/lib/dustbag/editorial_review.rb +11 -0
- data/lib/dustbag/editorial_reviews.rb +7 -0
- data/lib/dustbag/http_headers.rb +8 -0
- data/lib/dustbag/image.rb +5 -0
- data/lib/dustbag/image_set.rb +9 -0
- data/lib/dustbag/image_sets.rb +7 -0
- data/lib/dustbag/item.rb +21 -0
- data/lib/dustbag/item_attributes.rb +79 -0
- data/lib/dustbag/item_link.rb +9 -0
- data/lib/dustbag/item_links.rb +7 -0
- data/lib/dustbag/item_search_request.rb +7 -0
- data/lib/dustbag/item_search_response.rb +8 -0
- data/lib/dustbag/items.rb +14 -0
- data/lib/dustbag/language.rb +7 -0
- data/lib/dustbag/languages.rb +7 -0
- data/lib/dustbag/offer.rb +52 -0
- data/lib/dustbag/offer_summary.rb +12 -0
- data/lib/dustbag/offers.rb +7 -0
- data/lib/dustbag/operation_request.rb +13 -0
- data/lib/dustbag/parser.rb +26 -0
- data/lib/dustbag/parser/collection_node.rb +37 -0
- data/lib/dustbag/parser/map_collection_node.rb +19 -0
- data/lib/dustbag/parser/node.rb +112 -0
- data/lib/dustbag/price.rb +13 -0
- data/lib/dustbag/request.rb +11 -0
- data/lib/dustbag/similar_product.rb +6 -0
- data/lib/dustbag/similar_products.rb +7 -0
- data/lib/dustbag/simple_product.rb +9 -0
- data/lib/dustbag/variation_attribute.rb +7 -0
- data/lib/dustbag/variation_attributes.rb +7 -0
- data/lib/dustbag/variation_summary.rb +13 -0
- data/lib/dustbag/variations.rb +18 -0
- data/lib/dustbag/version.rb +3 -0
- data/spec/dustbag/accessories_spec.rb +9 -0
- data/spec/dustbag/accessory_spec.rb +10 -0
- data/spec/dustbag/arguments_spec.rb +9 -0
- data/spec/dustbag/availability_attributes_spec.rb +21 -0
- data/spec/dustbag/browse_node_spec.rb +33 -0
- data/spec/dustbag/browse_nodes_spec.rb +9 -0
- data/spec/dustbag/customer_reviews_spec.rb +17 -0
- data/spec/dustbag/dimension_spec.rb +17 -0
- data/spec/dustbag/dimensions_spec.rb +29 -0
- data/spec/dustbag/editorial_review_spec.rb +21 -0
- data/spec/dustbag/editorial_reviews_spec.rb +9 -0
- data/spec/dustbag/http_headers_spec.rb +11 -0
- data/spec/dustbag/image_set_spec.rb +13 -0
- data/spec/dustbag/image_sets_spec.rb +9 -0
- data/spec/dustbag/image_spec.rb +9 -0
- data/spec/dustbag/item_attributes_spec.rb +188 -0
- data/spec/dustbag/item_link_spec.rb +17 -0
- data/spec/dustbag/item_links_spec.rb +9 -0
- data/spec/dustbag/item_search_request_spec.rb +21 -0
- data/spec/dustbag/item_search_response_spec.rb +13 -0
- data/spec/dustbag/item_spec.rb +110 -0
- data/spec/dustbag/items_spec.rb +25 -0
- data/spec/dustbag/language_spec.rb +17 -0
- data/spec/dustbag/languages_spec.rb +9 -0
- data/spec/dustbag/offer_spec.rb +43 -0
- data/spec/dustbag/offer_summary_spec.rb +30 -0
- data/spec/dustbag/offers_spec.rb +9 -0
- data/spec/dustbag/operation_request_spec.rb +27 -0
- data/spec/dustbag/parser_spec.rb +23 -0
- data/spec/dustbag/price_spec.rb +18 -0
- data/spec/dustbag/request_spec.rb +25 -0
- data/spec/dustbag/similar_product_spec.rb +18 -0
- data/spec/dustbag/similar_products_spec.rb +9 -0
- data/spec/dustbag/variation_attribute_spec.rb +17 -0
- data/spec/dustbag/variation_attributes_spec.rb +9 -0
- data/spec/dustbag/variation_summary_spec.rb +19 -0
- data/spec/dustbag/variations_spec.rb +22 -0
- data/spec/fixtures/accessories.xml +23 -0
- data/spec/fixtures/accessory.xml +4 -0
- data/spec/fixtures/arguments.xml +11 -0
- data/spec/fixtures/availability_attributes.xml +5 -0
- data/spec/fixtures/book_item_attributes.xml +61 -0
- data/spec/fixtures/browse_node.xml +23 -0
- data/spec/fixtures/browse_nodes.xml +25 -0
- data/spec/fixtures/customer_reviews.xml +5 -0
- data/spec/fixtures/dimension.xml +1 -0
- data/spec/fixtures/dimensions.xml +6 -0
- data/spec/fixtures/editorial_review.xml +5 -0
- data/spec/fixtures/editorial_reviews.xml +7 -0
- data/spec/fixtures/http_headers.xml +3 -0
- data/spec/fixtures/image.xml +5 -0
- data/spec/fixtures/image_set.xml +32 -0
- data/spec/fixtures/image_sets.xml +34 -0
- data/spec/fixtures/invalid_request.xml +8 -0
- data/spec/fixtures/item.xml +40 -0
- data/spec/fixtures/item_attributes.xml +58 -0
- data/spec/fixtures/item_large.xml +500 -0
- data/spec/fixtures/item_link.xml +4 -0
- data/spec/fixtures/item_links.xml +30 -0
- data/spec/fixtures/item_medium.xml +123 -0
- data/spec/fixtures/item_search_request.xml +5 -0
- data/spec/fixtures/item_search_response.xml +433 -0
- data/spec/fixtures/item_small.xml +40 -0
- data/spec/fixtures/item_with_accessories.xml +122 -0
- data/spec/fixtures/item_with_variation_attributes.xml +264 -0
- data/spec/fixtures/item_with_variations.xml +1016 -0
- data/spec/fixtures/items.xml +411 -0
- data/spec/fixtures/language.xml +4 -0
- data/spec/fixtures/languages.xml +6 -0
- data/spec/fixtures/movie_item_attributes.xml +30 -0
- data/spec/fixtures/offer.xml +26 -0
- data/spec/fixtures/offer_summary.xml +11 -0
- data/spec/fixtures/offers.xml +31 -0
- data/spec/fixtures/operation_request.xml +18 -0
- data/spec/fixtures/price.xml +5 -0
- data/spec/fixtures/request.xml +8 -0
- data/spec/fixtures/root_browse_node.xml +11 -0
- data/spec/fixtures/similar_product.xml +4 -0
- data/spec/fixtures/similar_products.xml +18 -0
- data/spec/fixtures/variation_attribute.xml +4 -0
- data/spec/fixtures/variation_attributes.xml +6 -0
- data/spec/fixtures/variation_summary.xml +12 -0
- data/spec/fixtures/variations.xml +1000 -0
- data/spec/shared_examples/collection_node.rb +15 -0
- data/spec/shared_examples/common_response.rb +7 -0
- data/spec/shared_examples/map_collection_node.rb +13 -0
- data/spec/shared_examples/node.rb +9 -0
- data/spec/shared_examples/node_context.rb +6 -0
- data/spec/shared_examples/simple_product.rb +4 -0
- data/spec/spec_helper.rb +16 -0
- metadata +356 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
module Dustbag
|
|
4
|
+
describe VariationAttribute do
|
|
5
|
+
include_context 'load xml from fixture'
|
|
6
|
+
|
|
7
|
+
it_behaves_like 'a node'
|
|
8
|
+
|
|
9
|
+
describe '#name' do
|
|
10
|
+
it { expect(subject.name).to eq 'Color' }
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
describe '#value' do
|
|
14
|
+
it { expect(subject.value).to eq 'Green' }
|
|
15
|
+
end
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
module Dustbag
|
|
4
|
+
describe VariationSummary do
|
|
5
|
+
include_context 'load xml from fixture'
|
|
6
|
+
|
|
7
|
+
it_behaves_like 'a node'
|
|
8
|
+
|
|
9
|
+
describe '#lowest_price' do
|
|
10
|
+
it { expect(subject.lowest_price).to be_a_kind_of Money }
|
|
11
|
+
it { expect(subject.lowest_price.format).to eq '$89.99'}
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
describe '#highest_price' do
|
|
15
|
+
it { expect(subject.highest_price).to be_a_kind_of Money }
|
|
16
|
+
it { expect(subject.highest_price.format).to eq '$119.99'}
|
|
17
|
+
end
|
|
18
|
+
end
|
|
19
|
+
end
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
require 'spec_helper'
|
|
2
|
+
|
|
3
|
+
module Dustbag
|
|
4
|
+
describe Variations do
|
|
5
|
+
include_context 'load xml from fixture'
|
|
6
|
+
|
|
7
|
+
it_behaves_like 'a collection node of', Item
|
|
8
|
+
|
|
9
|
+
describe '#total' do
|
|
10
|
+
it { expect(subject.total).to eq 4 }
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
describe '#total_pages' do
|
|
14
|
+
it { expect(subject.total_pages).to eq 1 }
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
describe '#dimensions' do
|
|
18
|
+
it { expect(subject.dimensions).to_not be_empty }
|
|
19
|
+
it { expect(subject.dimensions).to include('Color') }
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<Accessories>
|
|
2
|
+
<Accessory>
|
|
3
|
+
<ASIN>B001G7PIBC</ASIN>
|
|
4
|
+
<Title>Tamron AF 10-24mm f/3.5-4.5 SP Di II LD Aspherical (IF) Lens for Canon Digital SLR Cameras (Model B001E)</Title>
|
|
5
|
+
</Accessory>
|
|
6
|
+
<Accessory>
|
|
7
|
+
<ASIN>B001TH7GUU</ASIN>
|
|
8
|
+
<Title>AmazonBasics USB 2.0 Extension Cable - A-Male to A-Female - 9.8 Feet (3 Meters)</Title>
|
|
9
|
+
</Accessory>
|
|
10
|
+
<Accessory>
|
|
11
|
+
<ASIN>B001MYKZIU</ASIN>
|
|
12
|
+
<Title>Dolica CF-U58 58mm UV Filter</Title>
|
|
13
|
+
</Accessory>
|
|
14
|
+
<Accessory>
|
|
15
|
+
<ASIN>B004Q3R9BA</ASIN>
|
|
16
|
+
<Title>AmazonBasics SDHC Class 4 16GB Secure Digital Card</Title>
|
|
17
|
+
</Accessory>
|
|
18
|
+
<Accessory>
|
|
19
|
+
<ASIN>B001TH7GUA</ASIN>
|
|
20
|
+
<Title>AmazonBasics USB 2.0 Cable - A-Male to B-Male - 6 Feet (1.8 Meters)</Title>
|
|
21
|
+
</Accessory>
|
|
22
|
+
</Accessories>
|
|
23
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<Arguments>
|
|
2
|
+
<Argument Name="AWSAccessKeyId" Value="MyAccessKeyId"></Argument>
|
|
3
|
+
<Argument Name="AssociateTag" Value="affiliate-tag"></Argument>
|
|
4
|
+
<Argument Name="Keywords" Value="moto g"></Argument>
|
|
5
|
+
<Argument Name="Operation" Value="ItemSearch"></Argument>
|
|
6
|
+
<Argument Name="ResponseGroup" Value="Small"></Argument>
|
|
7
|
+
<Argument Name="SearchIndex" Value="All"></Argument>
|
|
8
|
+
<Argument Name="Service" Value="AWSECommerceService"></Argument>
|
|
9
|
+
<Argument Name="Timestamp" Value="2015-10-31T21:42:44.000Z"></Argument>
|
|
10
|
+
<Argument Name="Signature" Value="opMgS20ETTM3zQJf/1kutwTfxU089OuPu2pfnKf8ysA="></Argument>
|
|
11
|
+
</Arguments>
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<ItemAttributes>
|
|
2
|
+
<Author>Ryan Bigg</Author>
|
|
3
|
+
<Author>Yehuda Katz</Author>
|
|
4
|
+
<Author>Steve Klabnik</Author>
|
|
5
|
+
<Author>Rebecca Skinner</Author>
|
|
6
|
+
<Binding>Paperback</Binding>
|
|
7
|
+
<EAN>9781617291098</EAN>
|
|
8
|
+
<EANList>
|
|
9
|
+
<EANListElement>9781617291098</EANListElement>
|
|
10
|
+
</EANList>
|
|
11
|
+
<Edition>Second Edition</Edition>
|
|
12
|
+
<ISBN>1617291099</ISBN>
|
|
13
|
+
<IsEligibleForTradeIn>1</IsEligibleForTradeIn>
|
|
14
|
+
<ItemDimensions>
|
|
15
|
+
<Height Units="hundredths-inches">110</Height>
|
|
16
|
+
<Length Units="hundredths-inches">920</Length>
|
|
17
|
+
<Weight Units="hundredths-pounds">0</Weight>
|
|
18
|
+
<Width Units="hundredths-inches">730</Width>
|
|
19
|
+
</ItemDimensions>
|
|
20
|
+
<Label>Manning Publications</Label>
|
|
21
|
+
<Languages>
|
|
22
|
+
<Language>
|
|
23
|
+
<Name>English</Name>
|
|
24
|
+
<Type>Published</Type>
|
|
25
|
+
</Language>
|
|
26
|
+
<Language>
|
|
27
|
+
<Name>English</Name>
|
|
28
|
+
<Type>Original Language</Type>
|
|
29
|
+
</Language>
|
|
30
|
+
<Language>
|
|
31
|
+
<Name>English</Name>
|
|
32
|
+
<Type>Unknown</Type>
|
|
33
|
+
</Language>
|
|
34
|
+
</Languages>
|
|
35
|
+
<ListPrice>
|
|
36
|
+
<Amount>4999</Amount>
|
|
37
|
+
<CurrencyCode>USD</CurrencyCode>
|
|
38
|
+
<FormattedPrice>$49.99</FormattedPrice>
|
|
39
|
+
</ListPrice>
|
|
40
|
+
<Manufacturer>Manning Publications</Manufacturer>
|
|
41
|
+
<NumberOfItems>1</NumberOfItems>
|
|
42
|
+
<NumberOfPages>576</NumberOfPages>
|
|
43
|
+
<PackageDimensions>
|
|
44
|
+
<Height Units="hundredths-inches">130</Height>
|
|
45
|
+
<Length Units="hundredths-inches">900</Length>
|
|
46
|
+
<Weight Units="hundredths-pounds">235</Weight>
|
|
47
|
+
<Width Units="hundredths-inches">730</Width>
|
|
48
|
+
</PackageDimensions>
|
|
49
|
+
<PackageQuantity>1</PackageQuantity>
|
|
50
|
+
<ProductGroup>Book</ProductGroup>
|
|
51
|
+
<ProductTypeName>ABIS_BOOK</ProductTypeName>
|
|
52
|
+
<PublicationDate>2015-09-19</PublicationDate>
|
|
53
|
+
<Publisher>Manning Publications</Publisher>
|
|
54
|
+
<Studio>Manning Publications</Studio>
|
|
55
|
+
<Title>Rails 4 in Action: Revised Edition of Rails 3 in Action</Title>
|
|
56
|
+
<TradeInValue>
|
|
57
|
+
<Amount>1821</Amount>
|
|
58
|
+
<CurrencyCode>USD</CurrencyCode>
|
|
59
|
+
<FormattedPrice>$18.21</FormattedPrice>
|
|
60
|
+
</TradeInValue>
|
|
61
|
+
</ItemAttributes>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<BrowseNode>
|
|
2
|
+
<BrowseNodeId>2407749011</BrowseNodeId>
|
|
3
|
+
<Name>Unlocked Cell Phones</Name>
|
|
4
|
+
<Ancestors>
|
|
5
|
+
<BrowseNode>
|
|
6
|
+
<BrowseNodeId>7072561011</BrowseNodeId>
|
|
7
|
+
<Name>Cell Phones</Name>
|
|
8
|
+
<Ancestors>
|
|
9
|
+
<BrowseNode>
|
|
10
|
+
<BrowseNodeId>2335753011</BrowseNodeId>
|
|
11
|
+
<Name>Categories</Name>
|
|
12
|
+
<IsCategoryRoot>1</IsCategoryRoot>
|
|
13
|
+
<Ancestors>
|
|
14
|
+
<BrowseNode>
|
|
15
|
+
<BrowseNodeId>2335752011</BrowseNodeId>
|
|
16
|
+
<Name>Cell Phones & Accessories</Name>
|
|
17
|
+
</BrowseNode>
|
|
18
|
+
</Ancestors>
|
|
19
|
+
</BrowseNode>
|
|
20
|
+
</Ancestors>
|
|
21
|
+
</BrowseNode>
|
|
22
|
+
</Ancestors>
|
|
23
|
+
</BrowseNode>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<BrowseNodes>
|
|
2
|
+
<BrowseNode>
|
|
3
|
+
<BrowseNodeId>2407749011</BrowseNodeId>
|
|
4
|
+
<Name>Unlocked Cell Phones</Name>
|
|
5
|
+
<Ancestors>
|
|
6
|
+
<BrowseNode>
|
|
7
|
+
<BrowseNodeId>7072561011</BrowseNodeId>
|
|
8
|
+
<Name>Cell Phones</Name>
|
|
9
|
+
<Ancestors>
|
|
10
|
+
<BrowseNode>
|
|
11
|
+
<BrowseNodeId>2335753011</BrowseNodeId>
|
|
12
|
+
<Name>Categories</Name>
|
|
13
|
+
<IsCategoryRoot>1</IsCategoryRoot>
|
|
14
|
+
<Ancestors>
|
|
15
|
+
<BrowseNode>
|
|
16
|
+
<BrowseNodeId>2335752011</BrowseNodeId>
|
|
17
|
+
<Name>Cell Phones & Accessories</Name>
|
|
18
|
+
</BrowseNode>
|
|
19
|
+
</Ancestors>
|
|
20
|
+
</BrowseNode>
|
|
21
|
+
</Ancestors>
|
|
22
|
+
</BrowseNode>
|
|
23
|
+
</Ancestors>
|
|
24
|
+
</BrowseNode>
|
|
25
|
+
</BrowseNodes>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<CustomerReviews>
|
|
2
|
+
<IFrameURL>http://www.amazon.com/reviews/iframe?akid=AKIAIHNK3TBF4L5EDREQ&alinkCode=xm2&asin=B00ZQVSKSM&atag=magmalabs-20&exp=2015-11-06T18%3A09%3A07Z&v=2&sig=LVQAhPoL48XLrPTdDEa%2FjC4h8r81FFEVqO2OmhIosT8%3D</IFrameURL>
|
|
3
|
+
<HasReviews>true</HasReviews>
|
|
4
|
+
</CustomerReviews>
|
|
5
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<Height Units="hundredths-inches">559</Height>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<EditorialReview>
|
|
2
|
+
<Source>Product Description</Source>
|
|
3
|
+
<Content>Quad core processing power in a great value product. 4.5" display. 5MP rear camera with a VGA front facing camera. Great 24hr battery performance with a 2390mAh battery. Personalize with colored bands.</Content>
|
|
4
|
+
<IsLinkSuppressed>0</IsLinkSuppressed>
|
|
5
|
+
</EditorialReview>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<EditorialReviews>
|
|
2
|
+
<EditorialReview>
|
|
3
|
+
<Source>Product Description</Source>
|
|
4
|
+
<Content>Quad core processing power in a great value product. 4.5" display. 5MP rear camera with a VGA front facing camera. Great 24hr battery performance with a 2390mAh battery. Personalize with colored bands.</Content>
|
|
5
|
+
<IsLinkSuppressed>0</IsLinkSuppressed>
|
|
6
|
+
</EditorialReview>
|
|
7
|
+
</EditorialReviews>
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<ImageSet Category="primary">
|
|
2
|
+
<SwatchImage>
|
|
3
|
+
<URL>http://ecx.images-amazon.com/images/I/51HUq1IevaL._SL30_.jpg</URL>
|
|
4
|
+
<Height Units="pixels">30</Height>
|
|
5
|
+
<Width Units="pixels">22</Width>
|
|
6
|
+
</SwatchImage>
|
|
7
|
+
<SmallImage>
|
|
8
|
+
<URL>http://ecx.images-amazon.com/images/I/51HUq1IevaL._SL75_.jpg</URL>
|
|
9
|
+
<Height Units="pixels">75</Height>
|
|
10
|
+
<Width Units="pixels">56</Width>
|
|
11
|
+
</SmallImage>
|
|
12
|
+
<ThumbnailImage>
|
|
13
|
+
<URL>http://ecx.images-amazon.com/images/I/51HUq1IevaL._SL75_.jpg</URL>
|
|
14
|
+
<Height Units="pixels">75</Height>
|
|
15
|
+
<Width Units="pixels">56</Width>
|
|
16
|
+
</ThumbnailImage>
|
|
17
|
+
<TinyImage>
|
|
18
|
+
<URL>http://ecx.images-amazon.com/images/I/51HUq1IevaL._SL110_.jpg</URL>
|
|
19
|
+
<Height Units="pixels">110</Height>
|
|
20
|
+
<Width Units="pixels">82</Width>
|
|
21
|
+
</TinyImage>
|
|
22
|
+
<MediumImage>
|
|
23
|
+
<URL>http://ecx.images-amazon.com/images/I/51HUq1IevaL._SL160_.jpg</URL>
|
|
24
|
+
<Height Units="pixels">160</Height>
|
|
25
|
+
<Width Units="pixels">120</Width>
|
|
26
|
+
</MediumImage>
|
|
27
|
+
<LargeImage>
|
|
28
|
+
<URL>http://ecx.images-amazon.com/images/I/51HUq1IevaL.jpg</URL>
|
|
29
|
+
<Height Units="pixels">500</Height>
|
|
30
|
+
<Width Units="pixels">375</Width>
|
|
31
|
+
</LargeImage>
|
|
32
|
+
</ImageSet>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<ImageSets>
|
|
2
|
+
<ImageSet Category="primary">
|
|
3
|
+
<SwatchImage>
|
|
4
|
+
<URL>http://ecx.images-amazon.com/images/I/51HUq1IevaL._SL30_.jpg</URL>
|
|
5
|
+
<Height Units="pixels">30</Height>
|
|
6
|
+
<Width Units="pixels">22</Width>
|
|
7
|
+
</SwatchImage>
|
|
8
|
+
<SmallImage>
|
|
9
|
+
<URL>http://ecx.images-amazon.com/images/I/51HUq1IevaL._SL75_.jpg</URL>
|
|
10
|
+
<Height Units="pixels">75</Height>
|
|
11
|
+
<Width Units="pixels">56</Width>
|
|
12
|
+
</SmallImage>
|
|
13
|
+
<ThumbnailImage>
|
|
14
|
+
<URL>http://ecx.images-amazon.com/images/I/51HUq1IevaL._SL75_.jpg</URL>
|
|
15
|
+
<Height Units="pixels">75</Height>
|
|
16
|
+
<Width Units="pixels">56</Width>
|
|
17
|
+
</ThumbnailImage>
|
|
18
|
+
<TinyImage>
|
|
19
|
+
<URL>http://ecx.images-amazon.com/images/I/51HUq1IevaL._SL110_.jpg</URL>
|
|
20
|
+
<Height Units="pixels">110</Height>
|
|
21
|
+
<Width Units="pixels">82</Width>
|
|
22
|
+
</TinyImage>
|
|
23
|
+
<MediumImage>
|
|
24
|
+
<URL>http://ecx.images-amazon.com/images/I/51HUq1IevaL._SL160_.jpg</URL>
|
|
25
|
+
<Height Units="pixels">160</Height>
|
|
26
|
+
<Width Units="pixels">120</Width>
|
|
27
|
+
</MediumImage>
|
|
28
|
+
<LargeImage>
|
|
29
|
+
<URL>http://ecx.images-amazon.com/images/I/51HUq1IevaL.jpg</URL>
|
|
30
|
+
<Height Units="pixels">500</Height>
|
|
31
|
+
<Width Units="pixels">375</Width>
|
|
32
|
+
</LargeImage>
|
|
33
|
+
</ImageSet>
|
|
34
|
+
</ImageSets>
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
<Item>
|
|
2
|
+
<ASIN>B00ZQVSKS2</ASIN>
|
|
3
|
+
<ParentASIN>B0127MKEAE</ParentASIN>
|
|
4
|
+
<DetailPageURL>http://www.amazon.com/Motorola-Moto-3rd-Generation-Unlocked/dp/B00ZQVSKS2%3Fpsc%3D1%26SubscriptionId%3DMyAccessKeyId%26tag%3Daffiliate-tag%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB00ZQVSKS2</DetailPageURL>
|
|
5
|
+
<ItemLinks>
|
|
6
|
+
<ItemLink>
|
|
7
|
+
<Description>Technical Details</Description>
|
|
8
|
+
<URL>http://www.amazon.com/Motorola-Moto-3rd-Generation-Unlocked/dp/tech-data/B00ZQVSKS2%3FSubscriptionId%3DMyAccessKeyId%26tag%3Daffiliate-tag%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKS2</URL>
|
|
9
|
+
</ItemLink>
|
|
10
|
+
<ItemLink>
|
|
11
|
+
<Description>Add To Baby Registry</Description>
|
|
12
|
+
<URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB00ZQVSKS2%26SubscriptionId%3DMyAccessKeyId%26tag%3Daffiliate-tag%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKS2</URL>
|
|
13
|
+
</ItemLink>
|
|
14
|
+
<ItemLink>
|
|
15
|
+
<Description>Add To Wedding Registry</Description>
|
|
16
|
+
<URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB00ZQVSKS2%26SubscriptionId%3DMyAccessKeyId%26tag%3Daffiliate-tag%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKS2</URL>
|
|
17
|
+
</ItemLink>
|
|
18
|
+
<ItemLink>
|
|
19
|
+
<Description>Add To Wishlist</Description>
|
|
20
|
+
<URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB00ZQVSKS2%26SubscriptionId%3DMyAccessKeyId%26tag%3Daffiliate-tag%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKS2</URL>
|
|
21
|
+
</ItemLink>
|
|
22
|
+
<ItemLink>
|
|
23
|
+
<Description>Tell A Friend</Description>
|
|
24
|
+
<URL>http://www.amazon.com/gp/pdp/taf/B00ZQVSKS2%3FSubscriptionId%3DMyAccessKeyId%26tag%3Daffiliate-tag%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKS2</URL>
|
|
25
|
+
</ItemLink>
|
|
26
|
+
<ItemLink>
|
|
27
|
+
<Description>All Customer Reviews</Description>
|
|
28
|
+
<URL>http://www.amazon.com/review/product/B00ZQVSKS2%3FSubscriptionId%3DMyAccessKeyId%26tag%3Daffiliate-tag%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKS2</URL>
|
|
29
|
+
</ItemLink>
|
|
30
|
+
<ItemLink>
|
|
31
|
+
<Description>All Offers</Description>
|
|
32
|
+
<URL>http://www.amazon.com/gp/offer-listing/B00ZQVSKS2%3FSubscriptionId%3DMyAccessKeyId%26tag%3Daffiliate-tag%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00ZQVSKS2</URL>
|
|
33
|
+
</ItemLink>
|
|
34
|
+
</ItemLinks>
|
|
35
|
+
<ItemAttributes>
|
|
36
|
+
<Manufacturer>Motorola</Manufacturer>
|
|
37
|
+
<ProductGroup>Wireless</ProductGroup>
|
|
38
|
+
<Title>Motorola Moto G (3rd Generation) - Black - 16 GB - Global GSM Unlocked Phone</Title>
|
|
39
|
+
</ItemAttributes>
|
|
40
|
+
</Item>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<ItemAttributes>
|
|
2
|
+
<Binding>Unlocked Phone</Binding>
|
|
3
|
+
<Brand>Motorola</Brand>
|
|
4
|
+
<Color>Black</Color>
|
|
5
|
+
<EAN>0701799787331</EAN>
|
|
6
|
+
<EANList>
|
|
7
|
+
<EANListElement>0701799787331</EANListElement>
|
|
8
|
+
<EANListElement>0723755007703</EANListElement>
|
|
9
|
+
</EANList>
|
|
10
|
+
<Feature>Advanced water resistance</Feature>
|
|
11
|
+
<Feature>13 MP camera which includes a color-balancing dual LED Flash</Feature>
|
|
12
|
+
<Feature>5" HD display; Brilliant display quality and the strength of Corning® Gorilla® Glass</Feature>
|
|
13
|
+
<Feature>Quad core processing power in a great value product</Feature>
|
|
14
|
+
<Feature>5MP rear camera with a VGA front facing camera</Feature>
|
|
15
|
+
<Feature>Great 24hr battery performance with a 2470mAh battery</Feature>
|
|
16
|
+
<Feature>Expandable memory; Slot for an optional mircoSD card with up to 32 GB capacity.</Feature>
|
|
17
|
+
<Feature>4G LTE Speed; Browse, stream music, watch video, and play games at blazing speed.</Feature>
|
|
18
|
+
<IsEligibleForTradeIn>1</IsEligibleForTradeIn>
|
|
19
|
+
<ItemDimensions>
|
|
20
|
+
<Height Units="hundredths-inches">559</Height>
|
|
21
|
+
<Length Units="hundredths-inches">263</Length>
|
|
22
|
+
<Weight Units="hundredths-pounds">34</Weight>
|
|
23
|
+
<Width Units="hundredths-inches">285</Width>
|
|
24
|
+
</ItemDimensions>
|
|
25
|
+
<Label>Motorola</Label>
|
|
26
|
+
<ListPrice>
|
|
27
|
+
<Amount>17999</Amount>
|
|
28
|
+
<CurrencyCode>USD</CurrencyCode>
|
|
29
|
+
<FormattedPrice>$179.99</FormattedPrice>
|
|
30
|
+
</ListPrice>
|
|
31
|
+
<Manufacturer>Motorola</Manufacturer>
|
|
32
|
+
<Model>XT1540</Model>
|
|
33
|
+
<MPN>00770NARTL</MPN>
|
|
34
|
+
<PackageDimensions>
|
|
35
|
+
<Height Units="hundredths-inches">140</Height>
|
|
36
|
+
<Length Units="hundredths-inches">590</Length>
|
|
37
|
+
<Weight Units="hundredths-pounds">65</Weight>
|
|
38
|
+
<Width Units="hundredths-inches">430</Width>
|
|
39
|
+
</PackageDimensions>
|
|
40
|
+
<PackageQuantity>1</PackageQuantity>
|
|
41
|
+
<PartNumber>00770NARTL</PartNumber>
|
|
42
|
+
<ProductGroup>Wireless</ProductGroup>
|
|
43
|
+
<ProductTypeName>WIRELESS_ACCESSORY</ProductTypeName>
|
|
44
|
+
<Publisher>Motorola</Publisher>
|
|
45
|
+
<Size>8 GB</Size>
|
|
46
|
+
<Studio>Motorola</Studio>
|
|
47
|
+
<Title>Motorola Moto G (3rd Generation) - Black - 8 GB - Global GSM Unlocked Phone</Title>
|
|
48
|
+
<TradeInValue>
|
|
49
|
+
<Amount>8796</Amount>
|
|
50
|
+
<CurrencyCode>USD</CurrencyCode>
|
|
51
|
+
<FormattedPrice>$87.96</FormattedPrice>
|
|
52
|
+
</TradeInValue>
|
|
53
|
+
<UPC>723755007703</UPC>
|
|
54
|
+
<UPCList>
|
|
55
|
+
<UPCListElement>723755007703</UPCListElement>
|
|
56
|
+
<UPCListElement>701799787331</UPCListElement>
|
|
57
|
+
</UPCList>
|
|
58
|
+
</ItemAttributes>
|