Scrape the details of a product from Amazon using Python and Beautiful Soup.The details include
- Product Name
- Product Price
- Product Rating
- Product Image
- Customer Reviews
We will setup the environment and install the required packages and libraries using requirements.txt file. Run the following commands in the terminal to install the required packages and libraries.
pip install -r requirements.txt
"""
Class - Product
\n
Example -\n
```python
product = Product(product_name="watch")
product.get_product()
Return\n
```python
return
{
"data": product_link,
"message": f"Product data has been fetched",
}
"""
- requests_html
- BeautifulSoup