mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-24 02:27:34 +00:00
6 lines
147 B
Python
6 lines
147 B
Python
import uuid
|
|
|
|
__author__ = 'fergalm'
|
|
def generate_save_file_name(prefix, filename):
|
|
return '/'.join([prefix, str(uuid.uuid1()), filename])
|