├── .github └── workflows │ ├── adjacent_repo_recommender.yaml │ └── update.yaml ├── .gitignore ├── Citation.cff ├── Pipfile ├── Pipfile.lock ├── README.md ├── abc.py ├── abc_urls.json ├── agg ├── concat_json.py ├── create_db.py ├── dataverse.py ├── tester.ipynb ├── usat_downloader.ipynb └── usat_downloader.py ├── cbs.py ├── cbs_urls.json ├── cnn.py ├── cnn_urls.json ├── concat_json.py ├── lat.py ├── lat_urls.json ├── nbc.py ├── nbc_urls.json ├── npr.py ├── npr_urls.json ├── nyt.py ├── nyt_urls.json ├── politico.py ├── politico_urls.json ├── propub.py ├── propub_urls.json ├── requirements.txt ├── usat.py ├── usat_urls.json ├── wapo.py └── wapo_urls.json /.github/workflows/adjacent_repo_recommender.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/.github/workflows/adjacent_repo_recommender.yaml -------------------------------------------------------------------------------- /.github/workflows/update.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/.github/workflows/update.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /agg/.ipynb_checkpoints 3 | -------------------------------------------------------------------------------- /Citation.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/Citation.cff -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/README.md -------------------------------------------------------------------------------- /abc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/abc.py -------------------------------------------------------------------------------- /abc_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/abc_urls.json -------------------------------------------------------------------------------- /agg/concat_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/agg/concat_json.py -------------------------------------------------------------------------------- /agg/create_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/agg/create_db.py -------------------------------------------------------------------------------- /agg/dataverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/agg/dataverse.py -------------------------------------------------------------------------------- /agg/tester.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/agg/tester.ipynb -------------------------------------------------------------------------------- /agg/usat_downloader.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/agg/usat_downloader.ipynb -------------------------------------------------------------------------------- /agg/usat_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/agg/usat_downloader.py -------------------------------------------------------------------------------- /cbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/cbs.py -------------------------------------------------------------------------------- /cbs_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/cbs_urls.json -------------------------------------------------------------------------------- /cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/cnn.py -------------------------------------------------------------------------------- /cnn_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/cnn_urls.json -------------------------------------------------------------------------------- /concat_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/concat_json.py -------------------------------------------------------------------------------- /lat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/lat.py -------------------------------------------------------------------------------- /lat_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/lat_urls.json -------------------------------------------------------------------------------- /nbc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/nbc.py -------------------------------------------------------------------------------- /nbc_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/nbc_urls.json -------------------------------------------------------------------------------- /npr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/npr.py -------------------------------------------------------------------------------- /npr_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/npr_urls.json -------------------------------------------------------------------------------- /nyt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/nyt.py -------------------------------------------------------------------------------- /nyt_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/nyt_urls.json -------------------------------------------------------------------------------- /politico.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/politico.py -------------------------------------------------------------------------------- /politico_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/politico_urls.json -------------------------------------------------------------------------------- /propub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/propub.py -------------------------------------------------------------------------------- /propub_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/propub_urls.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/requirements.txt -------------------------------------------------------------------------------- /usat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/usat.py -------------------------------------------------------------------------------- /usat_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/usat_urls.json -------------------------------------------------------------------------------- /wapo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/wapo.py -------------------------------------------------------------------------------- /wapo_urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notnews/top_news/HEAD/wapo_urls.json --------------------------------------------------------------------------------