├── .gitignore ├── .idea └── pythonProject4.iml ├── FakeNewsCrawler.py ├── NewsCrawler ├── ArchiveCrawler.py ├── FakeNewsRules.py ├── FakeRulesFactCheck.py ├── NewsCrawler.py ├── RealRules.py └── __init__.py ├── README.md ├── TwitterCrawlerHelper.py ├── figure └── pipeline.png ├── project.config ├── requirements.txt └── util ├── Constants.py ├── CrawlerUtil.py ├── TwarcConnector.py ├── Util.py └── __init__.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/pythonProject4.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/.idea/pythonProject4.iml -------------------------------------------------------------------------------- /FakeNewsCrawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/FakeNewsCrawler.py -------------------------------------------------------------------------------- /NewsCrawler/ArchiveCrawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/NewsCrawler/ArchiveCrawler.py -------------------------------------------------------------------------------- /NewsCrawler/FakeNewsRules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/NewsCrawler/FakeNewsRules.py -------------------------------------------------------------------------------- /NewsCrawler/FakeRulesFactCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/NewsCrawler/FakeRulesFactCheck.py -------------------------------------------------------------------------------- /NewsCrawler/NewsCrawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/NewsCrawler/NewsCrawler.py -------------------------------------------------------------------------------- /NewsCrawler/RealRules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/NewsCrawler/RealRules.py -------------------------------------------------------------------------------- /NewsCrawler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/README.md -------------------------------------------------------------------------------- /TwitterCrawlerHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/TwitterCrawlerHelper.py -------------------------------------------------------------------------------- /figure/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/figure/pipeline.png -------------------------------------------------------------------------------- /project.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/project.config -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/requirements.txt -------------------------------------------------------------------------------- /util/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/util/Constants.py -------------------------------------------------------------------------------- /util/CrawlerUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/util/CrawlerUtil.py -------------------------------------------------------------------------------- /util/TwarcConnector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/util/TwarcConnector.py -------------------------------------------------------------------------------- /util/Util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigheiniu/MM-COVID/HEAD/util/Util.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------