├── .gitattributes ├── README.md ├── __init__.py ├── get_historical_reuters_data.py ├── requirements.txt └── reuters_scraper.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelaenlle/Reuters-Scraping/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelaenlle/Reuters-Scraping/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /get_historical_reuters_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelaenlle/Reuters-Scraping/HEAD/get_historical_reuters_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | tqdm 3 | newspaper3k 4 | selenium 5 | joblib 6 | -------------------------------------------------------------------------------- /reuters_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelaenlle/Reuters-Scraping/HEAD/reuters_scraper.py --------------------------------------------------------------------------------