E-commerce inventory management for Taobao, Douyin, and other platforms. Use when tracking stock levels, syncing inventory across stores, managing suppliers,...
Professional inventory management skill for e-commerce sellers. Track stock levels, sync across multiple stores (Taobao, Douyin), manage suppliers, and automate reordering.
python scripts/check_stock.py \
--stores taobao,douyin \
--output stock_report.csv
python scripts/sync_inventory.py \
--source taobao \
--target douyin \
--sync-all
python scripts/stock_alerts.py \
--threshold 10 \
--notify email,wechat
Check current stock levels across stores.
Arguments:
--stores - Comma-separated store names--output - Output file (CSV/Excel)--format - Output formatSync inventory between stores.
Arguments:
--source - Source store--target - Target store(s)--sync-all - Sync all products--sku - Sync specific SKUMonitor and alert on low stock.
Arguments:
--threshold - Low stock threshold--notify - Notification channels--check-interval - Check frequency (minutes)Generate purchase orders for suppliers.
Arguments:
--supplier - Supplier name--items - Items to order--output - PO file# Sync from Taobao to Douyin
python scripts/sync_inventory.py \
--source taobao \
--target douyin \
--conflict-resolution source_wins
# Two-way sync
python scripts/sync_inventory.py \
--source taobao \
--target douyin \
--sync-mode bidirectional
{
"alerts": {
"critical": {"threshold": 5, "action": "immediate_reorder"},
"low": {"threshold": 10, "action": "send_alert"},
"medium": {"threshold": 20, "action": "log_only"}
},
"notifications": {
"email": "your@email.com",
"wechat": "your_wechat_id"
}
}
supplier_id,name,contact,email,lead_time_days,min_order
SUP001,Factory A,John, john@factory.com,7,100
SUP002,Factory B,Jane, jane@factory.com,14,50
python scripts/generate_po.py \
--supplier SUP001 \
--items "SKU001:50,SKU002:100" \
--output po_20260307.xlsx
python scripts/forecast_sales.py \
--history sales_history.csv \
--months 1 \
--output forecast.csv
ZIP package — ready to use