A Python script for checking the titles of each links in a text file and logging it in another file :)
it may not be useful for you but for me it was a good help 💡
- Using Selenium for scraping the titles of the links
- Using typer and questionary for CLI
- You can choose between
headless
andnormal
mode for browser behaviour - Creates a new file with the date for name to log the results
- You can easily give it any file that contains several links that are unknown to you
pip install --upgrade title_checker
-
CLI:
title_checker start
-
In your python script:
from title_checker.title_checker import checker checker('PATH_TO_YOUR_URL_LIST')