Hi, How do I remove "IN X HOURS AGO", I only want it to show "X hours/days/minutes ago" and not "in X hours ago"
It does work, but on some instances it shows "3 hours ago" and in some other instances it shows "in 3 hours"...
Using Python..
`
now = datetime.datetime.now() + datetime.timedelta(seconds=60 * 3.4)
date = datetime.datetime.now()
time_ago = (timeago.format(streamer_channel_info['last_seen']))`
Hi, How do I remove "IN X HOURS AGO", I only want it to show "X hours/days/minutes ago" and not "in X hours ago" It does work, but on some instances it shows "3 hours ago" and in some other instances it shows "in 3 hours"... Using Python..
`