├── .env.example ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── img └── advanced-search-01.png ├── main.ipynb ├── requirements.txt ├── sample-command.txt └── scraper ├── __init__.py ├── __main__.py ├── progress.py ├── scroller.py ├── tweet.py └── twitter_scraper.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/README.md -------------------------------------------------------------------------------- /img/advanced-search-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/img/advanced-search-01.png -------------------------------------------------------------------------------- /main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/main.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample-command.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/sample-command.txt -------------------------------------------------------------------------------- /scraper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scraper/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/scraper/__main__.py -------------------------------------------------------------------------------- /scraper/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/scraper/progress.py -------------------------------------------------------------------------------- /scraper/scroller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/scraper/scroller.py -------------------------------------------------------------------------------- /scraper/tweet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/scraper/tweet.py -------------------------------------------------------------------------------- /scraper/twitter_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/godkingjay/selenium-twitter-scraper/HEAD/scraper/twitter_scraper.py --------------------------------------------------------------------------------