├── .gitignore ├── README.md ├── requirments.txt ├── script ├── test.py └── test_profile_manager.py └── src ├── __init__.py ├── apify_crawl.py ├── filter_review.py ├── pet_friendly_judger.py ├── profile_manager.py └── tools.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatieHYT/pet_friendly/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatieHYT/pet_friendly/HEAD/README.md -------------------------------------------------------------------------------- /requirments.txt: -------------------------------------------------------------------------------- 1 | openai 2 | apify-client 3 | #pip install --upgrade requests 4 | -------------------------------------------------------------------------------- /script/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatieHYT/pet_friendly/HEAD/script/test.py -------------------------------------------------------------------------------- /script/test_profile_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatieHYT/pet_friendly/HEAD/script/test_profile_manager.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apify_crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatieHYT/pet_friendly/HEAD/src/apify_crawl.py -------------------------------------------------------------------------------- /src/filter_review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatieHYT/pet_friendly/HEAD/src/filter_review.py -------------------------------------------------------------------------------- /src/pet_friendly_judger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatieHYT/pet_friendly/HEAD/src/pet_friendly_judger.py -------------------------------------------------------------------------------- /src/profile_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatieHYT/pet_friendly/HEAD/src/profile_manager.py -------------------------------------------------------------------------------- /src/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KatieHYT/pet_friendly/HEAD/src/tools.py --------------------------------------------------------------------------------