Research Amazon products and track prices over time.
# Search for product
./scripts/amazon_search.sh "Alu Profil 20x20"
# Search with filters
./scripts/amazon_search.sh "iPhone 15" --max-price 800 --prime-only
# Add product to price tracking
./scripts/price_tracker.sh add "B08XXXXXX" "Alu Profil 20x20"
# Check all tracked products
./scripts/price_tracker.sh list
# Get price history
./scripts/price_tracker.sh history "B08XXXXXX"
SQLite database: ~/workspace/Projects/Amazon-Research/amazon_prices.db
Tables:
products - Product details (ASIN, title, category)price_history - Timestamped price dataalerts - User-defined price alertswishlist - Saved products with target prices# Check prices daily at 9:00
0 9 * * * ~/workspace/skills/amazon-research/scripts/price_checker.sh
references/amazon_api.md - Amazon API documentationassets/search_templates/ - Common search queriesSince Amazon API requires approval, use web scraping or manual entry:
# Add product manually
python3 scripts/add_product.py --asin "B08XXXXXX" --title "Product Name" --price 19.99
共 1 个版本