Skip to content

Tags: MICH991-pi/twint

Tags

v2.1.21

Toggle v2.1.21's commit message
Update to v2.1.21

v2.1.19

Toggle v2.1.19's commit message
V2.1.19 - Fix duplicated users twintproject#711

v2.1.17

Toggle v2.1.17's commit message
Fix output.checkDate

v2.1.13

Toggle v2.1.13's commit message

Verified

This commit was created on github.com and signed with GitHub’s verified signature. The key has expired.
Fix strftime format string (twintproject#646)

* Fix strftime format string

Lines 28 and 29 that were using `.strftime('%s')` where it should be written as `.strftime('%S')`. This error would make twint fail with an `Invalid format string` when using time-related configurations like `Since` and `Until`.

* Change strftime to timestamp

As we are looking for the timestamp version of the provided date/time string, using `timestamp()` should be more straightforward and shouldn't create any incompatibility issues as twint already requires Python >= 3.6