Actowiz Metrics Real-time
logo
analytics dashboard for brands! Try Free Demo
Weekly E-commerce Price Comparison in Amazon India - Trends & Insights-01

Introduction

SKU mapping is one of the hardest problems in retail analytics. Electronics especially — because the same product appears in dozens of formats:

  • different titles
  • different model numbers
  • different sellers
  • different RAM + storage combos
  • different colors
  • different accessories included
  • different warranty types
  • different bundle packs

A single smartphone like Samsung Galaxy A34 5G can appear in 35–50 variations across:

  • Noon UAE
  • Amazon.ae
  • Carrefour UAE
  • Sharaf DG
  • Emax
  • Jumbo Electronics

If you're mapping 20,000 SKUs, manual processing is impossible.

This tutorial shows you exactly how to:

  • scrape product listings
  • extract SKU attributes
  • clean & normalize raw data
  • extract model codes
  • link variants
  • build a product-family mapping
  • output the final dataset

This is the same workflow Actowiz Solutions uses for large-scale retail analytics projects for GCC electronics retailers.

Step 1: Install Your Required Tools

Install all external libraries:

pip install selenium
pip install pandas
pip install fuzzywuzzy
pip install python-Levenshtein
pip install requests
pip install beautifulsoup4

You will use:

  • Selenium → website loading
  • Requests/BS4 → HTML parsing
  • Pandas → data structuring
  • FuzzyWuzzy → similarity matching
  • Custom Python functions → model code extraction

Step 2: Scrape Electronics Products From a Retailer (Example: Amazon.ae)

Basic imports:

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
import pandas as pd
from time import sleep
import re
from fuzzywuzzy import fuzz
import json

Open product category:

browser = webdriver.Chrome()
browser.get("https://www.amazon.ae/s?k=smartphones")
sleep(3)

Scroll for pagination:

for _ in range(8):
    browser.find_element(By.TAG_NAME, "body").send_keys(Keys.END)
    sleep(2)

Step 3: Extract Product Title, Price, Rating, and Link

items = browser.find_elements(By.XPATH, '//div[@data-component-type="s-search-result"]')

records = []

for item in items:
    try:
        title = item.find_element(By.TAG_NAME, "h2").text
    except:
        title = ""

    try:
        price = item.find_element(By.CLASS_NAME, "a-price-whole").text
    except:
        price = ""

    try:
        link = item.find_element(By.TAG_NAME, "a").get_attribute("href")
    except:
        link = ""

    records.append({
        "title": title,
        "price": price,
        "url": link
    })

Export the first batch:

df = pd.DataFrame(records)
df.head()

This becomes your raw SKU dataset.

Step 4: Extract Model Numbers Using Regex

Electronics SKUs always contain model codes like:

  • SM-A546E
  • iPhone 13 A2633
  • MGN93HN/A
  • CPH2551
  • Redmi 12C

Use regex:

def extract_model(title):
    pattern = r"([A-Za-z0-9-]{4,})"
    matches = re.findall(pattern, title)
    return matches

df["model_codes"] = df["title"].apply(extract_model)

Example result:

Title Extracted Model Code
Samsung A54 5G SM-A546E SM-A546E
iPhone 13 A2633 (128GB) A2633
OnePlus Nord CE CPH2551 CPH2551

This is the most important step in SKU mapping.

Step 5: Normalize Titles Across Retailers

Remove noise words:

def clean_title(t):
    t = t.lower()
    remove = ["official", "2025 version", "brand new", "uae version", "global version"]
    for r in remove:
        t = t.replace(r, "")
    return t.strip()

df["clean_title"] = df["title"].apply(clean_title)

This ensures consistency across platforms.

Step 6: Fuzzy Match Titles to Find Similar SKUs

For SKU mapping, we need to identify when:

  • Noon title = Amazon title
  • Amazon title = Carrefour title
  • Jumbo title = Sharaf DG title

FuzzyWuzzy helps:

def is_match(t1, t2, threshold=80):
    score = fuzz.token_set_ratio(t1, t2)
    return score >= threshold

Example:

is_match("samsung galaxy a54 5g", "galaxy a54 samsung phone 5g")
# Output: True

Step 7: Build SKU Groups Based on Model Code + Fuzzy Match

Here is a simple grouping logic:

sku_groups = {}

for i, row in df.iterrows():
    model = tuple(row["model_codes"])

    if model not in sku_groups:
        sku_groups[model] = []

    sku_groups[model].append({
        "title": row["title"],
        "price": row["price"],
        "url": row["url"],
        "clean_title": row["clean_title"]
    })

