From 6cb7a3fe861d4ef3b6176f889b9ab6bc291d155c Mon Sep 17 00:00:00 2001 From: Niharika Gupta <0241cse055@niet.co.in> Date: Thu, 14 May 2026 03:28:45 +0530 Subject: [PATCH 1/2] Add README for Amazon product availability checker --- .../README.md | 74 +++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 Beginner_Projects/Amazon product availability checker/README.md 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..d4c13dc183 --- /dev/null +++ b/Beginner_Projects/Amazon product availability checker/README.md @@ -0,0 +1,74 @@ +\# 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 + +```bash + +pip install requests beautifulsoup4 + +``` + + + +\### 2. Run the script + +```bash + +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. + From 086010325599f2eb98089a8eae46c941e82c9183 Mon Sep 17 00:00:00 2001 From: Niharika Gupta <0241cse055@niet.co.in> Date: Mon, 25 May 2026 23:37:26 +0530 Subject: [PATCH 2/2] Fix markdown formatting in README --- .../README.md | 79 +++++-------------- 1 file changed, 19 insertions(+), 60 deletions(-) diff --git a/Beginner_Projects/Amazon product availability checker/README.md b/Beginner_Projects/Amazon product availability checker/README.md index d4c13dc183..b3f344b3d7 100644 --- a/Beginner_Projects/Amazon product availability checker/README.md +++ b/Beginner_Projects/Amazon product availability checker/README.md @@ -1,74 +1,33 @@ -\# Amazon Product Availability Checker - - - -\## Description - -This Python script checks whether an Amazon product +# 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 - +It helps users track product availability without manually visiting Amazon repeatedly. +## Tech Stack +- Python +- BeautifulSoup / Requests library +## How to Run -\## Tech Stack - -\- Python - -\- BeautifulSoup / Requests library - - - -\## How to Run - - - -\### 1. Install dependencies - -```bash - +### 1. Install dependencies pip install requests beautifulsoup4 -``` - - - -\### 2. Run the script - -```bash - +### 2. Run the script python amazon.py -``` - - - -\## Input - -\- Amazon product URL - - - -\## Output +## Input +- Amazon product URL -\- Availability status of the product (In Stock / Out of Stock) - - - -\## Use Case - -Useful for tracking limited edition products, +## 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. - +## Author +Contributed by [Niharika Gupta](https://github.com/guptaniharika8953) +as part of GSSoC 2026. \ No newline at end of file