Bu Python scripti Türkiye'nin dört büyük süper marketi üzerinde ürün araması yapıp sonuçları Excel dosyasına kayıt ediyor.
This Python script is searching any product on four big supermarkets in Turkey and saving results in Excel file.
Before start to using this Python app, you have to install Python and pip packages.
download and install Python 3.10 from https://www.python.org/downloads/
c:> pip install tabulate
c:> pip install pandas
c:> pip install beautifulsoup4
c:> pip install selenium
c:> pip install openpyxl
This command search nothing because you forget to use search parameter
c:> python search.py
This command search bread (ekmek) on four supermarkets
c:> python search.py -s ekmek
This command search 'coca cola' on four supermarkets
c:> python search.py -s 'coca cola'
When search finished Python script opens Excel file that include products
This script shows the products that are on the first page yet.
When there is a product on more than one page, it cannot reach all of them.
In the future, I will solve this problem and add it to the script.
Aldin Romanov Aldinov