Can we get System time and the current project file name in phyton?
I need this info for storing unique file names.
Thanks
Can we get System time and the current project file name in phyton?
I need this info for storing unique file names.
Thanks
print(project.name)
See here: docs.derivative.ca/Project_Class
And to get the current time in Python see lots of options here:
stackoverflow.com/questions/415 … -in-python
perfect, thanks a lot!