input
stringlengths 175
195
| output
dict |
|---|---|
Extract the product information:
<div class='product'><h2>Asus ROG Strix</h2><span class='price'>$1106</span><span class='category'>electronics</span><span class='brand'>Amazon</span></div>
|
{
"category": "electronics",
"manufacturer": "Amazon",
"name": "Asus ROG Strix",
"price": "$1106"
}
|
Extract the product information:
<div class='product'><h2>iPad Air</h2><span class='price'>$1344</span><span class='category'>audio</span><span class='brand'>Dell</span></div>
|
{
"category": "audio",
"manufacturer": "Dell",
"name": "iPad Air",
"price": "$1344"
}
|
Extract the product information:
<div class='product'><h2>Google Pixel 7</h2><span class='price'>$712</span><span class='category'>smartphones</span><span class='brand'>Dell</span></div>
|
{
"category": "smartphones",
"manufacturer": "Dell",
"name": "Google Pixel 7",
"price": "$712"
}
|
Extract the product information:
<div class='product'><h2>Bose QuietComfort 45</h2><span class='price'>$2429</span><span class='category'>audio</span><span class='brand'>Dell</span></div>
|
{
"category": "audio",
"manufacturer": "Dell",
"name": "Bose QuietComfort 45",
"price": "$2429"
}
|
Extract the product information:
<div class='product'><h2>Google Pixel 7</h2><span class='price'>$2429</span><span class='category'>electronics</span><span class='brand'>Asus</span></div>
|
{
"category": "electronics",
"manufacturer": "Asus",
"name": "Google Pixel 7",
"price": "$2429"
}
|
Extract the product information:
<div class='product'><h2>Razer DeathAdder V2</h2><span class='price'>$1277</span><span class='category'>audio</span><span class='brand'>Apple</span></div>
|
{
"category": "audio",
"manufacturer": "Apple",
"name": "Razer DeathAdder V2",
"price": "$1277"
}
|
Extract the product information:
<div class='product'><h2>Nintendo Switch</h2><span class='price'>$585</span><span class='category'>electronics</span><span class='brand'>Canon</span></div>
|
{
"category": "electronics",
"manufacturer": "Canon",
"name": "Nintendo Switch",
"price": "$585"
}
|
Extract the product information:
<div class='product'><h2>MacBook Pro 14</h2><span class='price'>$1002</span><span class='category'>electronics</span><span class='brand'>Google</span></div>
|
{
"category": "electronics",
"manufacturer": "Google",
"name": "MacBook Pro 14",
"price": "$1002"
}
|
Extract the product information:
<div class='product'><h2>Fitbit Charge 5</h2><span class='price'>$2004</span><span class='category'>laptops</span><span class='brand'>Apple</span></div>
|
{
"category": "laptops",
"manufacturer": "Apple",
"name": "Fitbit Charge 5",
"price": "$2004"
}
|
Extract the product information:
<div class='product'><h2>Samsung Galaxy S23</h2><span class='price'>$563</span><span class='category'>fitness</span><span class='brand'>Samsung</span></div>
|
{
"category": "fitness",
"manufacturer": "Samsung",
"name": "Samsung Galaxy S23",
"price": "$563"
}
|
Extract the product information:
<div class='product'><h2>Canon EOS R</h2><span class='price'>$2004</span><span class='category'>audio</span><span class='brand'>Sony</span></div>
|
{
"category": "audio",
"manufacturer": "Sony",
"name": "Canon EOS R",
"price": "$2004"
}
|
Extract the product information:
<div class='product'><h2>Canon EOS R</h2><span class='price'>$2396</span><span class='category'>smartphones</span><span class='brand'>HP</span></div>
|
{
"category": "smartphones",
"manufacturer": "HP",
"name": "Canon EOS R",
"price": "$2396"
}
|
Extract the product information:
<div class='product'><h2>Nintendo Switch</h2><span class='price'>$915</span><span class='category'>cameras</span><span class='brand'>Asus</span></div>
|
{
"category": "cameras",
"manufacturer": "Asus",
"name": "Nintendo Switch",
"price": "$915"
}
|
Extract the product information:
<div class='product'><h2>Fitbit Charge 5</h2><span class='price'>$1162</span><span class='category'>audio</span><span class='brand'>Amazon</span></div>
|
{
"category": "audio",
"manufacturer": "Amazon",
"name": "Fitbit Charge 5",
"price": "$1162"
}
|
Extract the product information:
<div class='product'><h2>Nintendo Switch</h2><span class='price'>$915</span><span class='category'>drones</span><span class='brand'>Samsung</span></div>
|
{
"category": "drones",
"manufacturer": "Samsung",
"name": "Nintendo Switch",
"price": "$915"
}
|
Extract the product information:
<div class='product'><h2>Canon EOS R</h2><span class='price'>$1708</span><span class='category'>gaming</span><span class='brand'>Canon</span></div>
|
{
"category": "gaming",
"manufacturer": "Canon",
"name": "Canon EOS R",
"price": "$1708"
}
|
Extract the product information:
<div class='product'><h2>PlayStation 5</h2><span class='price'>$454</span><span class='category'>cameras</span><span class='brand'>Amazon</span></div>
|
{
"category": "cameras",
"manufacturer": "Amazon",
"name": "PlayStation 5",
"price": "$454"
}
|
Extract the product information:
<div class='product'><h2>PlayStation 5</h2><span class='price'>$819</span><span class='category'>audio</span><span class='brand'>Sony</span></div>
|
{
"category": "audio",
"manufacturer": "Sony",
"name": "PlayStation 5",
"price": "$819"
}
|
Extract the product information:
<div class='product'><h2>HP Envy 15</h2><span class='price'>$299</span><span class='category'>cameras</span><span class='brand'>Microsoft</span></div>
|
{
"category": "cameras",
"manufacturer": "Microsoft",
"name": "HP Envy 15",
"price": "$299"
}
|
Extract the product information:
<div class='product'><h2>Google Pixel 7</h2><span class='price'>$2102</span><span class='category'>audio</span><span class='brand'>Sony</span></div>
|
{
"category": "audio",
"manufacturer": "Sony",
"name": "Google Pixel 7",
"price": "$2102"
}
|
Extract the product information:
<div class='product'><h2>Kindle Paperwhite</h2><span class='price'>$2004</span><span class='category'>cameras</span><span class='brand'>Asus</span></div>
|
{
"category": "cameras",
"manufacturer": "Asus",
"name": "Kindle Paperwhite",
"price": "$2004"
}
|
Extract the product information:
<div class='product'><h2>Bose QuietComfort 45</h2><span class='price'>$395</span><span class='category'>electronics</span><span class='brand'>Canon</span></div>
|
{
"category": "electronics",
"manufacturer": "Canon",
"name": "Bose QuietComfort 45",
"price": "$395"
}
|
Extract the product information:
<div class='product'><h2>Google Pixel 7</h2><span class='price'>$979</span><span class='category'>laptops</span><span class='brand'>Canon</span></div>
|
{
"category": "laptops",
"manufacturer": "Canon",
"name": "Google Pixel 7",
"price": "$979"
}
|
Extract the product information:
<div class='product'><h2>DJI Mini 3 Pro</h2><span class='price'>$384</span><span class='category'>cameras</span><span class='brand'>Canon</span></div>
|
{
"category": "cameras",
"manufacturer": "Canon",
"name": "DJI Mini 3 Pro",
"price": "$384"
}
|
Extract the product information:
<div class='product'><h2>iPad Air</h2><span class='price'>$677</span><span class='category'>cameras</span><span class='brand'>Samsung</span></div>
|
{
"category": "cameras",
"manufacturer": "Samsung",
"name": "iPad Air",
"price": "$677"
}
|
Extract the product information:
<div class='product'><h2>PlayStation 5</h2><span class='price'>$1793</span><span class='category'>electronics</span><span class='brand'>Apple</span></div>
|
{
"category": "electronics",
"manufacturer": "Apple",
"name": "PlayStation 5",
"price": "$1793"
}
|
Extract the product information:
<div class='product'><h2>Google Pixel 7</h2><span class='price'>$951</span><span class='category'>drones</span><span class='brand'>Sony</span></div>
|
{
"category": "drones",
"manufacturer": "Sony",
"name": "Google Pixel 7",
"price": "$951"
}
|
Extract the product information:
<div class='product'><h2>MacBook Pro 14</h2><span class='price'>$1685</span><span class='category'>audio</span><span class='brand'>Amazon</span></div>
|
{
"category": "audio",
"manufacturer": "Amazon",
"name": "MacBook Pro 14",
"price": "$1685"
}
|
Extract the product information:
<div class='product'><h2>MacBook Pro 14</h2><span class='price'>$453</span><span class='category'>gaming</span><span class='brand'>Google</span></div>
|
{
"category": "gaming",
"manufacturer": "Google",
"name": "MacBook Pro 14",
"price": "$453"
}
|
Extract the product information:
<div class='product'><h2>Google Pixel 7</h2><span class='price'>$380</span><span class='category'>fitness</span><span class='brand'>HP</span></div>
|
{
"category": "fitness",
"manufacturer": "HP",
"name": "Google Pixel 7",
"price": "$380"
}
|
Extract the product information:
<div class='product'><h2>HP Envy 15</h2><span class='price'>$2098</span><span class='category'>smartphones</span><span class='brand'>Dell</span></div>
|
{
"category": "smartphones",
"manufacturer": "Dell",
"name": "HP Envy 15",
"price": "$2098"
}
|
Extract the product information:
<div class='product'><h2>iPad Air</h2><span class='price'>$1277</span><span class='category'>drones</span><span class='brand'>Canon</span></div>
|
{
"category": "drones",
"manufacturer": "Canon",
"name": "iPad Air",
"price": "$1277"
}
|
Extract the product information:
<div class='product'><h2>Logitech MX Master 3</h2><span class='price'>$384</span><span class='category'>cameras</span><span class='brand'>Sony</span></div>
|
{
"category": "cameras",
"manufacturer": "Sony",
"name": "Logitech MX Master 3",
"price": "$384"
}
|
Extract the product information:
<div class='product'><h2>Fitbit Charge 5</h2><span class='price'>$585</span><span class='category'>smartphones</span><span class='brand'>Samsung</span></div>
|
{
"category": "smartphones",
"manufacturer": "Samsung",
"name": "Fitbit Charge 5",
"price": "$585"
}
|
Extract the product information:
<div class='product'><h2>Nintendo Switch</h2><span class='price'>$2102</span><span class='category'>audio</span><span class='brand'>Samsung</span></div>
|
{
"category": "audio",
"manufacturer": "Samsung",
"name": "Nintendo Switch",
"price": "$2102"
}
|
Extract the product information:
<div class='product'><h2>Asus ROG Strix</h2><span class='price'>$819</span><span class='category'>drones</span><span class='brand'>Google</span></div>
|
{
"category": "drones",
"manufacturer": "Google",
"name": "Asus ROG Strix",
"price": "$819"
}
|
Extract the product information:
<div class='product'><h2>Bose QuietComfort 45</h2><span class='price'>$2098</span><span class='category'>audio</span><span class='brand'>Microsoft</span></div>
|
{
"category": "audio",
"manufacturer": "Microsoft",
"name": "Bose QuietComfort 45",
"price": "$2098"
}
|
Extract the product information:
<div class='product'><h2>Apple Watch</h2><span class='price'>$2102</span><span class='category'>fitness</span><span class='brand'>Canon</span></div>
|
{
"category": "fitness",
"manufacturer": "Canon",
"name": "Apple Watch",
"price": "$2102"
}
|
Extract the product information:
<div class='product'><h2>HP Envy 15</h2><span class='price'>$1576</span><span class='category'>smartphones</span><span class='brand'>Apple</span></div>
|
{
"category": "smartphones",
"manufacturer": "Apple",
"name": "HP Envy 15",
"price": "$1576"
}
|
Extract the product information:
<div class='product'><h2>Logitech MX Master 3</h2><span class='price'>$1685</span><span class='category'>laptops</span><span class='brand'>Amazon</span></div>
|
{
"category": "laptops",
"manufacturer": "Amazon",
"name": "Logitech MX Master 3",
"price": "$1685"
}
|
Extract the product information:
<div class='product'><h2>Fitbit Charge 5</h2><span class='price'>$1277</span><span class='category'>audio</span><span class='brand'>HP</span></div>
|
{
"category": "audio",
"manufacturer": "HP",
"name": "Fitbit Charge 5",
"price": "$1277"
}
|
Extract the product information:
<div class='product'><h2>Bose QuietComfort 45</h2><span class='price'>$2100</span><span class='category'>laptops</span><span class='brand'>Asus</span></div>
|
{
"category": "laptops",
"manufacturer": "Asus",
"name": "Bose QuietComfort 45",
"price": "$2100"
}
|
Extract the product information:
<div class='product'><h2>Asus ROG Strix</h2><span class='price'>$448</span><span class='category'>electronics</span><span class='brand'>Microsoft</span></div>
|
{
"category": "electronics",
"manufacturer": "Microsoft",
"name": "Asus ROG Strix",
"price": "$448"
}
|
Extract the product information:
<div class='product'><h2>Sony WH-1000XM5</h2><span class='price'>$2492</span><span class='category'>fitness</span><span class='brand'>Apple</span></div>
|
{
"category": "fitness",
"manufacturer": "Apple",
"name": "Sony WH-1000XM5",
"price": "$2492"
}
|
Extract the product information:
<div class='product'><h2>DJI Mini 3 Pro</h2><span class='price'>$650</span><span class='category'>smartphones</span><span class='brand'>Asus</span></div>
|
{
"category": "smartphones",
"manufacturer": "Asus",
"name": "DJI Mini 3 Pro",
"price": "$650"
}
|
Extract the product information:
<div class='product'><h2>Asus ROG Strix</h2><span class='price'>$1447</span><span class='category'>cameras</span><span class='brand'>Samsung</span></div>
|
{
"category": "cameras",
"manufacturer": "Samsung",
"name": "Asus ROG Strix",
"price": "$1447"
}
|
Extract the product information:
<div class='product'><h2>Fitbit Charge 5</h2><span class='price'>$979</span><span class='category'>gaming</span><span class='brand'>Sony</span></div>
|
{
"category": "gaming",
"manufacturer": "Sony",
"name": "Fitbit Charge 5",
"price": "$979"
}
|
Extract the product information:
<div class='product'><h2>DJI Mini 3 Pro</h2><span class='price'>$712</span><span class='category'>drones</span><span class='brand'>Canon</span></div>
|
{
"category": "drones",
"manufacturer": "Canon",
"name": "DJI Mini 3 Pro",
"price": "$712"
}
|
Extract the product information:
<div class='product'><h2>HP Envy 15</h2><span class='price'>$384</span><span class='category'>drones</span><span class='brand'>Samsung</span></div>
|
{
"category": "drones",
"manufacturer": "Samsung",
"name": "HP Envy 15",
"price": "$384"
}
|
Extract the product information:
<div class='product'><h2>Google Pixel 7</h2><span class='price'>$585</span><span class='category'>audio</span><span class='brand'>Google</span></div>
|
{
"category": "audio",
"manufacturer": "Google",
"name": "Google Pixel 7",
"price": "$585"
}
|
Extract the product information:
<div class='product'><h2>Xbox Series X</h2><span class='price'>$1403</span><span class='category'>audio</span><span class='brand'>Apple</span></div>
|
{
"category": "audio",
"manufacturer": "Apple",
"name": "Xbox Series X",
"price": "$1403"
}
|
Extract the product information:
<div class='product'><h2>DJI Mini 3 Pro</h2><span class='price'>$1793</span><span class='category'>smartphones</span><span class='brand'>Apple</span></div>
|
{
"category": "smartphones",
"manufacturer": "Apple",
"name": "DJI Mini 3 Pro",
"price": "$1793"
}
|
Extract the product information:
<div class='product'><h2>Logitech MX Master 3</h2><span class='price'>$2061</span><span class='category'>laptops</span><span class='brand'>Amazon</span></div>
|
{
"category": "laptops",
"manufacturer": "Amazon",
"name": "Logitech MX Master 3",
"price": "$2061"
}
|
Extract the product information:
<div class='product'><h2>Samsung Galaxy S23</h2><span class='price'>$258</span><span class='category'>electronics</span><span class='brand'>Canon</span></div>
|
{
"category": "electronics",
"manufacturer": "Canon",
"name": "Samsung Galaxy S23",
"price": "$258"
}
|
Extract the product information:
<div class='product'><h2>Bose QuietComfort 45</h2><span class='price'>$650</span><span class='category'>fitness</span><span class='brand'>Asus</span></div>
|
{
"category": "fitness",
"manufacturer": "Asus",
"name": "Bose QuietComfort 45",
"price": "$650"
}
|
Extract the product information:
<div class='product'><h2>Bose QuietComfort 45</h2><span class='price'>$979</span><span class='category'>fitness</span><span class='brand'>Samsung</span></div>
|
{
"category": "fitness",
"manufacturer": "Samsung",
"name": "Bose QuietComfort 45",
"price": "$979"
}
|
Extract the product information:
<div class='product'><h2>Google Pixel 7</h2><span class='price'>$1106</span><span class='category'>gaming</span><span class='brand'>Asus</span></div>
|
{
"category": "gaming",
"manufacturer": "Asus",
"name": "Google Pixel 7",
"price": "$1106"
}
|
Extract the product information:
<div class='product'><h2>Xbox Series X</h2><span class='price'>$1344</span><span class='category'>audio</span><span class='brand'>Canon</span></div>
|
{
"category": "audio",
"manufacturer": "Canon",
"name": "Xbox Series X",
"price": "$1344"
}
|
Extract the product information:
<div class='product'><h2>Fitbit Charge 5</h2><span class='price'>$1708</span><span class='category'>electronics</span><span class='brand'>Sony</span></div>
|
{
"category": "electronics",
"manufacturer": "Sony",
"name": "Fitbit Charge 5",
"price": "$1708"
}
|
Extract the product information:
<div class='product'><h2>Dell XPS 13</h2><span class='price'>$2061</span><span class='category'>smartphones</span><span class='brand'>Canon</span></div>
|
{
"category": "smartphones",
"manufacturer": "Canon",
"name": "Dell XPS 13",
"price": "$2061"
}
|
Extract the product information:
<div class='product'><h2>DJI Mini 3 Pro</h2><span class='price'>$1162</span><span class='category'>gaming</span><span class='brand'>HP</span></div>
|
{
"category": "gaming",
"manufacturer": "HP",
"name": "DJI Mini 3 Pro",
"price": "$1162"
}
|
Extract the product information:
<div class='product'><h2>Nintendo Switch</h2><span class='price'>$1086</span><span class='category'>smartphones</span><span class='brand'>Canon</span></div>
|
{
"category": "smartphones",
"manufacturer": "Canon",
"name": "Nintendo Switch",
"price": "$1086"
}
|
Extract the product information:
<div class='product'><h2>Apple Watch</h2><span class='price'>$258</span><span class='category'>audio</span><span class='brand'>Google</span></div>
|
{
"category": "audio",
"manufacturer": "Google",
"name": "Apple Watch",
"price": "$258"
}
|
Extract the product information:
<div class='product'><h2>Apple Watch</h2><span class='price'>$1162</span><span class='category'>gaming</span><span class='brand'>Dell</span></div>
|
{
"category": "gaming",
"manufacturer": "Dell",
"name": "Apple Watch",
"price": "$1162"
}
|
Extract the product information:
<div class='product'><h2>HP Envy 15</h2><span class='price'>$1403</span><span class='category'>cameras</span><span class='brand'>Asus</span></div>
|
{
"category": "cameras",
"manufacturer": "Asus",
"name": "HP Envy 15",
"price": "$1403"
}
|
Extract the product information:
<div class='product'><h2>MacBook Pro 14</h2><span class='price'>$650</span><span class='category'>fitness</span><span class='brand'>Asus</span></div>
|
{
"category": "fitness",
"manufacturer": "Asus",
"name": "MacBook Pro 14",
"price": "$650"
}
|
Extract the product information:
<div class='product'><h2>Nikon Z6 II</h2><span class='price'>$1344</span><span class='category'>cameras</span><span class='brand'>Microsoft</span></div>
|
{
"category": "cameras",
"manufacturer": "Microsoft",
"name": "Nikon Z6 II",
"price": "$1344"
}
|
Extract the product information:
<div class='product'><h2>Xbox Series X</h2><span class='price'>$650</span><span class='category'>cameras</span><span class='brand'>Canon</span></div>
|
{
"category": "cameras",
"manufacturer": "Canon",
"name": "Xbox Series X",
"price": "$650"
}
|
Extract the product information:
<div class='product'><h2>Apple Watch</h2><span class='price'>$1688</span><span class='category'>drones</span><span class='brand'>Google</span></div>
|
{
"category": "drones",
"manufacturer": "Google",
"name": "Apple Watch",
"price": "$1688"
}
|
Extract the product information:
<div class='product'><h2>Razer DeathAdder V2</h2><span class='price'>$453</span><span class='category'>laptops</span><span class='brand'>Dell</span></div>
|
{
"category": "laptops",
"manufacturer": "Dell",
"name": "Razer DeathAdder V2",
"price": "$453"
}
|
Extract the product information:
<div class='product'><h2>Dell XPS 13</h2><span class='price'>$979</span><span class='category'>gaming</span><span class='brand'>Microsoft</span></div>
|
{
"category": "gaming",
"manufacturer": "Microsoft",
"name": "Dell XPS 13",
"price": "$979"
}
|
Extract the product information:
<div class='product'><h2>Nintendo Switch</h2><span class='price'>$585</span><span class='category'>laptops</span><span class='brand'>Amazon</span></div>
|
{
"category": "laptops",
"manufacturer": "Amazon",
"name": "Nintendo Switch",
"price": "$585"
}
|
Extract the product information:
<div class='product'><h2>Logitech MX Master 3</h2><span class='price'>$258</span><span class='category'>cameras</span><span class='brand'>Amazon</span></div>
|
{
"category": "cameras",
"manufacturer": "Amazon",
"name": "Logitech MX Master 3",
"price": "$258"
}
|
Extract the product information:
<div class='product'><h2>Xbox Series X</h2><span class='price'>$979</span><span class='category'>cameras</span><span class='brand'>Amazon</span></div>
|
{
"category": "cameras",
"manufacturer": "Amazon",
"name": "Xbox Series X",
"price": "$979"
}
|
Extract the product information:
<div class='product'><h2>Dell XPS 13</h2><span class='price'>$1447</span><span class='category'>drones</span><span class='brand'>HP</span></div>
|
{
"category": "drones",
"manufacturer": "HP",
"name": "Dell XPS 13",
"price": "$1447"
}
|
Extract the product information:
<div class='product'><h2>Sony WH-1000XM5</h2><span class='price'>$1194</span><span class='category'>gaming</span><span class='brand'>Sony</span></div>
|
{
"category": "gaming",
"manufacturer": "Sony",
"name": "Sony WH-1000XM5",
"price": "$1194"
}
|
Extract the product information:
<div class='product'><h2>Google Pixel 7</h2><span class='price'>$534</span><span class='category'>smartphones</span><span class='brand'>Amazon</span></div>
|
{
"category": "smartphones",
"manufacturer": "Amazon",
"name": "Google Pixel 7",
"price": "$534"
}
|
Extract the product information:
<div class='product'><h2>Xbox Series X</h2><span class='price'>$1344</span><span class='category'>drones</span><span class='brand'>Microsoft</span></div>
|
{
"category": "drones",
"manufacturer": "Microsoft",
"name": "Xbox Series X",
"price": "$1344"
}
|
Extract the product information:
<div class='product'><h2>Canon EOS R</h2><span class='price'>$1688</span><span class='category'>fitness</span><span class='brand'>Asus</span></div>
|
{
"category": "fitness",
"manufacturer": "Asus",
"name": "Canon EOS R",
"price": "$1688"
}
|
Extract the product information:
<div class='product'><h2>iPad Air</h2><span class='price'>$819</span><span class='category'>smartphones</span><span class='brand'>Canon</span></div>
|
{
"category": "smartphones",
"manufacturer": "Canon",
"name": "iPad Air",
"price": "$819"
}
|
Extract the product information:
<div class='product'><h2>Kindle Paperwhite</h2><span class='price'>$2325</span><span class='category'>smartphones</span><span class='brand'>Amazon</span></div>
|
{
"category": "smartphones",
"manufacturer": "Amazon",
"name": "Kindle Paperwhite",
"price": "$2325"
}
|
Extract the product information:
<div class='product'><h2>Asus ROG Strix</h2><span class='price'>$395</span><span class='category'>smartphones</span><span class='brand'>HP</span></div>
|
{
"category": "smartphones",
"manufacturer": "HP",
"name": "Asus ROG Strix",
"price": "$395"
}
|
Extract the product information:
<div class='product'><h2>DJI Mini 3 Pro</h2><span class='price'>$1086</span><span class='category'>smartphones</span><span class='brand'>Canon</span></div>
|
{
"category": "smartphones",
"manufacturer": "Canon",
"name": "DJI Mini 3 Pro",
"price": "$1086"
}
|
Extract the product information:
<div class='product'><h2>Xbox Series X</h2><span class='price'>$2396</span><span class='category'>cameras</span><span class='brand'>Microsoft</span></div>
|
{
"category": "cameras",
"manufacturer": "Microsoft",
"name": "Xbox Series X",
"price": "$2396"
}
|
Extract the product information:
<div class='product'><h2>Logitech MX Master 3</h2><span class='price'>$2429</span><span class='category'>audio</span><span class='brand'>Dell</span></div>
|
{
"category": "audio",
"manufacturer": "Dell",
"name": "Logitech MX Master 3",
"price": "$2429"
}
|
Extract the product information:
<div class='product'><h2>Sony WH-1000XM5</h2><span class='price'>$2325</span><span class='category'>smartphones</span><span class='brand'>Amazon</span></div>
|
{
"category": "smartphones",
"manufacturer": "Amazon",
"name": "Sony WH-1000XM5",
"price": "$2325"
}
|
Extract the product information:
<div class='product'><h2>Dell XPS 13</h2><span class='price'>$1565</span><span class='category'>electronics</span><span class='brand'>Dell</span></div>
|
{
"category": "electronics",
"manufacturer": "Dell",
"name": "Dell XPS 13",
"price": "$1565"
}
|
Extract the product information:
<div class='product'><h2>Kindle Paperwhite</h2><span class='price'>$1576</span><span class='category'>electronics</span><span class='brand'>Google</span></div>
|
{
"category": "electronics",
"manufacturer": "Google",
"name": "Kindle Paperwhite",
"price": "$1576"
}
|
Extract the product information:
<div class='product'><h2>PlayStation 5</h2><span class='price'>$1086</span><span class='category'>fitness</span><span class='brand'>Asus</span></div>
|
{
"category": "fitness",
"manufacturer": "Asus",
"name": "PlayStation 5",
"price": "$1086"
}
|
Extract the product information:
<div class='product'><h2>Logitech MX Master 3</h2><span class='price'>$333</span><span class='category'>smartphones</span><span class='brand'>Dell</span></div>
|
{
"category": "smartphones",
"manufacturer": "Dell",
"name": "Logitech MX Master 3",
"price": "$333"
}
|
Extract the product information:
<div class='product'><h2>Logitech MX Master 3</h2><span class='price'>$819</span><span class='category'>electronics</span><span class='brand'>HP</span></div>
|
{
"category": "electronics",
"manufacturer": "HP",
"name": "Logitech MX Master 3",
"price": "$819"
}
|
Extract the product information:
<div class='product'><h2>Dell XPS 13</h2><span class='price'>$1688</span><span class='category'>laptops</span><span class='brand'>HP</span></div>
|
{
"category": "laptops",
"manufacturer": "HP",
"name": "Dell XPS 13",
"price": "$1688"
}
|
Extract the product information:
<div class='product'><h2>Dell XPS 13</h2><span class='price'>$1447</span><span class='category'>fitness</span><span class='brand'>Apple</span></div>
|
{
"category": "fitness",
"manufacturer": "Apple",
"name": "Dell XPS 13",
"price": "$1447"
}
|
Extract the product information:
<div class='product'><h2>Dell XPS 13</h2><span class='price'>$1793</span><span class='category'>audio</span><span class='brand'>Microsoft</span></div>
|
{
"category": "audio",
"manufacturer": "Microsoft",
"name": "Dell XPS 13",
"price": "$1793"
}
|
Extract the product information:
<div class='product'><h2>iPad Air</h2><span class='price'>$448</span><span class='category'>gaming</span><span class='brand'>Asus</span></div>
|
{
"category": "gaming",
"manufacturer": "Asus",
"name": "iPad Air",
"price": "$448"
}
|
Extract the product information:
<div class='product'><h2>Fitbit Charge 5</h2><span class='price'>$1685</span><span class='category'>drones</span><span class='brand'>Dell</span></div>
|
{
"category": "drones",
"manufacturer": "Dell",
"name": "Fitbit Charge 5",
"price": "$1685"
}
|
Extract the product information:
<div class='product'><h2>DJI Mini 3 Pro</h2><span class='price'>$384</span><span class='category'>electronics</span><span class='brand'>Canon</span></div>
|
{
"category": "electronics",
"manufacturer": "Canon",
"name": "DJI Mini 3 Pro",
"price": "$384"
}
|
Extract the product information:
<div class='product'><h2>iPad Air</h2><span class='price'>$1002</span><span class='category'>fitness</span><span class='brand'>Samsung</span></div>
|
{
"category": "fitness",
"manufacturer": "Samsung",
"name": "iPad Air",
"price": "$1002"
}
|
Extract the product information:
<div class='product'><h2>HP Envy 15</h2><span class='price'>$2389</span><span class='category'>smartphones</span><span class='brand'>Apple</span></div>
|
{
"category": "smartphones",
"manufacturer": "Apple",
"name": "HP Envy 15",
"price": "$2389"
}
|
Extract the product information:
<div class='product'><h2>Sony WH-1000XM5</h2><span class='price'>$915</span><span class='category'>fitness</span><span class='brand'>HP</span></div>
|
{
"category": "fitness",
"manufacturer": "HP",
"name": "Sony WH-1000XM5",
"price": "$915"
}
|
End of preview. Expand
in Data Studio
README.md exists but content is empty.
- Downloads last month
- 7