r0zetta / twitter_gather

The latest version of my Twitter data collection and analysis tools
19 stars 4 forks source link

Windows: time_object_to_unix in time_helpers.py #1

Open skep opened 5 years ago

skep commented 5 years ago

Hi,

in time_helpers.py in the time_object_to_unix method:

int(time_object.strftime("%s"))

doesn't work correctly. A workaround is to use:

int(time_object.timestamp())

getData123 commented 1 year ago

Thank you for your help, problem was same here