├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── TweetScraper ├── __init__.py ├── items.py ├── pipelines.py ├── settings.py ├── spiders │ ├── TweetCrawler.py │ └── __init__.py └── utils.py ├── install.sh ├── requirements.txt └── scrapy.cfg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonbakerfish/TweetScraper/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Data/ 2 | pyenv/ 3 | 4 | geckodriver.log 5 | 6 | *.pyc 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonbakerfish/TweetScraper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonbakerfish/TweetScraper/HEAD/README.md -------------------------------------------------------------------------------- /TweetScraper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TweetScraper/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonbakerfish/TweetScraper/HEAD/TweetScraper/items.py -------------------------------------------------------------------------------- /TweetScraper/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonbakerfish/TweetScraper/HEAD/TweetScraper/pipelines.py -------------------------------------------------------------------------------- /TweetScraper/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonbakerfish/TweetScraper/HEAD/TweetScraper/settings.py -------------------------------------------------------------------------------- /TweetScraper/spiders/TweetCrawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonbakerfish/TweetScraper/HEAD/TweetScraper/spiders/TweetCrawler.py -------------------------------------------------------------------------------- /TweetScraper/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonbakerfish/TweetScraper/HEAD/TweetScraper/spiders/__init__.py -------------------------------------------------------------------------------- /TweetScraper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonbakerfish/TweetScraper/HEAD/TweetScraper/utils.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonbakerfish/TweetScraper/HEAD/install.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonbakerfish/TweetScraper/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonbakerfish/TweetScraper/HEAD/scrapy.cfg --------------------------------------------------------------------------------