put timestamp after name in filename
This commit is contained in:
parent
715871dfbf
commit
51b3dde78e
1 changed files with 1 additions and 1 deletions
|
@ -78,7 +78,7 @@ def main(*_args):
|
||||||
new_data['mitgliederdaten'] = dict(zip(app.mem2.keys(), map(lambda f: f.value, app.mem2.values())))
|
new_data['mitgliederdaten'] = dict(zip(app.mem2.keys(), map(lambda f: f.value, app.mem2.values())))
|
||||||
new_data['timestamp'] = datetime.datetime.now().replace(microsecond=0).isoformat()
|
new_data['timestamp'] = datetime.datetime.now().replace(microsecond=0).isoformat()
|
||||||
|
|
||||||
outfile_name = '{}_{}.json'.format(datetime.date.today().isoformat(), '_'.join(new_data['stammdaten']['fullname'].split()))
|
outfile_name = '{}_{}.json'.format('_'.join(new_data['stammdaten']['fullname'].split()),datetime.date.today().isoformat())
|
||||||
with open(outfile_name, 'w') as outfile:
|
with open(outfile_name, 'w') as outfile:
|
||||||
json.dump(new_data, outfile, sort_keys=True, indent=4)
|
json.dump(new_data, outfile, sort_keys=True, indent=4)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue