This is a copy of all tweets from Jarrod W. Ramos (in case Twitter removes his page). Out of 876 tweets, 149 of them were directed at the Capital Gazette. files.pushshift.io/twitter/TU_eri
If you are a journalist or reporter and need assistance with this file, let me know.
Conversation
Replying to
The file is new-line delimited JSON. You could open it with any program that can read in JSON data. I could provide a very basic script that will read the file if that helps you.
1
Replying to
i just want to read the data, what do you suggest for mac. i read 100s of the tweets. appreciate that you saved them. no idea how to open. chrome json extension not working. macs are bad sometimes, but humans worse
3
Replying to
If you have a MAC, from the command line you can do "brew install jq" -- jq is a great program for handling json data. Once you install it, you could see the data by doing:
jq filename.ndjson '.' (show all the available fields)
jq filename.ndjson '.full_text' (show tweet body)

