-
Notifications
You must be signed in to change notification settings - Fork 23
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
We currently over-write the follower count every time we import a tweet (when we import that user profile again):
twitter-to-sqlite/twitter_to_sqlite/utils.py
Lines 293 to 294 in 810cb2a
db["users"].insert(user, pk="id", alter=True, replace=True) | |
table = db["tweets"].insert(tweet, pk="id", alter=True, replace=True) |
It would be neat if we noticed if that user's follower count (and maybe other counts?) had changed since we last saved them and recorded that change in a separate history table. This would be an inexpensive way of building up rough charts of follower count over time.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request