A simple website parser written in Python, using Selenium, BeautifulSoup, Requests, and webdriver-manager.
git clone https://github.com/batya002/simon-parser.git
cd simon-parserpython -m venv venvsource venv/bin/activatevenv\Scripts\activatepip install selenium webdriver-manager beautifulsoup4 requestspython main.pyselenium # https://pypi.org/project/selenium/ webdriver-manager # https://pypi.org/project/webdriver-manager/ beautifulsoup4 # https://pypi.org/project/beautifulsoup4/ requests # https://pypi.org/project/requests/
simon-parser/ ├── main.py # Основной скрипт ├── README.md # Документация └── venv/ # Виртуальное окружение (не добавляй в git)