This ensures all SKUs of the same model gather into one family.

Step 8: Generate the Final SKU Mapping Output

with open("sku_mapping_output.json", "w") as f:
    json.dump(sku_groups, f, indent=4)

Final structure looks like:

{
  "('SM-A546E',)": [
    {
      "title": "Samsung Galaxy A54 5G 8GB 256GB SM-A546E",
      "price": "1199",
      "url": "https://www.amazon.ae/..."
    },
    {
      "title": "Samsung A54 5G Dual SIM 256GB",
      "price": "1150",
      "url": "https://www.noon.com/..."
    }
  ]
}

This is SKU mapping for one product family.

Repeat until you process 20,000 SKUs.

Step 9: Add Optional Enhancements

Weekly E-commerce Price Comparison in Amazon India - Trends & Insights-01
  • Color extraction
  • Using regex or image scraping.
  • Storage classification
  • Detect 128GB vs 256GB variations.
  • RAM configuration detection
  • 8GB / 12GB versions.
  • Region mapping
  • UAE version vs KSA version.
  • Price analysis
  • Median, max, min, volatility.
  • Duplicate listings
  • Remove exact duplicates.

These are crucial for retailers.

Step 10: Challenges You Will Face

This tutorial script works, but large-scale SKU mapping faces issues:

Retailer websites block scraping

Requires proxies, residential IPs, and anti-bot solutions.

Electronics model codes vary heavily

Requires smarter regex + NLP-based extraction.

20,000 SKUs require distributed crawling

Local machine will not handle this scale.

Fuzzy matching gets slow

Requires vector-based similarity using sentence transformers.

Data accuracy is critical

Slight errors can mis-map SKUs.

When Should You Use Actowiz Solutions Instead of DIY Scripts?

If your project involves:

  • 10,000+ SKUs
  • daily price/stock updates
  • multi-retailer extraction
  • multi-country catalog mapping
  • integrating with BI systems
  • variant-level insights
  • historical trend analysis

…then manual coding is not enough.

Actowiz Solutions provides:

  • Automated SKU mapping engine
  • AI-based similarity matching
  • Multi-marketplace extraction (Noon, Amazon, Sharaf DG)
  • Full catalog normalization
  • Daily/real-time price updates
  • Enterprise-grade dashboards
  • On-demand API delivery

Electronics, fashion, grocery — Actowiz maps SKUs across all industries.

Conclusion

Mapping 20,000 SKUs across multiple electronics retailers is a complex problem involving:

  • scraping
  • cleaning
  • normalization
  • pattern detection
  • model extraction
  • fuzzy matching
  • grouping
  • output formatting

The tutorial above gives you the complete technical pipeline to build your own SKU mapping solution.

But if you want an automated, scalable, production-ready system for UAE retail — Actowiz Solutions can deploy a fully managed SKU mapping framework tailored to your needs.

You can also reach us for all your mobile app scraping, data collection, web scraping , and instant data scraper service requirements!

Social Proof That Converts

Trusted by Global Leaders Across Q-Commerce, Travel, Retail, and FoodTech

Our web scraping expertise is relied on by 4,000+ global enterprises including Zomato, Tata Consumer, Subway, and Expedia — helping them turn web data into growth.

4,000+ Enterprises Worldwide
50+ Countries Served
20+ Industries
Join 4,000+ companies growing with Actowiz →
Real Results from Real Clients

Hear It Directly from Our Clients

Watch how businesses like yours are using Actowiz data to drive growth.

1 min
★★★★★
"Actowiz Solutions offered exceptional support with transparency and guidance throughout. Anna and Saga made the process easy for a non-technical user like me. Great service, fair pricing!"
TG
Thomas Galido
Co-Founder / Head of Product at Upright Data Inc.
2 min
★★★★★
"Actowiz delivered impeccable results for our company. Their team ensured data accuracy and on-time delivery. The competitive intelligence completely transformed our pricing strategy."
II
Iulen Ibanez
CEO / Datacy.es
1:30
★★★★★
"What impressed me most was the speed — we went from requirement to production data in under 48 hours. The API integration was seamless and the support team is always responsive."
FC
Febbin Chacko
-Fin, Small Business Owner
icons 4.8/5 Average Rating
icons 50+ Video Testimonials
icons 92% Client Retention
icons 50+ Countries Served

Join 4,000+ Companies Growing with Actowiz

