diff --git a/Beginner_Projects/Amazon product availability checker/README.md b/Beginner_Projects/Amazon product availability checker/README.md new file mode 100644 index 0000000000..b3f344b3d7 --- /dev/null +++ b/Beginner_Projects/Amazon product availability checker/README.md @@ -0,0 +1,33 @@ +# Amazon Product Availability Checker + +## Description +This Python script checks whether an Amazon product +is available for purchase by scraping the product page. +It helps users track product availability without +manually visiting Amazon repeatedly. + +## Tech Stack +- Python +- BeautifulSoup / Requests library + +## How to Run + +### 1. Install dependencies +pip install requests beautifulsoup4 + +### 2. Run the script +python amazon.py + +## Input +- Amazon product URL + +## Output +- Availability status of the product (In Stock / Out of Stock) + +## Use Case +Useful for tracking limited edition products, +sale items, or frequently out-of-stock products. + +## Author +Contributed by [Niharika Gupta](https://github.com/guptaniharika8953) +as part of GSSoC 2026. \ No newline at end of file