├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── auth.json.example ├── instagramcrawler.py ├── requirements.txt ├── test.sh └── utils ├── get_gecko.sh ├── get_phantomjs.sh └── set_path.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzuhsial/InstagramCrawler/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzuhsial/InstagramCrawler/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzuhsial/InstagramCrawler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzuhsial/InstagramCrawler/HEAD/README.md -------------------------------------------------------------------------------- /auth.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzuhsial/InstagramCrawler/HEAD/auth.json.example -------------------------------------------------------------------------------- /instagramcrawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzuhsial/InstagramCrawler/HEAD/instagramcrawler.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.21.0 2 | selenium==3.4.0 3 | -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzuhsial/InstagramCrawler/HEAD/test.sh -------------------------------------------------------------------------------- /utils/get_gecko.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzuhsial/InstagramCrawler/HEAD/utils/get_gecko.sh -------------------------------------------------------------------------------- /utils/get_phantomjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzuhsial/InstagramCrawler/HEAD/utils/get_phantomjs.sh -------------------------------------------------------------------------------- /utils/set_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tzuhsial/InstagramCrawler/HEAD/utils/set_path.sh --------------------------------------------------------------------------------