- Install
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- Create a input
./storage/key_value_stores/default/INPUT.json
file
{
"type": "",
"queries": [],
"language": null,
"max_search_page": null,
"max_review_page": null,
"useApifyProxy": false
}
NOTE: Fill in the type, queries, language, max_search_page and max_review_page as you like.
type in ["attractions", "restaurants", "hotels"] language can find in ./resources/languages.json
- Run the Actor
python3 -m src
- Create an INPUT.json file and start the Actor
make seed_input
make start
- Check logs
make logs [service name, default is all]
pre-commit run --all-files