yihong0618 / Runtastic

Download all your Runtastic (Adidas Running) activities save to gpx
MIT License
21 stars 2 forks source link

Filename Date #3

Closed Cizzzzz closed 2 years ago

Cizzzzz commented 2 years ago

Hi, thank you so much for this export possibly. Could you have a look at the name of the GPX files. It seems they are now on Unix timestamp format. For example: 1625235980881.gpx However in the screenshots they are in a readable Date/Time format. How do I achieve that, like in the screenshot? Thanks.

yihong0618 commented 2 years ago

Yep, I changed the time format... Because of its easy for running_page but because of DCMA it has been deleted.

you can easily write a script for change all the name.

like

import os

file_list = os.listdir('file_dir')
for f in file_list:
    change_name(f)