Fashion Ecommerce Data
Indian fashion products data
@kaggle.kuchhbhi_fashion_ecommerce_data
Indian fashion products data
@kaggle.kuchhbhi_fashion_ecommerce_data
Column Name | Descriptoin |
---|---|
uuid | unique id of every entry |
url | url of product |
title | title of product |
brand | brand of product |
images | image url of product |
date_stored | Listing date on website |
selling_price | selling price in rupees |
star_rating | customer rating out 5 |
size | available product size |
colour | color of product |
mrp | actual price |
product_detials | details of product |
set_product_price | not sure |
meta_data | description of product |
category | category of product |
product_code | unique product code |
competitor | other e-commerce company |
CREATE TABLE fashion_data (
"uuid" VARCHAR,
"url" VARCHAR,
"title" VARCHAR,
"brand" VARCHAR,
"images" VARCHAR,
"date_stored" VARCHAR,
"selling_price" VARCHAR,
"star_rating" VARCHAR,
"size" VARCHAR,
"colour" VARCHAR,
"mrp" VARCHAR,
"product_detials" VARCHAR,
"set_product_price" VARCHAR,
"meta_data" VARCHAR,
"category" VARCHAR,
"product_code" VARCHAR,
"competitor" VARCHAR
);
Anyone who has the link will be able to view this.