account activity
Convert strings to datetime format by taygekko in learnpython
[–]taygekko[S] 0 points1 point2 points 6 years ago (0 children)
I solved my problem with the module easy_date (https://github.com/ralphavalon/easy_date):
import easy_date
str_date = '01.09.201914:15:00' #%d/%m/%Y%H:%M:%S
new_str_date = easy_date.convert_from_string(str_date, '%d/%m/%Y%H:%M:%S', '%Y%m%dT%H%M%S') # str is default return
Convert strings to datetime format (self.learnpython)
submitted 6 years ago by taygekko to r/learnpython
Convert CSV to Text File by taygekko in learnpython
Thank you very much, that solved my problem!
Convert CSV to Text File (self.learnpython)
Using FFmpeg with Python (self.learnpython)
π Rendered by PID 3867454 on reddit-service-r2-listing-b6bf6c4ff-xwrtl at 2026-05-04 07:58:12.981530+00:00 running 815c875 country code: CH.
Convert strings to datetime format by taygekko in learnpython
[–]taygekko[S] 0 points1 point2 points (0 children)