Skip to content

Simple typescript to generate a JSON feed from Amazon

License

Notifications You must be signed in to change notification settings

wanghaisheng/amazon-feed

 
 

Repository files navigation

Inspired from https://github.com/leonghui/amazon-feed, next plan is

  1. python to ts for easily deploy in vercel like or just chrome extension even client side without backend request.
  2. support tiktok,douyin,xiaohongshu

big picture about keyword ecommerce tracking and competition analysis tool

Overview of the tool for monitoring keyword-focused ecommerce tracking and analyzing competition on platforms such as amazon,etsy,taobao,pdd,TikTok, Douyin, and Xiaohongshu.

Enter a keyword, and receive a list of all ecommerce listings in JSON format for future monitoring. For instance, this can help pinpoint which products saw an increase in sales last month, indicating a trend, and which platforms are showing potential for certain products. Additionally, it can provide information on the total sales of a specific seller from last month, including the number of listings they have.

use off the shelf feed tool to track 10000+ products

price

amazon-feed

A simple Python script to generate a JSON Feed for search results on Amazon.

Uses BeautifulSoup 4 and served over Flask!

Use the Docker build to host your own instance.

  1. Set your timezone as an environment variable (see docker docs): TZ=America/Los_Angeles

  2. Access the feed using the URL: http://<host>/?query={query_string}

  3. Optionally, filter by:

    • country: http://<host>/?query={query_string}&country={AU/BR/CA/CN/FR/DE/IN/IT/JP/MX/NL/ES/TR/AE/UK/US}
    • max price: http://<host>/?query={query_string}&max_price={int}
    • min price: http://<host>/?query={query_string}&min_price={int}
    • buybox only: http://<host>/?query={query_string}&buybox_only=yes
    • strict mode (terms must appear in the title): http://<host>/?query={query_string}&strict=yes

E.g.

Search results for "radeon 6800" on Amazon.sg between $800 to $1250:
https://www.amazon.sg/s?k=6800+amd&rh=p_36%3A80000-125000

Feed link:
http://<host>/?query=radeon%206800

Filtered feed link:
http://<host>/?query=radeon%206800&min_price=800&max_price=1250&country=sg&buybox_only=true&strict=true

Tested with:

About

Simple typescript to generate a JSON feed from Amazon

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • Python 98.5%
  • Dockerfile 1.5%