├── .gitignore ├── LICENSE ├── README.md ├── annotations ├── codes.json ├── immigration.json ├── samesex.json └── smoking.json ├── check_output.py ├── combine_text_and_annotations.py ├── get_news_articles.py ├── immigration_config.json ├── parse_LN_to_JSON.py ├── process_JSON_files.py ├── samesex_config.json ├── smoking_config.json └── sources.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/README.md -------------------------------------------------------------------------------- /annotations/codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/annotations/codes.json -------------------------------------------------------------------------------- /annotations/immigration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/annotations/immigration.json -------------------------------------------------------------------------------- /annotations/samesex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/annotations/samesex.json -------------------------------------------------------------------------------- /annotations/smoking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/annotations/smoking.json -------------------------------------------------------------------------------- /check_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/check_output.py -------------------------------------------------------------------------------- /combine_text_and_annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/combine_text_and_annotations.py -------------------------------------------------------------------------------- /get_news_articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/get_news_articles.py -------------------------------------------------------------------------------- /immigration_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/immigration_config.json -------------------------------------------------------------------------------- /parse_LN_to_JSON.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/parse_LN_to_JSON.py -------------------------------------------------------------------------------- /process_JSON_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/process_JSON_files.py -------------------------------------------------------------------------------- /samesex_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/samesex_config.json -------------------------------------------------------------------------------- /smoking_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/smoking_config.json -------------------------------------------------------------------------------- /sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dallascard/media_frames_corpus/HEAD/sources.json --------------------------------------------------------------------------------