After adding a product:
python3 main.py -a -c smartphones -u https://www.amazon.de/-/en/Google-Pixel-Pro-Smartphone-Obsidian/dp/B0DG9DD9VN
I validate that the product is successfully added:
user@test-pc:~/amazon/scraper$ python3 main.py --list-products
----- SHOWING ALL PRODUCTS -----
SMARTPHONES
> GOOGLE PIXEL 9 PRO (512GB, OBSI, EU / UK) + PIXEL 9/9 PRO CASE, OBSIDIAN
- ✓ AMAZON - B0DG9DD9VN
and then i scrape using:
user@test-pc:~/amazon/scraper$ python3 main.py -s
Scraping...
Scraping [========================================] 1/1 [100%] in 3.1s
In the database.db file i can see that the price is successfully scraped:

but retrieving the price using the following options does not work:
user@test-pc:~/amazon/scraper$ python3 main.py -v --all
Visualizing...
No products found
user@test-pc:~/amazon/scraper$ python3 main.py --name "GOOGLE PIXEL 9 PRO (512GB, OBSI, EU / UK) + PIXEL 9/9 PRO CASE, OBSIDIAN" --latest-datapoint
----- SHOWING LATEST DATAPOINT FOR NAME(s) -----
You can see that there is no latest data point returned, nor the -v option reported any product, regardless of the fact that the product is successfully added. I am using the latest version (35a589f).
After adding a product:
I validate that the product is successfully added:
and then i scrape using:
In the

database.dbfile i can see that the price is successfully scraped:but retrieving the price using the following options does not work:
You can see that there is no latest data point returned, nor the
-voption reported any product, regardless of the fact that the product is successfully added. I am using the latest version (35a589f).