I have a project that will be used by a lot of developers, so I need to create a local file that specifies the path for each developer that runs the code.
How can I write a path that suites all devices? Is that possible?
I don't want to specify the root name, for example:
with open("/Users/myname/.ssh/pri.txt", "w") as f:
f.write(str(private_key.to_pem()))
This is what I mean, I don't want the Users/myname/ to specify and modify for each dev.