In this folder, run:
pip install -r requirements.txtpython demo.py <url> <output_file.csv> [-v]<url>: starting url to scrape<output_file.csv>: filename where data will be saved-v(optional): enable verbose logging
python demo.py https://www.firmy.cz/Auto-moto/Auto-moto-sluzby/ data.csv -vIf you see error like this: demo.py: error: the following arguments are required: filename
even though you've provided the output filename, it may be because the URL contains special characters. In that case, try wrapping the URL in quotes:
python demo.py "<url>" <output_file.csv> [-v]Columns in the generated .csv file:
nameof the companyaddressGPS1: [latitude, longitude]webs2phoneemailsocials2ICOopening(hours)2rating: scorereview_num: number of reviews
@JM 2025