Amazon products add to cart automatically with this simple python code

--

Have you felt a need to buy products on Amazon automatically during flash sales etc. If yes then you are in right place

We can use bot-studio library to add the product to cart whenever you find the price dropped or the product becomes available to add in cart etc. Here are the steps to follow with code:-

  1. Install bot-studio
pip install bot-studio

2. Import bot-studio

from bot_studio import *

3. First you need to login to amazon. You can see login in detail here.

amazon=bot_studio.amazon()
amazon.login(password='password', email='email')

4. Now we will add the product to cart when the product price drops.

--

--