pbinkley / twarc-report

Data conversions and examples for generating reports from twarc collections using tools such as D3.js
Creative Commons Zero v1.0 Universal
55 stars 6 forks source link

how to convert twarc data to full texts? #23

Open Shaimaai opened 3 years ago

Shaimaai commented 3 years ago

Hi everyone, After a long time of struggling in twarc, finally, I extracted the tweets from Twitter hashtags. My question now is, how can I convert the data that I got to full text? all I can see now is just numbers. (the image is attached)

PS: I followed these steps which are here: https://github.com/DocNow/twarc and my file save as josn and I opened it on Excel.
Another PS: I am not a programmer nor developer :)

Screen Shot 2020-12-13 at 2 26 32 PM
edsu commented 3 years ago

You probably will want to convert your json to csv before opening it with excel or google sheets. The twarc utility json2csv.py can do that for you.

Shaimaai commented 3 years ago

It solved 👍 but I have another issue :) I can not get all tweets, I am using this command:

twarc search "lang:ar AND (كورونا# OR كوفيد#)" --format json --split 100000 --output tweets-corona-covid.json

Thanks