I used the following curl command to receive tweets as well as info of tweets from a specific account:
curl --request POST \
  --url https://api.twitter.com/1.1/tweets/search/fullarchive/production.json \
  --header 'authorization: Bearer AAAAAAAAAAAAAAAAAAAAAHzE8wAAAAAATpIskAbraT5V0OSNaWKwrt%2Fz99I%3DcS8seKux26Ic3wcNjpAwPVFJ5I055ZuLyYAQNTMsIx55o1nIK5' \
  --header 'content-type: application/json' \
  --data '{
                "query":"from:TwitterDev lang:en",
                "maxResults": "100",
                "fromDate":"201802010000", 
                "toDate":"201802282359"
           }' 
the response I receive is all on one line, my question is how can I separate the line of response based on each tweet received?