From Zomato to Expedia — see why global leaders trust us with their data.

Why Global Leaders Trust Actowiz

Backed by automation, data volume, and enterprise-grade scale — we help businesses from startups to Fortune 500s extract competitive insights across the USA, UK, UAE, and beyond.

icons
7+
Years of Experience
Proven track record delivering enterprise-grade web scraping and data intelligence solutions.
icons
4,000+
Projects Delivered
Serving startups to Fortune 500 companies across 50+ countries worldwide.
icons
200+
In-House Experts
Dedicated engineers across scrapers, AI/ML models, APIs, and data quality assurance.
icons
9.2M
Automated Workflows
Running weekly across eCommerce, Quick Commerce, Travel, Real Estate, and Food industries.
icons
270+ TB
Data Transferred
Real-time and batch data scraping at massive scale, across industries globally.
icons
380M+
Pages Crawled Weekly
Scaled infrastructure for comprehensive global data coverage with 99% accuracy.

AI Solutions Engineered
for Your Needs

LLM-Powered Attribute Extraction: High-precision product matching using large language models for accurate data classification.
Advanced Computer Vision: Fine-grained object detection for precise product classification using text and image embeddings.
GPT-Based Analytics Layer: Natural language query-based reporting and visualization for business intelligence.
Human-in-the-Loop AI: Continuous feedback loop to improve AI model accuracy over time.
icons Product Matching icons Attribute Tagging icons Content Optimization icons Sentiment Analysis icons Prompt-Based Reporting

Connect the Dots Across
Your Retail Ecosystem

We partner with agencies, system integrators, and technology platforms to deliver end-to-end solutions across the retail and digital shelf ecosystem.

icons
Analytics Services
icons
Ad Tech
icons
Price Optimization
icons
Business Consulting
icons
System Integration
icons
Market Research
Become a Partner →

Popular Datasets — Ready to Download

Browse All Datasets →
icons
Amazon
eCommerce
Free 100 rows
icons
Zillow
Real Estate
Free 100 rows
icons
DoorDash
Food Delivery
Free 100 rows
icons
Walmart
Retail
Free 100 rows
icons
Booking.com
Travel
Free 100 rows
icons
Indeed
Jobs
Free 100 rows

Latest Insights & Resources

View All Resources →
thumb
Blog

How to Extract Real-Time Travel Mode Data Using APIs for AI Travel Apps

Extract real-time travel mode data via APIs to power smarter AI travel apps with live route updates, transit insights, and seamless trip planning.

thumb
Case Study

UK DTC Brand Detects 800+ MAP Violations in First Month

How a $50M+ consumer electronics brand used Actowiz MAP monitoring to detect 800+ violations in 30 days, achieving 92% resolution rate and improving retailer satisfaction by 40%.

thumb
Report

Track UK Grocery Products Daily Using Automated Data Scraping to Monitor 50,000+ UK Grocery Products from Morrisons, Asda, Tesco, Sainsbury’s, Iceland, Co-op, Waitrose, Ocado

Track UK Grocery Products Daily Using Automated Data Scraping across Morrisons, Asda, Tesco, Sainsbury’s, Iceland, Co-op, Waitrose, and Ocado for insights.

Start Where It Makes Sense for You

Whether you're a startup or a Fortune 500 — we have the right plan for your data needs.

icons
Enterprise
Book a Strategy Call
Custom solutions, dedicated support, volume pricing for large-scale needs.
icons
Growing Brand
Get Free Sample Data
Try before you buy — 500 rows of real data, delivered in 2 hours. No strings.
icons
Just Exploring
View Plans & Pricing
Transparent plans from $500/mo. Find the right fit for your budget and scale.
Get in Touch
Let's Talk About
Your Data Needs
Tell us what data you need — we'll scope it for free and share a sample within hours.
  • Free Sample in 2 HoursShare your requirement, get 500 rows of real data — no commitment.
  • 💰
    Plans from $500/monthFlexible pricing for startups, growing brands, and enterprises.
  • 🇺🇸
    US-Based SupportOffices in New York & California. Aligned with your timezone.
  • 🔒
    ISO 9001 & 27001 CertifiedEnterprise-grade security and quality standards.
Request Free Sample Data
Fill the form below — our team will reach out within 2 hours.
+1
Free 500-row sample · No credit card · Response within 2 hours

Request Free Sample Data

Our team will reach out within 2 hours with 500 rows of real data — no credit card required.

+1
Free 500-row sample · No credit card · Response within 2 hours