Commit fee1ff06 authored by Francesco Poldi's avatar Francesco Poldi

Delete Location fields from tweet

parent dad7eb5f
...@@ -17,7 +17,6 @@ def tweetData(t): ...@@ -17,7 +17,6 @@ def tweetData(t):
"replies_count": int(t.replies_count), "replies_count": int(t.replies_count),
"retweets_count": int(t.retweets_count), "retweets_count": int(t.retweets_count),
"likes_count": int(t.likes_count), "likes_count": int(t.likes_count),
"location": t.location,
"hashtags": t.hashtags, "hashtags": t.hashtags,
"cashtags": t.cashtags, "cashtags": t.cashtags,
"link": t.link, "link": t.link,
...@@ -56,7 +55,6 @@ def tweetFieldnames(): ...@@ -56,7 +55,6 @@ def tweetFieldnames():
"replies_count", "replies_count",
"retweets_count", "retweets_count",
"likes_count", "likes_count",
"location",
"hashtags", "hashtags",
"cashtags", "cashtags",
"link", "link",
......
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