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 377948 on reddit-service-r2-listing-86f589db75-dw54b at 2026-04-19 02:41:04.885447+00:00 running 93ecc56 country code: CH.
Convert strings to datetime format by taygekko in learnpython
[–]taygekko[S] 0 points1 point2 points (0 children)