Commit 7438678e authored by Daniel Blignaut's avatar Daniel Blignaut Committed by Francesco Poldi

Remove location from tweet pandas storage (#455)

* remove location field from pandas storage

* re-add location for user object
parent 904c242c
twint @ 2c406fa3
Subproject commit 2c406fa331d72c3c48eb62e1ba1fec17d4fad629
...@@ -73,7 +73,6 @@ def update(object, config): ...@@ -73,7 +73,6 @@ def update(object, config):
"date": dt, "date": dt,
"timezone": Tweet.timezone, "timezone": Tweet.timezone,
"place": Tweet.place, "place": Tweet.place,
"location": Tweet.location,
"tweet": Tweet.tweet, "tweet": Tweet.tweet,
"hashtags": Tweet.hashtags, "hashtags": Tweet.hashtags,
"cashtags": Tweet.cashtags, "cashtags": Tweet.cashtags,
...@@ -100,12 +99,12 @@ def update(object, config): ...@@ -100,12 +99,12 @@ def update(object, config):
"name": user.name, "name": user.name,
"username": user.username, "username": user.username,
"bio": user.bio, "bio": user.bio,
"location": user.location,
"url": user.url, "url": user.url,
"join_datetime": user.join_date + " " + user.join_time, "join_datetime": user.join_date + " " + user.join_time,
"join_date": user.join_date, "join_date": user.join_date,
"join_time": user.join_time, "join_time": user.join_time,
"tweets": user.tweets, "tweets": user.tweets,
"location": user.location,
"following": user.following, "following": user.following,
"followers": user.followers, "followers": user.followers,
"likes": user.likes, "likes": user.likes,
......
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