doc: spelling fixes

This commit is contained in:
purarue 2024-11-20 00:03:40 -08:00 committed by karlicoss
parent ad55c5c345
commit a7f05c2cad
22 changed files with 27 additions and 27 deletions

View file

@ -192,7 +192,7 @@ def get_own_user_id(conn) -> str:
# - timeline_data_type
# 1 : the bulk of tweets, but also some notifications etc??
# 2 : who-to-follow/community-to-join. contains a couple of tweets, but their corresponding status_id is NULL
# 8 : who-to-follow/notfication
# 8 : who-to-follow/notification
# 13: semantic-core/who-to-follow
# 14: cursor
# 17: trends

View file

@ -54,7 +54,7 @@ class Tweet(NamedTuple):
# https://github.com/thomasancheriyil/Red-Tide-Detection-based-on-Twitter/blob/beb200be60cc66dcbc394e670513715509837812/python/twitterGapParse.py#L61-L62
#
# twint is also saving 'timezone', but this is local machine timezone at the time of scraping?
# perhaps they thought date-time-ms was local time... or just kept it just in case (they are keepin lots on unnecessary stuff in the db)
# perhaps they thought date-time-ms was local time... or just kept it just in case (they are keeping lots on unnecessary stuff in the db)
return datetime.fromtimestamp(seconds, tz=tz)
@property