Commit d44b73ab authored by Damian Galletini's avatar Damian Galletini Committed by Francesco Poldi

Added profile_image_url to JSON and Text Files (#415)

parent 68233de3
......@@ -22,7 +22,8 @@ def tweetData(t):
"link": t.link,
"retweet": t.retweet,
"quote_url": t.quote_url,
"video": t.video
"video": t.video,
"profile_image_url": t.profile_image_url
}
return data
......@@ -50,7 +51,8 @@ def tweetFieldnames():
"link",
"retweet",
"quote_url",
"video"
"video",
"profile_image_url"
]
return fieldnames
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment