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):
"date": dt,
"timezone": Tweet.timezone,
"place": Tweet.place,
"location": Tweet.location,
"tweet": Tweet.tweet,
"hashtags": Tweet.hashtags,
"cashtags": Tweet.cashtags,
......@@ -100,12 +99,12 @@ def update(object, config):
"name": user.name,
"username": user.username,
"bio": user.bio,
"location": user.location,
"url": user.url,
"join_datetime": user.join_date + " " + user.join_time,
"join_date": user.join_date,
"join_time": user.join_time,
"tweets": user.tweets,
"location": user.location,
"following": user.following,
"followers": user.followers,
"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