Spaces:
Runtime error
Runtime error
File size: 8,275 Bytes
67c9653 c82f84d 67c9653 c82f84d 67c9653 c82f84d 67c9653 c82f84d 67c9653 c82f84d 67c9653 c82f84d 67c9653 c82f84d 67c9653 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 | import logging
import os
import pandas as pd
from fastapi import FastAPI, HTTPException, Query
from fastapi.staticfiles import StaticFiles
from fastapi.responses import HTMLResponse, JSONResponse
from pathlib import Path
from huggingface_hub import hf_hub_download
from typing import Optional
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
app = FastAPI(title="E-Commerce Product Intelligence Platform")
HF_DATASET_ID = "Vincentran/ecommerce-dataset"
HF_CSV_PATH = "data/ecommerce_products.csv"
_data_cache = None
def load_data():
try:
if _data_cache is not None:
logger.info("Using cached DataFrame")
return _data_cache
logger.info(f"Downloading CSV from HF Dataset: {HF_DATASET_ID}/{HF_CSV_PATH}")
local_csv_path = hf_hub_download(
repo_id=HF_DATASET_ID,
filename=HF_CSV_PATH,
repo_type="dataset"
)
file_size = os.path.getsize(local_csv_path)
logger.info(f"Loading CSV from: {local_csv_path} (size: {file_size} bytes)")
if file_size == 0:
raise ValueError(f"CSV file is empty: {local_csv_path}")
df = pd.read_csv(local_csv_path)
logger.info(f"Loaded {len(df)} rows, columns: {list(df.columns)}")
_data_cache = df
return df
except Exception as e:
logger.error(f"Failed to load data from HF Dataset: {e}")
raise HTTPException(status_code=500, detail=f"Failed to load data: {str(e)}")
def refresh_cache():
_data_cache = None
return load_data()
@app.get("/")
def root():
return {"status": "E-Commerce Product Intelligence API is running"}
@app.get("/data")
def get_data(page: int = Query(1, ge=1), limit: int = Query(100, ge=1, le=500)):
df = load_data()
total = len(df)
start = (page - 1) * limit
end = start + limit
if start >= total:
raise HTTPException(status_code=404, detail="Page not found")
data = df.iloc[start:end].to_dict("records")
return {
"data": data,
"page": page,
"limit": limit,
"total": total,
"total_pages": (total + limit - 1) // limit
}
@app.get("/stats/categories")
def stats_categories():
df = load_data()
if "category" not in df.columns:
raise HTTPException(status_code=400, detail="Missing 'category' column")
return df["category"].value_counts().head(10).to_dict()
@app.get("/stats/brands")
def stats_brands():
df = load_data()
if "brand" not in df.columns:
raise HTTPException(status_code=400, detail="Missing 'brand' column")
return df["brand"].value_counts().head(10).to_dict()
@app.get("/stats/price")
def stats_price():
df = load_data()
if "category" not in df.columns or "price" not in df.columns:
raise HTTPException(status_code=400, detail="Missing 'category' or 'price' column")
return df.groupby("category")["price"].agg(["mean", "median", "min", "max", "count"]).reset_index().to_dict(
"records")
@app.get("/stats/rating")
def stats_rating():
df = load_data()
if "category" not in df.columns or "rating" not in df.columns:
raise HTTPException(status_code=400, detail="Missing 'category' or 'rating' column")
return df.groupby("category")["rating"].agg(["mean", "median", "min", "max", "count"]).reset_index().to_dict(
"records")
@app.get("/stats/price-range")
def stats_price_range():
df = load_data()
if "price" not in df.columns:
raise HTTPException(status_code=400, detail="Missing 'price' column")
price_ranges = {
"Under $50": len(df[df["price"] < 50]),
"$50 - $100": len(df[(df["price"] >= 50) & (df["price"] < 100)]),
"$100 - $200": len(df[(df["price"] >= 100) & (df["price"] < 200)]),
"$200 - $500": len(df[(df["price"] >= 200) & (df["price"] < 500)]),
"$500+": len(df[df["price"] >= 500])
}
return price_ranges
@app.get("/insights")
def insights():
df = load_data()
return JSONResponse(content={
"total_products": len(df),
"categories": df["category"].nunique() if "category" in df.columns else 0,
"brands": df["brand"].nunique() if "brand" in df.columns else 0,
"avg_price": round(df["price"].mean(), 2) if "price" in df.columns else 0,
"avg_rating": round(df["rating"].mean(), 2) if "rating" in df.columns else 0,
"min_price": round(df["price"].min(), 2) if "price" in df.columns else 0,
"max_price": round(df["price"].max(), 2) if "price" in df.columns else 0,
})
@app.get("/search")
def search(query: str = Query(...), page: int = Query(1, ge=1), limit: int = Query(100, ge=1, le=500)):
df = load_data()
q = query.lower()
search_cols = ["product_name", "category", "brand", "description"]
search_cols = [col for col in search_cols if col in df.columns]
mask = pd.Series([False] * len(df), index=df.index)
for col in search_cols:
try:
mask |= df[col].str.contains(q, case=False, na=False)
except:
pass
total = len(df[mask])
start = (page - 1) * limit
end = start + limit
if start >= total:
raise HTTPException(status_code=404, detail="No results found")
data = df[mask].iloc[start:end].to_dict("records")
return {
"data": data,
"query": query,
"page": page,
"limit": limit,
"total": total,
"total_pages": (total + limit - 1) // limit
}
@app.get("/filter")
def filter_products(
category: Optional[str] = Query(None),
min_price: Optional[float] = Query(None),
max_price: Optional[float] = Query(None),
min_rating: Optional[float] = Query(None),
page: int = Query(1, ge=1),
limit: int = Query(100, ge=1, le=500)
):
df = load_data()
if category and "category" in df.columns:
df = df[df["category"] == category]
if min_price and "price" in df.columns:
df = df[df["price"] >= min_price]
if max_price and "price" in df.columns:
df = df[df["price"] <= max_price]
if min_rating and "rating" in df.columns:
df = df[df["rating"] >= min_rating]
total = len(df)
start = (page - 1) * limit
end = start + limit
if start >= total:
raise HTTPException(status_code=404, detail="No results found")
data = df.iloc[start:end].to_dict("records")
return {
"data": data,
"filters": {"category": category, "min_price": min_price, "max_price": max_price, "min_rating": min_rating},
"page": page,
"limit": limit,
"total": total,
"total_pages": (total + limit - 1) // limit
}
@app.get("/recommend")
def recommend(category: str, limit: int = Query(10, ge=1, le=50)):
df = load_data()
if "category" not in df.columns:
raise HTTPException(status_code=400, detail="Missing 'category' column")
subset = df[df["category"] == category]
if len(subset) == 0:
raise HTTPException(status_code=404, detail="No products found in this category")
if "rating" in df.columns:
subset = subset.sort_values("rating", ascending=False)
return subset.head(limit).to_dict("records")
@app.post("/refresh-data")
def refresh_data():
try:
df = refresh_cache()
return {"status": "Data refreshed successfully", "rows": len(df)}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
@app.post("/run-scraper")
def trigger_scraper():
import subprocess
result = subprocess.run(["python", "backend/scraper.py"], capture_output=True, text=True)
if result.returncode == 0:
refresh_cache()
return {"status": "Scraper completed successfully", "output": result.stdout}
else:
return {"status": "Scraper failed", "error": result.stderr}
# ✅ Mount frontend at /frontend (not /)
frontend_dir = Path("frontend")
if frontend_dir.exists():
app.mount("/frontend", StaticFiles(directory=str(frontend_dir), html=True), name="frontend")
else:
@app.get("/")
def frontend_placeholder():
return HTMLResponse(
content="<h1>E-Commerce Product Intelligence Dashboard</h1><p>Frontend placeholder.</p>"
) |