Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions Beginner_Projects/Amazon product availability checker/README.md
Original file line number Diff line number Diff line change
@@ -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.
Loading